aboutsummaryrefslogtreecommitdiffstats
path: root/OpenKeychain/src/main/res/layout/encrypt_files_activity.xml
diff options
context:
space:
mode:
authorDominik Schürmann <dominik@dominikschuermann.de>2015-01-29 13:36:38 +0100
committerDominik Schürmann <dominik@dominikschuermann.de>2015-01-29 13:36:38 +0100
commit34b01e9f2b07eef512e5fb453891f7233a685ae8 (patch)
treee08b7ea53139166993734a5f1c69c8da32bb90cc /OpenKeychain/src/main/res/layout/encrypt_files_activity.xml
parent6a7d33260625ee566ac8a4cc555239226c4bb521 (diff)
downloadopen-keychain-34b01e9f2b07eef512e5fb453891f7233a685ae8.tar.gz
open-keychain-34b01e9f2b07eef512e5fb453891f7233a685ae8.tar.bz2
open-keychain-34b01e9f2b07eef512e5fb453891f7233a685ae8.zip
Remove files related to old nav drawer
Diffstat (limited to 'OpenKeychain/src/main/res/layout/encrypt_files_activity.xml')
-rw-r--r--OpenKeychain/src/main/res/layout/encrypt_files_activity.xml34
1 files changed, 26 insertions, 8 deletions
diff --git a/OpenKeychain/src/main/res/layout/encrypt_files_activity.xml b/OpenKeychain/src/main/res/layout/encrypt_files_activity.xml
index cdcf4fa43..401b1c36e 100644
--- a/OpenKeychain/src/main/res/layout/encrypt_files_activity.xml
+++ b/OpenKeychain/src/main/res/layout/encrypt_files_activity.xml
@@ -1,14 +1,32 @@
<?xml version="1.0" encoding="utf-8"?>
-<android.support.v4.widget.FixedDrawerLayout
- xmlns:android="http://schemas.android.com/apk/res/android"
- xmlns:tools="http://schemas.android.com/tools"
- android:id="@+id/drawer_layout"
+<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" />
+
+ <LinearLayout
+ android:layout_below="@id/toolbar"
+ android:id="@+id/content_frame"
android:layout_width="match_parent"
android:layout_height="match_parent"
- tools:context=".ui.EncryptFileActivity">
+ android:orientation="vertical">
+
+ <include layout="@layout/notify_area" />
- <include layout="@layout/encrypt_files_content"/>
+ <FrameLayout
+ android:id="@+id/encrypt_pager_mode"
+ android:layout_width="match_parent"
+ android:layout_height="wrap_content"
+ android:orientation="vertical" />
- <include layout="@layout/drawer_list" />
+ <fragment
+ android:id="@+id/encrypt_file_fragment"
+ android:name="org.sufficientlysecure.keychain.ui.EncryptFilesFragment"
+ android:layout_width="match_parent"
+ android:layout_height="match_parent" />
-</android.support.v4.widget.FixedDrawerLayout> \ No newline at end of file
+ </LinearLayout>
+</RelativeLayout> \ No newline at end of file