首页 > 其他 > 详细

19 inflate用法

时间:2014-05-01 13:10:40      阅读:439      评论:0      收藏:0      [点我收藏+]
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用法

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

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!