UIを駆動する次のXMLレイアウトがあります。
<TableLayout
android:id="@+id/tableLayout1"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:stretchColumns="1"
android:layout_margin="10dp" >
<TableRow
android:id="@+id/tableRow1"
android:layout_width="wrap_content"
android:layout_height="wrap_content" >
<TextView
android:id="@+id/textView1"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="Username:" />
<EditText
android:id="@+id/txtUsername"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:ems="10"
android:inputType="textPersonName" >
</EditText>
</TableRow>
<!-- more rows are here -->
</TableLayout>
このレイアウトをアプリの別のセクションで再利用したいのですが、ある場所で少し変更します。同じ場所にあるすべてのものにEditText
txtUsername
変更してほしい。TextView
つまり、基本的には、コード内のEditTextをTextViewに交換しています。
どうすればよいですか?