我有以下 XML 布局驱动我的 UI:
<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。
我该怎么做呢?