2014-08-19 09:52:15 +02:00
|
|
|
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
2014-02-09 21:17:30 +01:00
|
|
|
android:layout_width="match_parent"
|
2014-08-19 09:52:15 +02:00
|
|
|
android:layout_height="match_parent"
|
|
|
|
|
android:orientation="vertical">
|
2014-03-11 03:19:12 +01:00
|
|
|
|
2014-04-09 16:35:27 +02:00
|
|
|
<TextView
|
2014-08-19 10:01:31 +02:00
|
|
|
android:layout_width="wrap_content"
|
2014-04-09 16:35:27 +02:00
|
|
|
android:layout_height="wrap_content"
|
2014-08-19 10:01:31 +02:00
|
|
|
android:background="@color/holo_gray_bright"
|
2014-08-19 09:52:15 +02:00
|
|
|
android:padding="8dp"
|
2014-08-19 10:01:31 +02:00
|
|
|
android:textAppearance="?android:attr/textAppearanceSmall"
|
|
|
|
|
android:text="@string/certs_text"
|
|
|
|
|
android:gravity="center_horizontal" />
|
|
|
|
|
|
|
|
|
|
<View
|
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
|
android:layout_height="1dip"
|
|
|
|
|
android:background="?android:attr/listDivider"
|
|
|
|
|
android:id="@+id/view_key_status_divider" />
|
2014-08-19 09:52:15 +02:00
|
|
|
|
|
|
|
|
<FrameLayout
|
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
|
android:layout_height="match_parent">
|
|
|
|
|
|
|
|
|
|
<se.emilsjolander.stickylistheaders.StickyListHeadersListView
|
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
|
android:layout_height="match_parent"
|
|
|
|
|
android:id="@+id/list"
|
|
|
|
|
android:fastScrollEnabled="true"
|
|
|
|
|
android:paddingBottom="16dp"
|
|
|
|
|
android:paddingLeft="16dp"
|
|
|
|
|
android:paddingRight="32dp"
|
|
|
|
|
android:scrollbarStyle="outsideOverlay" />
|
|
|
|
|
|
|
|
|
|
<TextView
|
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
|
android:textAppearance="?android:attr/textAppearanceMedium"
|
|
|
|
|
android:text="@string/empty_certs"
|
|
|
|
|
android:id="@+id/empty"
|
|
|
|
|
android:visibility="gone"
|
|
|
|
|
android:layout_gravity="center" />
|
|
|
|
|
|
|
|
|
|
</FrameLayout>
|
|
|
|
|
|
|
|
|
|
</LinearLayout>
|
2014-02-09 21:17:30 +01:00
|
|
|
|