WEB开发网
开发学院手机开发Android 开发 Android使用LayoutInflater动态加载布局和操作控件... 阅读

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

 2010-11-05 00:55:53 来源:WEB开发网   
核心提示:我们知道在Android中通过布局文件来描述软件的界面,而通常在Activity中都是使用setContentView()来将布局显示出来,Android使用LayoutInflater动态加载布局和操作控件,但是如果我们在非Activity的情况下,而且需要对布局中的控件进行设置等操作,LayoutInflater在

我们知道在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在定义适配器中使用的比较多,例如我们可以为适配器定义布局,继而在适配器的设计中对控件进行数据绑定等设置操作。

Tags:Android 使用 LayoutInflater

编辑录入:coldstar [复制链接] [打 印]
赞助商链接