我想更改TextView
toEditText
和TextView
to EditText
,因此我决定在 android 上使用该ViewSwitcher
元素,我在android developer website上阅读了它。
但是我仍然有一些我不明白的观点:
- 如何确定当前的开关?(例如,仅显示
EditText
,而使 不可见TextView
)
这是我的代码:
<ViewSwitcher
xmlns:android="http://schemas.android.com/apk/res/android"
android:id="@+id/my_switcher"
android:layout_width="fill_parent"
android:layout_height="fill_parent" >
<TextView
android:id="@+id/clickable_text_view"
android:clickable="true"
android:onClick="TextViewClicked"
android:text="@string/some_value" />
<EditText
android:id="@+id/hidden_edit_view"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:hint="@string/some_value" >
</EditText>
</ViewSwitcher>