码迷,mamicode.com
首页 > 其他好文 > 详细

19 inflate用法

时间:2014-05-01 13:10:22      阅读:310      评论:0      收藏:0      [点我收藏+]

标签:android   style   blog   class   code   java   javascript   ext   width   color   get   

LayoutInflater inflater=(LayoutInflater)context.getSystemService(Context.LAYOUT_INFLATER_SERVICE);
View layout = inflater.inflate(R.layout.main, null);
 
LayoutInflater inflater = LayoutInflater.from(context); (该方法实质就是第一种方法,可参考源代码)
View layout = inflater.inflate(R.layout.main, null);
 
LayoutInflater inflater = getLayoutInflater();(在Activity中可以使用,实际上是View子类下window的一个函数)
View layout = inflater.inflate(R.layout.main, null);
 
bubuko.com,布布扣
 <Gallery
        android:id="@+id/gallery"
        android:layout_width="fill_parent"
        android:layout_height="110px"
        android:layout_alignParentLeft="true"
        android:layout_marginTop="10px" >
    </Gallery>

    <ImageSwitcher
        android:id="@+id/imageswitch"
        android:layout_width="90px"
        android:layout_height="90px"
        android:layout_alignBottom="@+id/gallery"
        android:layout_alignParentTop="true"
        android:layout_centerHorizontal="true"
        android:background="#005599" >
    </ImageSwitcher>
bubuko.com,布布扣
bubuko.com,布布扣
LayoutInflater inflater =LayoutInflater.from(this);
//动态加载xml文件生成VIew
View view = inflater.inflate(R.layout.imageswitch,null);
//将View载入对话框
builder.setView(view);

Gallery gallery = (Gallery)view.findViewById(R.id.image_switvher);
bubuko.com,布布扣
inflater 动态载入xml文件生成View,1将View放入对话框,在View中提取组件。
 
LayoutInflater inflater=(LayoutInflater)context.getSystemService(Context.LAYOUT_INFLATER_SERVICE);
View layout = inflater.inflate(R.layout.main, null);
 
LayoutInflater inflater = LayoutInflater.from(context); (该方法实质就是第一种方法,可参考源代码)
View layout = inflater.inflate(R.layout.main, null);
 
LayoutInflater inflater = getLayoutInflater();(在Activity中可以使用,实际上是View子类下window的一个函数)
View layout = inflater.inflate(R.layout.main, null);

19 inflate用法,布布扣,bubuko.com

19 inflate用法

标签:android   style   blog   class   code   java   javascript   ext   width   color   get   

原文地址:http://www.cnblogs.com/cliffhuang/p/3701343.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!