0

我在膨胀的 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);
4

1 回答 1

0

检查此代码

RelativeLayout mainLayout = (RelativeLayout)findViewById(R.id. relative);
View childLayout = getLayoutInflater().inflate(R.layout.child);
mainLayout.addView(childLayout);
于 2013-03-20T06:29:38.263 回答