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

34 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_include"
2015-03-06 01:52:06 +01:00
layout="@layout/toolbar_standalone_white" />
2015-01-29 13:36:38 +01:00
<!--
fitsSystemWindows and layout_marginTop from
https://medium.com/@ngdelamo/using-drawerlayout-the-material-way-i-716bba2b5705
-->
2015-01-29 13:36:38 +01:00
<LinearLayout
android:layout_below="@id/toolbar_include"
2015-01-29 13:36:38 +01:00
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
2015-03-27 00:40:37 +01:00
android:id="@+id/encrypt_mode_container"
2015-01-29 13:36:38 +01:00
android:layout_width="match_parent"
2015-03-29 20:37:54 +02:00
android:layout_height="wrap_content" />
2014-01-09 22:58:52 +01:00
2015-03-27 00:40:37 +01:00
<FrameLayout
android:id="@+id/encrypt_text_container"
2015-01-29 13:36:38 +01:00
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>