Я использую слияние двух макетов: макет формы с some_layout.xml над этой формой.
Что я хочу достичь, это следующее: Если видимость some_layout GONE, поэтому пользователь может ввести свои данные в поле edittext и нажать кнопку.Установлено ли для параметра 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>