<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:orientation="horizontal"
android:layout_width="match_parent"
android:layout_height="match_parent">
<TextView
android:layout_width="0dp"
android:layout_height="wrap_content"
android:text="@string/labelText"
android:id="@+id/editingCheckView"
android:layout_weight="1" />
<CheckBox
android:layout_width="0dp"
android:layout_height="wrap_content"
android:text="@string/checkBox"
android:id="@+id/editingCheckedBox"
android:visibility="gone"
android:checked="false"
android:layout_weight="1" />
<TextView
android:layout_width="0dp"
android:layout_height="wrap_content"
android:text="@string/labelText"
android:id="@+id/editingNameView"
android:layout_weight="1" />
<TextView
android:layout_width="0dp"
android:layout_height="wrap_content"
android:text="@string/labelText"
android:id="@+id/editingValueView"
android:layout_weight="1" />
<EditText
android:layout_width="0dp"
android:layout_height="wrap_content"
android:id="@+id/editingValueEdit"
android:inputType="number"
android:visibility="gone"
android:layout_weight="1" />
<Button
android:layout_width="0dp"
android:layout_height="wrap_content"
android:text="@string/ok"
android:id="@+id/okButton"
android:visibility="gone"
android:layout_weight="1" />
</LinearLayout>
Dosyayı İndir