mirror of
https://codeberg.org/Freeyourgadget/Gadgetbridge
synced 2024-12-04 16:02:55 +01:00
102 lines
4.0 KiB
XML
102 lines
4.0 KiB
XML
<RelativeLayout 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"
|
|
tools:context="nodomain.freeyourgadget.gadgetbridge.activities.ControlCenterv2">
|
|
|
|
<ScrollView
|
|
android:id="@+id/scrollView2"
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content">
|
|
|
|
<LinearLayout
|
|
android:layout_width="match_parent"
|
|
android:orientation="vertical"
|
|
android:layout_height="wrap_content"
|
|
android:paddingBottom="@dimen/activity_vertical_margin"
|
|
android:paddingLeft="@dimen/activity_horizontal_margin"
|
|
android:paddingRight="@dimen/activity_horizontal_margin"
|
|
android:paddingTop="@dimen/activity_vertical_margin">
|
|
|
|
<LinearLayout
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:gravity="fill_horizontal"
|
|
android:orientation="horizontal"
|
|
android:weightSum="2">
|
|
|
|
<Button
|
|
android:id="@+id/exportDBButton"
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:layout_weight="1"
|
|
|
|
android:text="Export DB" />
|
|
|
|
<Button
|
|
android:id="@+id/importDBButton"
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:layout_weight="1"
|
|
android:text="Import DB" />
|
|
</LinearLayout>
|
|
|
|
<TextView
|
|
android:id="@+id/db_management_intro"
|
|
android:layout_width="fill_parent"
|
|
android:layout_height="wrap_content"
|
|
android:text="@string/activity_db_management_import_export_explanation"
|
|
android:textAppearance="?android:attr/textAppearanceSmall" />
|
|
|
|
<TextView
|
|
android:id="@+id/activity_db_management_path"
|
|
android:layout_width="fill_parent"
|
|
android:layout_height="wrap_content"
|
|
android:textAppearance="?android:attr/textAppearanceMedium" />
|
|
|
|
|
|
<TextView
|
|
android:id="@+id/mergeOldActivityDataTitle"
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:layout_marginTop="40dp"
|
|
android:text="@string/activity_db_management_merge_old_title"
|
|
android:textAppearance="?android:attr/textAppearanceMedium"
|
|
android:textColor="@color/accent" />
|
|
|
|
<LinearLayout
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:gravity="fill_horizontal"
|
|
android:orientation="horizontal"
|
|
android:weightSum="2">
|
|
|
|
<Button
|
|
android:id="@+id/deleteOldActivityDB"
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:layout_gravity="fill_horizontal"
|
|
android:layout_weight="1"
|
|
android:text="Delete old DB" />
|
|
</LinearLayout>
|
|
|
|
<TextView
|
|
android:id="@+id/emptyDBText"
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:layout_marginTop="40dp"
|
|
android:text="Warning! By pushing this button you will wipe your database and start from scratch."
|
|
android:textAppearance="?android:attr/textAppearanceSmall" />
|
|
|
|
<Button
|
|
android:id="@+id/emptyDBButton"
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:text="Empty DB" />
|
|
|
|
|
|
</LinearLayout>
|
|
</ScrollView>
|
|
|
|
</RelativeLayout>
|