single line in configbuilder

This commit is contained in:
Milos Kozak 2017-08-29 19:47:32 +02:00
parent 13b8a9ecf2
commit 7dfe77dc9c

View file

@ -3,40 +3,29 @@
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android" <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent" android:layout_width="match_parent"
android:layout_height="wrap_content" android:layout_height="wrap_content"
android:orientation="vertical"> android:orientation="horizontal">
<CheckBox
android:id="@+id/configbuilder_simpleitem_checkboxenabled"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:focusable="false"
android:focusableInTouchMode="false"
android:gravity="center_vertical" />
<TextView <TextView
android:id="@+id/configbuilder_simpleitem_name" android:id="@+id/configbuilder_simpleitem_name"
android:layout_width="wrap_content" android:layout_width="wrap_content"
android:layout_height="wrap_content" android:layout_height="wrap_content"
android:layout_gravity="left"
android:layout_marginLeft="5dp"
android:layout_weight="1" android:layout_weight="1"
android:text="ConfigBuilder plugin text" /> android:text="ConfigBuilder plugin text" />
<LinearLayout <CheckBox
android:layout_width="match_parent" android:id="@+id/configbuilder_simpleitem_checkboxvisible"
android:layout_height="match_parent" android:layout_width="wrap_content"
android:gravity="end" android:layout_height="wrap_content"
android:orientation="horizontal"> android:layout_marginLeft="10dp"
android:focusable="false"
<CheckBox android:focusableInTouchMode="false" />
android:id="@+id/configbuilder_simpleitem_checkboxenabled"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:focusable="false"
android:focusableInTouchMode="false"
android:text="@string/enabled" />
<CheckBox
android:id="@+id/configbuilder_simpleitem_checkboxvisible"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_marginLeft="10dp"
android:layout_marginRight="5dp"
android:focusable="false"
android:focusableInTouchMode="false"
android:text="@string/visible" />
</LinearLayout>
</LinearLayout> </LinearLayout>