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-06-28 20:53:37 +02:00
|
|
|
<LinearLayout
|
|
|
|
|
android:id="@+id/card_container"
|
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
|
android:orientation="vertical" />
|
|
|
|
|
|
2014-05-07 02:14:47 +02:00
|
|
|
<TextView
|
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
|
android:text="This key is expired!"
|
|
|
|
|
android:id="@+id/view_key_expired"
|
|
|
|
|
android:textColor="@color/alert"
|
|
|
|
|
android:textAppearance="?android:attr/textAppearanceSmall"
|
|
|
|
|
android:gravity="center_vertical|center_horizontal"
|
|
|
|
|
android:layout_marginTop="8dp"
|
|
|
|
|
android:layout_marginBottom="8dp"
|
|
|
|
|
android:visibility="gone" />
|
|
|
|
|
|
|
|
|
|
<TextView
|
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
|
android:text="This key has been revoked!"
|
|
|
|
|
android:id="@+id/view_key_revoked"
|
|
|
|
|
android:textColor="@color/alert"
|
|
|
|
|
android:textAppearance="?android:attr/textAppearanceSmall"
|
|
|
|
|
android:gravity="center_vertical|center_horizontal"
|
|
|
|
|
android:visibility="gone"
|
|
|
|
|
android:layout_marginTop="8dp"
|
|
|
|
|
android:layout_marginBottom="8dp" />
|
|
|
|
|
|
|
|
|
|
<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"
|
|
|
|
|
android:id="@+id/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>
|