我想用另一個視圖覆蓋EditText。我的佈局似乎工作,但EditText仍然可點擊。我錯過了什麼?Android - 如何用覆蓋視圖掩蓋EditView
這裏是我的基本佈局:
<RelativeLayout
android:layout_width="fill_parent"
android:layout_height="fill_parent"
xmlns:android="http://schemas.android.com/apk/res/android">
<EditText
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:id="@+id/editText"
android:layout_alignParentTop="true"
android:layout_alignParentLeft="true"
android:inputType="text"/>
<LinearLayout
android:orientation="vertical"
android:background="#00aa00"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:layout_alignParentTop="true"
android:layout_alignParentLeft="true">
</LinearLayout>
,這裏是模擬器的看法:
更新: 我的動畫到的LinearLayout顯示或隱藏的EditText
目前還不清楚你到底想要什麼。你想隱藏'EditText'並且不能點擊它?那麼不要寫'EditText'代碼。 – nhaarman
add android:clickable =「false」,爲什麼你需要它? – Blackbelt
我將動畫LinearLayout顯示或隱藏文字 –