首页 诗词 字典 板报 句子 名言 友答 励志 学校 网站地图
当前位置: 首页 > 教程频道 > 移动开发 > 移动开发 >

应用LayoutInflater动态加载布局和操作控件

2012-09-07 
使用LayoutInflater动态加载布局和操作控件转自(http://www.blogjava.net/improviser/archive/2010/10/29/

使用LayoutInflater动态加载布局和操作控件

转自(http://www.blogjava.net/improviser/archive/2010/10/29/336476.html)

我们知道在Android中通过布局文件来描述软件的界面,而通常在Activity中都是使用setContentView()来将布局显示出来。但是如果我们在非Activity的情况下,而且需要对布局中的控件进行设置等操作,该如何处理呢?这就需要使用到动态加载布局LayoutInflater,下面ATAAW.COM来做介绍。

以一个简单布局example.xml为例,里面只有一个按钮和一个文本显示框控件。

<TextView
android:id="@+id/tview"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:text="ATAAW.COM"
/>
<Button
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:id="@+id/button"
android:text="按钮"
/>

在程序中动态加载以上布局。

LayoutInflater flater = LayoutInflater.from(this);
View view = flater.inflate(R.layout.example, null);

获取布局中的控件。

button = (Button) view.findViewById(R.id.button);???
textView = (TextView)view.findViewById(R.id.tview);

为Button添加事件监听。

button.setOnClickListener(new OnClickListener(){
@Override
public void onClick(View v) {
??? textView.setText("WWW.ATAAW.COM");
?? }
});

一般情况下,LayoutInflater在定义适配器中使用的比较多,例如我们可以为适配器定义布局,继而在适配器的设计中对控件进行数据绑定等设置操作。

热点排行