2010-05-18 15:23:25 +00:00
|
|
|
<?xml version="1.0" encoding="utf-8"?>
|
2015-01-29 13:36:38 +01:00
|
|
|
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="match_parent">
|
|
|
|
|
|
|
|
<include
|
|
|
|
android:id="@+id/toolbar"
|
2015-02-03 14:28:54 +01:00
|
|
|
layout="@layout/toolbar_standalone" />
|
2015-01-29 13:36:38 +01:00
|
|
|
|
|
|
|
<LinearLayout
|
|
|
|
android:layout_below="@id/toolbar"
|
|
|
|
android:id="@+id/content_frame"
|
2014-07-06 02:10:35 +02:00
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="match_parent"
|
2015-01-29 13:36:38 +01:00
|
|
|
android:orientation="vertical">
|
|
|
|
|
|
|
|
<include layout="@layout/notify_area" />
|
2010-05-18 15:23:25 +00:00
|
|
|
|
2015-01-29 13:36:38 +01:00
|
|
|
<FrameLayout
|
|
|
|
android:id="@+id/encrypt_pager_mode"
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:orientation="vertical" />
|
2014-01-09 22:58:52 +01:00
|
|
|
|
2015-01-29 13:36:38 +01:00
|
|
|
<fragment
|
|
|
|
android:id="@+id/encrypt_file_fragment"
|
|
|
|
android:name="org.sufficientlysecure.keychain.ui.EncryptFilesFragment"
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="match_parent" />
|
2010-05-18 15:23:25 +00:00
|
|
|
|
2015-01-29 13:36:38 +01:00
|
|
|
</LinearLayout>
|
|
|
|
</RelativeLayout>
|