2014-02-09 15:17:30 -05:00
|
|
|
<ScrollView xmlns:android="http://schemas.android.com/apk/res/android"
|
|
|
|
xmlns:bootstrapbutton="http://schemas.android.com/apk/res-auto"
|
|
|
|
android:layout_width="match_parent"
|
2014-03-10 21:40:41 -04:00
|
|
|
android:layout_height="match_parent"
|
|
|
|
android:fillViewport="true">
|
2014-02-09 15:17:30 -05:00
|
|
|
|
2014-03-10 22:19:12 -04:00
|
|
|
<RelativeLayout
|
2014-02-09 15:17:30 -05:00
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="wrap_content"
|
2014-03-10 22:19:12 -04:00
|
|
|
android:orientation="vertical">
|
2014-02-09 15:17:30 -05:00
|
|
|
|
2014-03-17 09:10:40 -04:00
|
|
|
<Spinner
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:id="@+id/spinner"
|
|
|
|
android:layout_gravity="center_horizontal"
|
|
|
|
android:gravity="center_horizontal"
|
|
|
|
android:layout_centerHorizontal="true"
|
|
|
|
android:layout_marginTop="2dp"
|
|
|
|
android:layout_marginBottom="2dp" />
|
|
|
|
|
2014-03-10 21:40:41 -04:00
|
|
|
<view
|
2014-02-09 15:17:30 -05:00
|
|
|
android:layout_width="match_parent"
|
2014-03-10 21:40:41 -04:00
|
|
|
android:layout_height="match_parent"
|
|
|
|
class="se.emilsjolander.stickylistheaders.StickyListHeadersListView"
|
2014-03-10 22:19:12 -04:00
|
|
|
android:id="@+id/list"
|
|
|
|
android:paddingRight="32dp"
|
2014-03-17 09:10:40 -04:00
|
|
|
android:paddingLeft="16dp"
|
|
|
|
android:layout_alignParentStart="false"
|
|
|
|
android:layout_alignParentEnd="false"
|
|
|
|
android:layout_below="@+id/spinner" />
|
2014-03-10 22:19:12 -04:00
|
|
|
|
2014-03-11 21:47:19 -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:layout_centerInParent="true"
|
|
|
|
android:paddingBottom="32dp" />
|
|
|
|
|
2014-03-10 22:19:12 -04:00
|
|
|
</RelativeLayout>
|
2014-02-09 15:17:30 -05:00
|
|
|
|
2014-04-05 13:30:52 -04:00
|
|
|
</ScrollView>
|