2013-06-25 04:02:30 +00:00
|
|
|
<?xml version="1.0" encoding="utf-8"?>
|
|
|
|
<ScrollView xmlns:android="http://schemas.android.com/apk/res/android"
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="match_parent"
|
|
|
|
android:layout_gravity="center_vertical"
|
|
|
|
android:gravity="center_vertical">
|
|
|
|
|
|
|
|
<LinearLayout android:orientation="vertical"
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:gravity="center_vertical"
|
|
|
|
android:layout_gravity="center_vertical"
|
2015-01-12 00:24:19 +00:00
|
|
|
android:padding="8dip">
|
2013-06-25 04:02:30 +00:00
|
|
|
|
|
|
|
<LinearLayout android:id="@+id/import_sms"
|
|
|
|
android:clickable="true"
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="wrap_content"
|
2015-01-12 00:24:19 +00:00
|
|
|
android:background="?import_export_item_card_background"
|
2013-06-25 04:02:30 +00:00
|
|
|
android:orientation="vertical">
|
|
|
|
|
|
|
|
<LinearLayout android:orientation="horizontal"
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:gravity="center_vertical"
|
|
|
|
android:paddingTop="8dip"
|
|
|
|
android:paddingBottom="8dip"
|
|
|
|
android:layout_marginLeft="16dip"
|
|
|
|
android:layout_marginRight="16dip">
|
|
|
|
|
|
|
|
<ImageView android:layout_width="wrap_content"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:layout_marginRight="10dip"
|
2015-03-04 11:06:43 +00:00
|
|
|
android:src="?import_sms"/>
|
2013-06-25 04:02:30 +00:00
|
|
|
|
|
|
|
<LinearLayout android:orientation="vertical"
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_height="wrap_content">
|
|
|
|
|
|
|
|
<TextView android:layout_width="match_parent"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
style="@style/Registration.Description"
|
|
|
|
android:text="@string/import_fragment__import_system_sms_database"/>
|
|
|
|
|
|
|
|
<TextView android:layout_width="match_parent"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:textAppearance="?android:attr/textAppearanceSmall"
|
|
|
|
android:text="@string/import_fragment__import_the_database_from_the_default_system"/>
|
|
|
|
|
|
|
|
</LinearLayout>
|
|
|
|
</LinearLayout>
|
|
|
|
</LinearLayout>
|
|
|
|
|
|
|
|
<LinearLayout android:id="@+id/import_encrypted_backup"
|
|
|
|
android:clickable="true"
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:layout_marginTop="10dip"
|
2015-01-12 00:24:19 +00:00
|
|
|
android:background="?import_export_item_card_background"
|
2013-06-25 04:02:30 +00:00
|
|
|
android:orientation="vertical">
|
|
|
|
|
|
|
|
<LinearLayout android:orientation="horizontal"
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:gravity="center_vertical"
|
|
|
|
android:paddingTop="8dip"
|
|
|
|
android:paddingBottom="8dip"
|
|
|
|
android:layout_marginLeft="16dip"
|
|
|
|
android:layout_marginRight="16dip">
|
|
|
|
|
|
|
|
<ImageView android:layout_width="wrap_content"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:layout_marginRight="10dip"
|
2015-01-12 00:24:19 +00:00
|
|
|
android:src="?encrypted_backup"/>
|
2013-06-25 04:02:30 +00:00
|
|
|
|
|
|
|
<LinearLayout android:orientation="vertical"
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_height="wrap_content">
|
|
|
|
|
|
|
|
<TextView android:layout_width="match_parent"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
style="@style/Registration.Description"
|
2015-11-05 22:42:04 +00:00
|
|
|
android:text="@string/import_fragment__restore_encrypted_backup"/>
|
2013-06-25 04:02:30 +00:00
|
|
|
|
|
|
|
<TextView android:layout_width="match_parent"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:textAppearance="?android:attr/textAppearanceSmall"
|
2015-09-23 20:35:18 +00:00
|
|
|
android:text="@string/import_fragment__restore_a_previously_exported_encrypted_signal_backup"/>
|
2013-06-25 04:02:30 +00:00
|
|
|
|
|
|
|
</LinearLayout>
|
|
|
|
</LinearLayout>
|
|
|
|
</LinearLayout>
|
|
|
|
|
|
|
|
|
|
|
|
<LinearLayout android:id="@+id/import_plaintext_backup"
|
|
|
|
android:clickable="true"
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:layout_marginTop="10dip"
|
2015-01-12 00:24:19 +00:00
|
|
|
android:background="?import_export_item_card_background"
|
2013-06-25 04:02:30 +00:00
|
|
|
android:orientation="vertical">
|
|
|
|
|
|
|
|
<LinearLayout android:orientation="horizontal"
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:gravity="center_vertical"
|
|
|
|
android:paddingTop="8dip"
|
|
|
|
android:paddingBottom="8dip"
|
|
|
|
android:layout_marginLeft="16dip"
|
|
|
|
android:layout_marginRight="16dip">
|
|
|
|
|
|
|
|
<ImageView android:layout_width="wrap_content"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:layout_marginRight="10dip"
|
2015-01-12 00:24:19 +00:00
|
|
|
android:src="?plaintext_backup"/>
|
2013-06-25 04:02:30 +00:00
|
|
|
|
|
|
|
<LinearLayout android:orientation="vertical"
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_height="wrap_content">
|
|
|
|
|
|
|
|
<TextView android:layout_width="match_parent"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
style="@style/Registration.Description"
|
|
|
|
android:text="@string/import_fragment__import_plaintext_backup"/>
|
|
|
|
|
|
|
|
<TextView android:layout_width="match_parent"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:textAppearance="?android:attr/textAppearanceSmall"
|
|
|
|
android:text="@string/import_fragment__import_a_plaintext_backup_file"/>
|
|
|
|
</LinearLayout>
|
|
|
|
</LinearLayout>
|
|
|
|
</LinearLayout>
|
|
|
|
</LinearLayout>
|
|
|
|
</ScrollView>
|