Files
open-keychain/OpenKeychain/src/main/res/layout/encrypt_files_content.xml

33 lines
1.1 KiB
XML
Raw Normal View History

2014-03-16 23:35:14 +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-09-21 18:10:51 +02:00
android:layout_width="match_parent"
2015-01-13 23:15:13 +01:00
android:layout_height="match_parent">
2015-01-13 23:15:13 +01:00
<include
android:id="@+id/toolbar"
layout="@layout/toolbar" />
2014-07-31 23:20:43 +02:00
2015-01-13 23:15:13 +01:00
<LinearLayout
android:layout_below="@id/toolbar"
android:id="@+id/content_frame"
android:layout_marginLeft="@dimen/drawer_content_padding"
2014-09-21 18:10:51 +02:00
android:layout_width="match_parent"
2015-01-13 23:15:13 +01:00
android:layout_height="match_parent"
android:orientation="vertical">
2014-03-16 23:35:14 +02:00
2015-01-13 23:15:13 +01:00
<include layout="@layout/notify_area" />
<FrameLayout
android:id="@+id/encrypt_pager_mode"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:orientation="vertical" />
<fragment
android:id="@+id/encrypt_file_fragment"
android:name="org.sufficientlysecure.keychain.ui.EncryptFilesFragment"
android:layout_width="match_parent"
android:layout_height="match_parent" />
2014-03-16 23:35:14 +02:00
2015-01-13 23:15:13 +01:00
</LinearLayout>
</RelativeLayout>