Android之Inflate()方法用途

举报
ShaderJoy 发表于 2021/12/30 00:18:41 2021/12/30
【摘要】 转自:http://blog.csdn.net/andypan1314/article/details/6718298 Android之Inflate()方法用途 Inflate()作用就是将xml定义的一个布局找出来,但仅仅是找出来而且隐藏的,没有找到的同时并显示功能。最近做的一个项目就是这一点让我迷茫了好几天。 andr...

转自:http://blog.csdn.net/andypan1314/article/details/6718298

Android之Inflate()方法用途

Inflate()作用就是将xml定义的一个布局找出来,但仅仅是找出来而且隐藏的,没有找到的同时并显示功能。最近做的一个项目就是这一点让我迷茫了好几天。

android上还有一个与Inflate()类似功能的方法叫findViewById(),二者有时均可使用,但也有区别

区别在于:

如果你的Activity里用到别的layout,比如对话框layout,你还要设置这个layout上的其他组件的内容,你就必须用inflate()方法先将对话框的layout找出来,然后再用findViewById()找到它上面的其它组件。例如:


  
  1. View view1=View.inflate(this,R.layout.dialog_layout,null);
  2.   
  3.   TextViewdialogTV=(TextView)view1.findViewById(R.id.dialog_tv);
  4.   
  5.   dialogTV.setText("abcd");
注:R.id.dialog_tv是在对话框layout上的组件,而这时若直接用 this.findViewById(R.id.dialog_tv)肯定会报错。

View viewStub = ((ViewStub) findViewById(R.id.stubView)).inflate();
 

Inflate()或可理解为“隐膨胀”,隐性摆放在view里,inflate()前只是获得控件,但没有大小没有在View里占据空间,inflate()后有一定大小,只是出于隐藏状态

其他资料

一般用LayoutInflater做一件事:inflate

inflate这个方法总共有四种形式(见下面),目的都是把xml表述的layout转化为View对象。
其中有一个比较常用(如下所示),另三个,其实目的和这个差不多。

View.inflate(int resource, ViewGroup root)
 
int resource,也就是resource/layout文件在R文件中对应的ID,这个必须指定。
而ViewGroup root则可以是null,null时就只创建一个resource对应的View,不是null时,会将创建的view自动加为root的child。

setContentView和inflate区别: 

setContentView()一旦调用, layout就会立刻显示UI;而inflate只会把Layout形成一个以view类实现成的对象,有需要时再用setContentView(view)显示出来
一般在activity中通过setContentView()将界面显示出来,但是如果在非activity中如何对控件布局设置操作了,这需LayoutInflater动态加载

  
  1. < TextView
  2. android:id="@+id/tview"
  3. android:layout_width="fill_parent"
  4. android:layout_height="wrap_content"
  5. android:text="ATAAW.COM"
  6. />
  7. < Button
  8. android:layout_width="fill_parent"
  9. android:layout_height="wrap_content"
  10. android:id="@+id/button"
  11. android:text="按钮"
  12. />

  
  1. //在程序中动态加载以上布局。
  2. LayoutInflater flater = LayoutInflater.from(this);
  3. View view = flater.inflate(R.layout.example, null);
  4. //获取布局中的控件。
  5. button = (Button) view.findViewById(R.id.button);
  6. textView = (TextView)view.findViewById(R.id.tview);
***********************************************************

接下来结合源码说说inflate方法的四种形式:

inflate方法总共有四种形式,把xml表达的layout转化为view. This class is used to instantiate layout xml files into its corresponding view object. It is never be used directly——usegetLayoutInflater() or getSystemService(String) to retrieve a standard LayoutInflater instance that is already hooked up that is already hook up to the current context and correct configured for the device you are running on. 
1. Context.public abstract object getSystemService(String name) 
2. 两种获得LayoutInflater的方法 
a. 通过SystemService获得 
LayoutInflater inflater=(LayoutInflater)context.getSystemService(Context.LAYOUT_INFLEATER_SERVICE); 
 
b. 从给定的context中获取 
Public static LayoutInflater from(Context context) 
 
c. 两者的区别:实际上是一样的,源码 

  
  1. /**
  2. * Obtains the LayoutInflater from the given context.
  3. */
  4. public static LayoutInflater from(Context context) {
  5. LayoutInflater LayoutInflater =
  6. (LayoutInflater) context.getSystemService(Context.LAYOUT_INFLATER_SERVICE);
  7. if (LayoutInflater == null) {
  8. throw new AssertionError("LayoutInflater not found.");
  9. }
  10. return LayoutInflater;
  11. }
3. LayoutInflater.inflate()将Layout文件转换为View,专门供Layout使用的Inflater。虽然Layout也是View的子类,但在android中如果想将xml中的Layout转换为View放入.java代码中操作,只能通过Inflater,而不能通过findViewById()。 
4.

  
  1. LinearLayout linearLayout = (LinearLayout) findViewById(R.id.placeslist_linearlayout);
  2. linearLayout.addView(place_type_text);

5. findViewById有两种形式 
R.layout.xx是引用res/layout/xx.xml的布局文件(inflate 方法),R.id.xx是引用布局文件里面的组件,组件的id是xx(findViewById方法)。所有的组件id都能用R.id.xx来查看,但是组件不在setContentView()里面的layout中就无法使用,Activity.findViewById()会出现空指针异常 
a.activity中的findViewById(int id) 
b.View 中的findViewById(int id) 


6.不同点是LayoutInflater是用来找layout下xml布局文件,并且实例化!而findViewById()是找具体xml下的具体 widget控件(如:Button,TextView等)。


文章来源: panda1234lee.blog.csdn.net,作者:panda1234lee,版权归原作者所有,如需转载,请联系作者。

原文链接:panda1234lee.blog.csdn.net/article/details/8778855

【版权声明】本文为华为云社区用户转载文章,如果您发现本社区中有涉嫌抄袭的内容,欢迎发送邮件进行举报,并提供相关证据,一经查实,本社区将立刻删除涉嫌侵权内容,举报邮箱: cloudbbs@huaweicloud.com
  • 点赞
  • 收藏
  • 关注作者

评论(0

0/1000
抱歉,系统识别当前为高风险访问,暂不支持该操作

全部回复

上滑加载中

设置昵称

在此一键设置昵称,即可参与社区互动!

*长度不超过10个汉字或20个英文字符,设置后3个月内不可修改。

*长度不超过10个汉字或20个英文字符,设置后3个月内不可修改。