0

我正在尝试在 iPhone 上创建类似可编辑 UITableView 的东西。

在此处输入图像描述

我在列表末尾添加了一个按钮来添加新项目,这相当于 iphone 上的“+”按钮,这会将用户带到要添加的项目列表。我的问题是,当他们选择一个时,我不知道如何将其添加到列表中。

    <LinearLayout
            android:key="application_preferences"
            android:title="Applications">
    </LinearLayout>

如何以编程方式在 LinearLayout 中附加视图?

4

2 回答 2

1

您可以使用addView将子视图添加到 a ViewGroup,但也可以考虑仅使用ListView而不是 a LinearLayout

于 2013-01-07T19:25:41.263 回答
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);
于 2013-01-07T19:26:19.207 回答