94 lines
3.6 KiB
XML
94 lines
3.6 KiB
XML
<FrameLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
|
xmlns:tools="http://schemas.android.com/tools"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="match_parent"
|
|
android:paddingTop="2dp"
|
|
tools:context=".plugins.general.maintenance.MaintenanceFragment">
|
|
|
|
<LinearLayout
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:orientation="vertical">
|
|
|
|
<Button
|
|
android:id="@+id/nav_logsettings"
|
|
style="?android:attr/buttonStyle"
|
|
android:layout_width="fill_parent"
|
|
android:layout_height="wrap_content"
|
|
android:layout_marginBottom="3dp"
|
|
android:layout_marginLeft="10dp"
|
|
android:layout_marginRight="10dp"
|
|
android:layout_marginTop="3dp"
|
|
android:layout_weight="0.5"
|
|
android:text="@string/nav_logsettings"
|
|
android:textColor="@color/colorTreatmentButton" />
|
|
|
|
<Button
|
|
android:id="@+id/log_send"
|
|
style="?android:attr/buttonStyle"
|
|
android:layout_width="fill_parent"
|
|
android:layout_height="wrap_content"
|
|
android:layout_marginBottom="3dp"
|
|
android:layout_marginLeft="10dp"
|
|
android:layout_marginRight="10dp"
|
|
android:layout_marginTop="3dp"
|
|
android:layout_weight="0.5"
|
|
android:text="@string/send_all_logs"
|
|
android:textColor="@color/colorTreatmentButton" />
|
|
|
|
<Button
|
|
android:id="@+id/log_delete"
|
|
style="?android:attr/buttonStyle"
|
|
android:layout_width="fill_parent"
|
|
android:layout_height="wrap_content"
|
|
android:layout_marginBottom="3dp"
|
|
android:layout_marginLeft="10dp"
|
|
android:layout_marginRight="10dp"
|
|
android:layout_marginTop="3dp"
|
|
android:layout_weight="0.5"
|
|
android:text="@string/delete_logs"
|
|
android:textColor="@color/colorTreatmentButton" />
|
|
|
|
<Button
|
|
android:id="@+id/nav_export"
|
|
style="?android:attr/buttonStyle"
|
|
android:layout_width="fill_parent"
|
|
android:layout_height="wrap_content"
|
|
android:layout_marginBottom="3dp"
|
|
android:layout_marginLeft="10dp"
|
|
android:layout_marginRight="10dp"
|
|
android:layout_marginTop="3dp"
|
|
android:layout_weight="0.5"
|
|
android:text="@string/nav_export"
|
|
android:textColor="@color/colorTreatmentButton" />
|
|
|
|
<Button
|
|
android:id="@+id/nav_import"
|
|
style="?android:attr/buttonStyle"
|
|
android:layout_width="fill_parent"
|
|
android:layout_height="wrap_content"
|
|
android:layout_marginBottom="3dp"
|
|
android:layout_marginLeft="10dp"
|
|
android:layout_marginRight="10dp"
|
|
android:layout_marginTop="3dp"
|
|
android:layout_weight="0.5"
|
|
android:text="@string/nav_import"
|
|
android:textColor="@color/colorTreatmentButton" />
|
|
|
|
<Button
|
|
android:id="@+id/nav_resetdb"
|
|
style="?android:attr/buttonStyle"
|
|
android:layout_width="fill_parent"
|
|
android:layout_height="wrap_content"
|
|
android:layout_marginBottom="3dp"
|
|
android:layout_marginLeft="10dp"
|
|
android:layout_marginRight="10dp"
|
|
android:layout_marginTop="3dp"
|
|
android:layout_weight="0.5"
|
|
android:text="@string/nav_resetdb"
|
|
android:textColor="@color/colorTreatmentButton" />
|
|
|
|
</LinearLayout>
|
|
|
|
</FrameLayout>
|