2014-04-09 10:35:27 -04:00
|
|
|
<FrameLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
2014-02-09 15:17:30 -05:00
|
|
|
android:layout_width="match_parent"
|
2014-04-09 10:35:27 -04:00
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:orientation="vertical">
|
2014-02-09 15:17:30 -05:00
|
|
|
|
2014-04-09 10:35:27 -04:00
|
|
|
<se.emilsjolander.stickylistheaders.StickyListHeadersListView
|
2014-02-09 15:17:30 -05:00
|
|
|
android:layout_width="match_parent"
|
2014-04-09 10:35:27 -04:00
|
|
|
android:layout_height="match_parent"
|
|
|
|
android:id="@+id/list"
|
|
|
|
android:fastScrollEnabled="true"
|
|
|
|
android:paddingBottom="16dp"
|
|
|
|
android:paddingLeft="16dp"
|
|
|
|
android:paddingRight="32dp"
|
|
|
|
android:scrollbarStyle="outsideOverlay" />
|
2014-03-10 22:19:12 -04:00
|
|
|
|
2014-04-09 10:35:27 -04: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:gravity="center"
|
|
|
|
android:paddingBottom="32dp" />
|
2014-02-09 15:17:30 -05:00
|
|
|
|
2014-04-09 10:35:27 -04:00
|
|
|
</FrameLayout>
|