在ANDROID中膨胀xml时出现问题

时间:2013-03-20 06:22:03

标签: android xml inflate

我在膨胀的xml中有一个按钮,我想把它的xml id。请帮我一些东西........ 我已经夸大了这样的事情。

RelativeLayout mainLayout = (RelativeLayout)findViewById(R.id.relative);

//创建一个视图来扩充layout_item(使用之前创建的textView的xml)

view = getLayoutInflater().inflate(R.layout.inflate, mainLayout,false);

//将视图添加到主布局

mainLayout.addView(view);

1 个答案:

答案 0 :(得分:0)

检查此代码

RelativeLayout mainLayout = (RelativeLayout)findViewById(R.id. relative);
View childLayout = getLayoutInflater().inflate(R.layout.child);
mainLayout.addView(childLayout);