我正在尝试在iPhone上创建类似可编辑的UITableView。
我添加了一个按钮,在列表的末尾添加新项目,这相当于iphone上的“+”按钮,这会将用户带到要添加的项目列表。我的问题是,当他们选择一个时,我不知道如何将它添加到列表中。
<LinearLayout
android:key="application_preferences"
android:title="Applications">
</LinearLayout>
如何以编程方式在LinearLayout中附加视图?
答案 0 :(得分:1)
答案 1 :(得分:1)
您的问题不是很清楚,但如果您尝试以编程方式向线性布局添加视图,请使用Layout Inflater
LayoutInflater localLayoutInflater =(LayoutInflater)getBaseContext().getSystemService("layout_inflater");
View myView = localLayoutInflater.inflate(R.layout.custom_layout, null);
final LinearLayout ll=(LinearLayout)findViewById(R.id.linearlayoutID);
ll.addView(myView);