即兴的灵感

思维是一种艺术; 艺术需要灵感。

博客好友

最新评论

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



 
凤凰涅槃/浴火重生/马不停蹄/只争朝夕
     隐姓埋名/低调华丽/简单生活/完美人生

posted on 2010-10-29 13:02 poetguo 阅读(4294) 评论(1)  编辑  收藏 所属分类: Android

评论

# re: 使用LayoutInflater动态加载布局和操作控件[未登录] 2014-06-11 16:51 123

回家  回复  更多评论   


只有注册用户登录后才能发表评论。


网站导航: