我对android很陌生,所以请原谅我的无知。
我的主要布局是垂直线性布局,我想在其中包含其他重复布局。但是,我希望更改包含布局的对象中的信息。例如,包含的通用布局将是一个水平线性布局,并且将具有一个 TextView 和一个 EditText。在我的主要布局中,我想包含其中两个通用布局。我将如何为每个包含动态更改 TextView 和 EditText 中的文本?另外,我将如何动态更改这些包含的布局的数量?
我的主要布局看起来像这样:
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:id="@+id/main"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="vertical" >
<include android:id="@+id/generic" />
<include android:id="@+id/generic" />
<include android:id="@+id/generic" />
.
.
.
</LinearLayout>
我的通用布局是这样的:
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:id="@+id/generic"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="horizontal" >
<TextView .../>
<EditView .../>
</LinearLayout>
希望我足够清楚。谢谢