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-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:layout_alignParentTop="true"
|
|
|
|
android:layout_above="@+id/showUnknown"
|
|
|
|
android:paddingRight="32dp"
|
|
|
|
android:layout_alignParentLeft="true"
|
|
|
|
android:layout_alignParentStart="true"
|
|
|
|
android:paddingLeft="16dp" />
|
|
|
|
|
|
|
|
<CheckBox
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:text="@string/show_unknown_signatures"
|
|
|
|
android:id="@+id/showUnknown"
|
|
|
|
android:enabled="true"
|
|
|
|
android:layout_alignParentBottom="true"
|
|
|
|
android:layout_alignEnd="@+id/list"
|
|
|
|
android:singleLine="false"
|
|
|
|
android:layout_alignParentRight="true"
|
|
|
|
android:layout_marginRight="16dp" />
|
|
|
|
|
|
|
|
</RelativeLayout>
|
2014-02-09 15:17:30 -05:00
|
|
|
|
|
|
|
</ScrollView>
|