我正在尝试将行添加到我在XML文件中定义的TableLayout中。 XML文件包含表的标题行。
我可以使用各种教程中的信息很好地添加新行,但是为新行设置布局所需的代码是一个可怕的混乱,看起来像是一个痛苦的屁股维护标题行的布局变化。
是否可以在仍然在XML中定义行布局的同时为TableLayout创建新行?例如,在XML中定义模板行,在代码中获取它的句柄,然后在需要时克隆模板。
或者是以某种方式完全不同的正确方法吗?
答案 0 :(得分:5)
您提出的方法可以正常工作,它或多或少与填充ListView项目时使用的常用模式相匹配。
定义包含单行的布局。使用LayoutInflater.from(myActivity)
获取LayoutInflater
。使用此inflater可以像使用模板一样使用布局创建新行。通常,您需要使用LayoutInflater#inflate
传递false
的3参数形式作为第三个attachToRoot
参数。
假设您想在每个项目中使用带有标签和按钮的模板布局。它可能看起来像这样:(虽然你的会定义你的表行。)
RES /布局/ item.xml:
<LinearLayout android:layout_width="match_parent"
android:layout_height="wrap_content">
<TextView android:id="@+id/my_label"
android:layout_width="wrap_content"
android:layout_height="wrap_content" />
<Button android:id="@+id/my_button"
android:layout_width="wrap_content"
android:layout_height="wrap_content" />
</LinearLayout>
然后在你膨胀的地方:
// Inflate the layout and find the component views to configure
final View item = inflater.inflate(R.layout.item, parentView, false);
final TextView label = (TextView) item.findViewById(R.id.my_label);
final Button button = (Button) item.findViewById(R.id.my_button);
// Configure component views
label.setText(labelText);
button.setText(buttonText);
button.setOnClickListener(buttonClickListener);
// Add to parent
parentView.addView(item);