我正在使用两种布局的合并:在此表单上使用 some_layout.xml 的表单布局。
我想要实现的目标是:如果 some_layout 的可见性为GONE,那么用户可以将他的数据输入到edittext-field中并单击按钮。 Visibility设置为VISIBLE,因此无法对表单进行任何更改。
任何想法/建议?
some_layout.xml
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:id="@+id/some_layout"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:gravity="center"
android:background="@color/transparent_grey"/>
main_layout.xml
<merge xmlns:android="http://schemas.android.com/apk/res/android">
<LinearLayout
android:layout_height="fill_parent"
android:layout_width="fill_parent"
android:background="@drawable/bg_main"
android:orientation="vertical">
<EditText
android:id="@+id/ticket_reg_phone_edit"
android:layout_width="fill_parent"
android:layout_height="wrap_content"/>
<Button
android:id="@+id/ticket_reg_button"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="@string/text_activate"/>
</LinearLayout>
<include layout="@layout/some_layout"/>
</merge>