2014-02-09 21:17:30 +01:00
|
|
|
<ScrollView xmlns:android="http://schemas.android.com/apk/res/android"
|
|
|
|
|
android:layout_width="match_parent"
|
2014-03-11 02:40:41 +01:00
|
|
|
android:layout_height="match_parent"
|
|
|
|
|
android:fillViewport="true">
|
2014-02-09 21:17:30 +01:00
|
|
|
|
2014-03-11 03:19:12 +01:00
|
|
|
<RelativeLayout
|
2014-02-09 21:17:30 +01:00
|
|
|
android:layout_width="match_parent"
|
|
|
|
|
android:layout_height="wrap_content"
|
2014-03-11 03:19:12 +01:00
|
|
|
android:orientation="vertical">
|
2014-02-09 21:17:30 +01:00
|
|
|
|
2014-03-11 02:40:41 +01:00
|
|
|
<view
|
2014-02-09 21:17:30 +01:00
|
|
|
android:layout_width="match_parent"
|
2014-03-11 02:40:41 +01:00
|
|
|
android:layout_height="match_parent"
|
|
|
|
|
class="se.emilsjolander.stickylistheaders.StickyListHeadersListView"
|
2014-03-11 03:19:12 +01:00
|
|
|
android:id="@+id/list"
|
|
|
|
|
android:paddingRight="32dp"
|
2014-03-17 14:10:40 +01:00
|
|
|
android:paddingLeft="16dp"
|
|
|
|
|
android:layout_alignParentStart="false"
|
|
|
|
|
android:layout_alignParentEnd="false"
|
2014-04-06 01:57:28 +02:00
|
|
|
android:layout_below="@+id/list" />
|
2014-03-11 03:19:12 +01:00
|
|
|
|
2014-03-12 02:47:19 +01:00
|
|
|
<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_centerInParent="true"
|
|
|
|
|
android:paddingBottom="32dp" />
|
|
|
|
|
|
2014-03-11 03:19:12 +01:00
|
|
|
</RelativeLayout>
|
2014-02-09 21:17:30 +01:00
|
|
|
|
2014-04-05 19:30:52 +02:00
|
|
|
</ScrollView>
|