2012-09-10 11:13:32 +02:00
|
|
|
<?xml version="1.0" encoding="utf-8"?>
|
2015-01-13 23:15:13 +01:00
|
|
|
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
2014-05-19 00:10:34 +02:00
|
|
|
android:layout_width="match_parent"
|
2015-09-30 03:11:54 +02:00
|
|
|
android:layout_height="match_parent"
|
|
|
|
|
xmlns:tools="http://schemas.android.com/tools">
|
2014-06-10 01:53:25 +02:00
|
|
|
|
2015-01-13 23:15:13 +01:00
|
|
|
<include
|
2015-02-03 16:05:18 +01:00
|
|
|
android:id="@+id/toolbar_include"
|
2015-02-03 14:28:54 +01:00
|
|
|
layout="@layout/toolbar_standalone" />
|
2012-09-10 11:13:32 +02:00
|
|
|
|
2015-02-27 23:24:04 +01:00
|
|
|
<!--
|
|
|
|
|
fitsSystemWindows and layout_marginTop from
|
|
|
|
|
https://medium.com/@ngdelamo/using-drawerlayout-the-material-way-i-716bba2b5705
|
|
|
|
|
-->
|
2015-01-13 23:15:13 +01:00
|
|
|
<LinearLayout
|
2015-02-03 16:05:18 +01:00
|
|
|
android:layout_below="@id/toolbar_include"
|
2015-02-27 23:24:04 +01:00
|
|
|
android:fitsSystemWindows="true"
|
2015-03-03 20:15:09 +01:00
|
|
|
android:layout_marginTop="@dimen/minus_statusbar_height"
|
2014-06-18 00:03:06 +02:00
|
|
|
android:layout_width="match_parent"
|
2015-01-13 23:15:13 +01:00
|
|
|
android:layout_height="match_parent"
|
|
|
|
|
android:orientation="vertical">
|
2014-06-18 00:03:06 +02:00
|
|
|
|
2015-01-13 23:15:13 +01:00
|
|
|
<include layout="@layout/notify_area" />
|
2014-06-18 00:03:06 +02:00
|
|
|
|
2015-09-30 03:11:54 +02:00
|
|
|
<LinearLayout
|
2015-01-13 23:15:13 +01:00
|
|
|
android:layout_width="match_parent"
|
2015-09-30 03:11:54 +02:00
|
|
|
android:layout_height="wrap_content"
|
|
|
|
|
android:orientation="vertical"
|
|
|
|
|
android:id="@+id/import_keys_top_layout"
|
|
|
|
|
android:visibility="gone"
|
|
|
|
|
tools:visibility="visible">
|
2014-01-09 22:58:52 +01:00
|
|
|
|
2015-09-30 03:11:54 +02:00
|
|
|
<FrameLayout
|
|
|
|
|
android:id="@+id/import_keys_top_container"
|
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
|
android:layout_height="64dp"
|
|
|
|
|
android:orientation="vertical" />
|
|
|
|
|
|
|
|
|
|
<View
|
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
|
android:layout_height="1dip"
|
|
|
|
|
android:background="?android:attr/listDivider" />
|
|
|
|
|
|
|
|
|
|
</LinearLayout>
|
2014-05-08 15:46:57 +02:00
|
|
|
|
2015-01-13 23:15:13 +01:00
|
|
|
<FrameLayout
|
|
|
|
|
android:id="@+id/import_keys_list_container"
|
2014-04-10 20:33:19 +02:00
|
|
|
android:layout_width="match_parent"
|
2015-01-13 23:15:13 +01:00
|
|
|
android:layout_height="0dp"
|
|
|
|
|
android:orientation="vertical"
|
2015-06-26 14:47:59 +02:00
|
|
|
android:layout_weight="1" />
|
2015-01-13 23:15:13 +01:00
|
|
|
|
2015-03-20 18:35:20 +05:30
|
|
|
<RelativeLayout
|
2015-01-13 23:15:13 +01:00
|
|
|
android:id="@+id/import_footer"
|
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
|
android:layout_height="wrap_content"
|
2015-06-26 14:47:59 +02:00
|
|
|
android:orientation="vertical">
|
2015-01-13 23:15:13 +01:00
|
|
|
|
|
|
|
|
<View
|
2015-03-20 18:35:20 +05:30
|
|
|
android:id="@+id/import_divider"
|
2015-01-13 23:15:13 +01:00
|
|
|
android:layout_width="match_parent"
|
|
|
|
|
android:layout_height="1dip"
|
|
|
|
|
android:background="?android:attr/listDivider" />
|
|
|
|
|
|
|
|
|
|
<TextView
|
|
|
|
|
android:id="@+id/import_import"
|
|
|
|
|
android:paddingLeft="8dp"
|
|
|
|
|
android:paddingRight="8dp"
|
|
|
|
|
android:textAppearance="?android:attr/textAppearanceMedium"
|
|
|
|
|
android:layout_width="match_parent"
|
2015-03-20 18:35:20 +05:30
|
|
|
android:layout_height="wrap_content"
|
|
|
|
|
android:layout_marginLeft="16dp"
|
|
|
|
|
android:layout_marginRight="16dp"
|
|
|
|
|
android:layout_below="@id/import_divider"
|
2015-01-13 23:15:13 +01:00
|
|
|
android:text="@string/import_import"
|
|
|
|
|
android:minHeight="?android:attr/listPreferredItemHeight"
|
2015-03-03 11:26:59 -08:00
|
|
|
android:drawableRight="@drawable/ic_file_download_grey_24dp"
|
2015-01-13 23:15:13 +01:00
|
|
|
android:drawablePadding="8dp"
|
|
|
|
|
android:gravity="center_vertical"
|
|
|
|
|
android:clickable="true"
|
2015-03-10 02:13:36 +01:00
|
|
|
android:background="?android:selectableItemBackground" />
|
2014-04-10 20:33:19 +02:00
|
|
|
|
2015-03-20 18:35:20 +05:30
|
|
|
<RelativeLayout
|
|
|
|
|
android:id="@+id/import_snackbar"
|
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
|
android:layout_alignBottom="@id/import_import" />
|
|
|
|
|
|
|
|
|
|
</RelativeLayout>
|
2014-04-10 20:33:19 +02:00
|
|
|
</LinearLayout>
|
2015-06-26 14:47:59 +02:00
|
|
|
</RelativeLayout>
|