open-keychain/OpenKeychain/src/main/res/layout/encrypt_files_activity.xml

32 lines
1.1 KiB
XML
Raw Normal View History

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"
layout="@layout/toolbar_standalone" />
2015-01-29 13:36:38 +01:00
<LinearLayout
android:layout_below="@id/toolbar"
android:id="@+id/content_frame"
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>