2014-02-09 21:17:30 +01:00
|
|
|
<?xml version="1.0" encoding="utf-8"?>
|
|
|
|
|
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
2014-01-13 00:39:51 +01:00
|
|
|
android:layout_width="match_parent"
|
2014-02-09 21:17:30 +01:00
|
|
|
android:layout_height="match_parent"
|
2014-05-05 00:58:22 +02:00
|
|
|
android:orientation="vertical">
|
|
|
|
|
|
2014-07-27 00:46:38 +02:00
|
|
|
<include layout="@layout/notify_area"/>
|
2014-06-28 20:53:37 +02:00
|
|
|
|
2014-07-28 11:11:23 +02:00
|
|
|
<LinearLayout
|
|
|
|
|
android:id="@+id/view_key_status_layout"
|
|
|
|
|
android:layout_width="wrap_content"
|
2014-05-07 02:14:47 +02:00
|
|
|
android:layout_height="wrap_content"
|
2014-07-28 11:11:23 +02:00
|
|
|
android:layout_gravity="center"
|
2014-05-07 02:14:47 +02:00
|
|
|
android:layout_marginTop="8dp"
|
|
|
|
|
android:layout_marginBottom="8dp"
|
2014-07-28 11:11:23 +02:00
|
|
|
android:orientation="horizontal">
|
2014-05-07 02:14:47 +02:00
|
|
|
|
2014-07-28 11:11:23 +02:00
|
|
|
<ImageView
|
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
|
android:id="@+id/view_key_status_image" />
|
|
|
|
|
|
|
|
|
|
<TextView
|
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
|
android:id="@+id/view_key_status_text"
|
|
|
|
|
android:textAppearance="?android:attr/textAppearanceMedium"
|
|
|
|
|
android:layout_gravity="center_vertical"
|
|
|
|
|
android:layout_marginLeft="8dp"/>
|
|
|
|
|
|
|
|
|
|
</LinearLayout>
|
2014-05-07 02:14:47 +02:00
|
|
|
|
|
|
|
|
<View
|
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
|
android:layout_height="1dip"
|
2014-05-07 02:15:09 +02:00
|
|
|
android:background="?android:attr/listDivider"
|
|
|
|
|
android:visibility="gone"
|
2014-07-28 11:11:23 +02:00
|
|
|
android:id="@+id/view_key_status_divider" />
|
2014-05-07 02:14:47 +02:00
|
|
|
|
2014-06-06 22:47:28 +02:00
|
|
|
<org.sufficientlysecure.keychain.ui.widget.SlidingTabLayout
|
2014-05-05 00:58:22 +02:00
|
|
|
android:id="@+id/view_key_sliding_tab_layout"
|
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
|
android:layout_height="wrap_content" />
|
2013-12-25 18:15:30 +01:00
|
|
|
|
2014-02-09 21:17:30 +01:00
|
|
|
<android.support.v4.view.ViewPager
|
2014-05-05 00:58:22 +02:00
|
|
|
android:id="@+id/view_key_pager"
|
2014-01-07 22:59:39 +01:00
|
|
|
android:layout_width="match_parent"
|
2014-05-05 00:58:22 +02:00
|
|
|
android:layout_height="0px"
|
|
|
|
|
android:layout_weight="1"
|
|
|
|
|
android:background="@android:color/white" />
|
2014-01-13 00:39:51 +01:00
|
|
|
|
2014-02-09 21:17:30 +01:00
|
|
|
</LinearLayout>
|