您的位置:首页 > 移动开发 > Android开发

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

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

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

<TextView

android:id="@+id/tview"

android:layout_width="fill_parent"

android:layout_height="wrap_content"

android:text="案例"

/>

<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在定义适配器中使用的比较多,例如我们可以为适配器定义布局,继而在适配器的设计中对控件进行数据绑定等设置操作。
内容来自用户分享和网络整理,不保证内容的准确性,如有侵权内容,可联系管理员处理 点击这里给我发消息
标签: