2012-09-10 11:13:32 +02:00
|
|
|
<?xml version="1.0" encoding="utf-8"?>
|
|
|
|
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:layout_centerHorizontal="true" >
|
|
|
|
|
2013-09-19 02:02:51 +02:00
|
|
|
<FrameLayout
|
|
|
|
android:id="@+id/import_navigation_fragment"
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:layout_alignParentTop="true"
|
|
|
|
android:orientation="vertical"
|
|
|
|
android:paddingLeft="4dp"
|
|
|
|
android:paddingRight="4dp" />
|
|
|
|
|
2012-09-10 11:13:32 +02:00
|
|
|
<LinearLayout
|
2013-09-19 02:02:51 +02:00
|
|
|
android:id="@+id/import_footer"
|
2013-01-08 17:01:45 +01:00
|
|
|
android:layout_width="match_parent"
|
2012-09-10 11:13:32 +02:00
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:layout_alignParentBottom="true"
|
|
|
|
android:orientation="vertical"
|
|
|
|
android:paddingLeft="10dp"
|
|
|
|
android:paddingRight="10dp" >
|
2012-09-10 11:50:41 +02:00
|
|
|
|
2012-09-10 11:13:32 +02:00
|
|
|
<Button
|
2013-09-19 02:02:51 +02:00
|
|
|
android:id="@+id/import_import"
|
2012-09-10 11:13:32 +02:00
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="wrap_content"
|
2012-09-10 11:50:41 +02:00
|
|
|
android:onClick="importOnClick"
|
2013-09-19 02:02:51 +02:00
|
|
|
android:text="@string/import_import" />
|
2012-09-10 11:13:32 +02:00
|
|
|
|
|
|
|
<Button
|
2013-09-19 02:02:51 +02:00
|
|
|
android:id="@+id/import_sign_and_upload"
|
2012-09-10 11:13:32 +02:00
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="wrap_content"
|
2012-09-10 11:50:41 +02:00
|
|
|
android:onClick="signAndUploadOnClick"
|
2013-09-19 02:02:51 +02:00
|
|
|
android:text="@string/import_sign_and_upload" />
|
2012-09-10 11:13:32 +02:00
|
|
|
</LinearLayout>
|
|
|
|
|
2013-09-19 02:02:51 +02:00
|
|
|
<FrameLayout
|
|
|
|
android:id="@+id/import_keys_list_container"
|
2013-01-08 17:01:45 +01:00
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="match_parent"
|
2013-09-19 02:02:51 +02:00
|
|
|
android:layout_above="@+id/import_footer"
|
|
|
|
android:layout_alignParentLeft="true"
|
|
|
|
android:layout_below="@+id/import_navigation_fragment"
|
|
|
|
android:orientation="vertical"
|
|
|
|
android:paddingLeft="4dp"
|
|
|
|
android:paddingRight="4dp" />
|
2012-09-10 11:13:32 +02:00
|
|
|
|
|
|
|
</RelativeLayout>
|