AndroidAPS/app/src/main/res/layout/configbuilder_simpleitem.xml

43 lines
1.5 KiB
XML
Raw Normal View History

2016-06-13 22:53:41 +02:00
<?xml version="1.0" encoding="utf-8"?>
2016-06-15 21:47:26 +02:00
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
2016-06-13 22:53:41 +02:00
android:layout_width="match_parent"
2016-06-15 21:47:26 +02:00
android:layout_height="wrap_content"
2017-08-29 17:59:46 +02:00
android:orientation="vertical">
2016-06-13 22:53:41 +02:00
2016-06-15 21:47:26 +02:00
<TextView
android:id="@+id/configbuilder_simpleitem_name"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
2017-08-29 17:59:46 +02:00
android:layout_gravity="left"
android:layout_marginLeft="5dp"
android:layout_weight="1"
android:text="ConfigBuilder plugin text" />
<LinearLayout
android:layout_width="match_parent"
android:layout_height="match_parent"
android:gravity="end"
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:text="@string/enabled" />
2016-06-13 22:53:41 +02:00
2017-08-29 17:59:46 +02:00
<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>
2016-06-13 22:53:41 +02:00
2016-06-15 21:47:26 +02:00
</LinearLayout>