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

164 lines
5.4 KiB
XML
Raw Normal View History

2021-03-27 23:14:51 +01:00
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
2017-02-17 13:18:36 +01:00
xmlns:tools="http://schemas.android.com/tools"
2021-03-27 23:14:51 +01:00
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="vertical"
2019-02-28 23:16:50 +01:00
tools:context=".plugins.general.nsclient.NSClientFragment">
2017-02-17 13:18:36 +01:00
2021-10-12 23:54:04 +02:00
<LinearLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_marginStart="5dp"
android:layout_marginEnd="5dp"
2021-10-12 23:54:04 +02:00
android:layout_marginBottom="5dp"
android:gravity="center_horizontal"
android:orientation="horizontal">
<TextView
android:layout_width="wrap_content"
2017-02-17 13:18:36 +01:00
android:layout_height="wrap_content"
2021-10-12 23:54:04 +02:00
android:text="@string/nsclientinternal_url" />
<TextView
android:id="@+id/url"
android:layout_width="wrap_content"
2017-02-17 13:18:36 +01:00
android:layout_height="wrap_content"
android:layout_marginStart="5dp"
2021-10-12 23:54:04 +02:00
android:autoLink="web"
tools:ignore="RtlHardcoded" />
</LinearLayout>
<LinearLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_marginStart="5dp"
android:layout_marginEnd="5dp"
2021-10-12 23:54:04 +02:00
android:layout_marginBottom="5dp"
android:gravity="center_horizontal"
android:orientation="horizontal">
<CheckBox
android:id="@+id/paused"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="@string/paused" />
<CheckBox
android:id="@+id/autoscroll"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_marginStart="20dp"
android:layout_marginEnd="10dp"
2021-10-12 23:54:04 +02:00
android:text="@string/nsclientinternal_autoscroll"
tools:ignore="RtlHardcoded" />
</LinearLayout>
<LinearLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_marginStart="5dp"
android:layout_marginEnd="5dp"
2021-10-12 23:54:04 +02:00
android:orientation="horizontal">
<TextView
android:layout_width="wrap_content"
2017-02-17 13:18:36 +01:00
android:layout_height="wrap_content"
android:layout_marginEnd="5dp"
2021-10-12 23:54:04 +02:00
android:text="@string/status"
tools:ignore="RtlHardcoded" />
2017-02-17 13:18:36 +01:00
2021-10-12 23:54:04 +02:00
<TextView
android:id="@+id/status"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:textStyle="normal|bold" />
2017-02-17 13:18:36 +01:00
2021-10-12 23:54:04 +02:00
<TextView
android:id="@+id/textView3"
android:layout_width="0dp"
android:layout_height="wrap_content"
android:layout_weight="1" />
2017-02-17 18:14:33 +01:00
2021-10-12 23:54:04 +02:00
<TextView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="@string/queue" />
2017-02-17 13:18:36 +01:00
2021-10-12 23:54:04 +02:00
<TextView
android:id="@+id/queue"
android:layout_width="wrap_content"
2017-02-17 13:18:36 +01:00
android:layout_height="wrap_content"
android:layout_marginStart="5dp"
android:layout_marginEnd="5dp" />
2021-10-12 23:54:04 +02:00
</LinearLayout>
<LinearLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_marginStart="5dp"
2021-10-12 23:54:04 +02:00
android:layout_marginTop="10dp"
android:layout_marginEnd="5dp"
2021-10-12 23:54:04 +02:00
android:layout_marginBottom="10dp"
android:orientation="horizontal">
<TextView
android:id="@+id/clear_log"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_weight="1"
android:text="@string/clearlog"
android:textAlignment="center"
android:textColor="?attr/actionButton"
2021-10-12 23:54:04 +02:00
android:textStyle="normal|bold" />
<TextView
android:id="@+id/restart"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_weight="1"
android:text="@string/restart"
android:textAlignment="center"
android:textColor="?attr/actionButton"
2021-10-12 23:54:04 +02:00
android:textStyle="normal|bold" />
<TextView
android:id="@+id/deliver_now"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_weight="1"
android:text="@string/deliver_now"
android:textAlignment="center"
android:textColor="?attr/actionButton"
2021-10-12 23:54:04 +02:00
android:textStyle="normal|bold" />
<TextView
android:id="@+id/full_sync"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_weight="1"
android:text="@string/full_sync"
android:textAlignment="center"
android:textColor="?attr/actionButton"
2021-10-12 23:54:04 +02:00
android:textStyle="normal|bold" />
</LinearLayout>
<ScrollView
android:id="@+id/log_scrollview"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:layout_marginStart="5dp"
android:layout_marginEnd="5dp">
2021-10-12 23:54:04 +02:00
<TextView
android:id="@+id/log"
2017-02-17 13:18:36 +01:00
android:layout_width="fill_parent"
2021-10-12 23:54:04 +02:00
android:layout_height="wrap_content"
android:text="" />
</ScrollView>
2017-02-17 13:18:36 +01:00
2021-03-27 23:14:51 +01:00
</LinearLayout>