2014-05-05 00:58:22 +02:00
|
|
|
<ScrollView xmlns:android="http://schemas.android.com/apk/res/android"
|
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
|
android:layout_height="match_parent">
|
|
|
|
|
|
|
|
|
|
<!-- focusable and related properties to workaround http://stackoverflow.com/q/16182331-->
|
|
|
|
|
<LinearLayout
|
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
|
android:focusable="true"
|
|
|
|
|
android:focusableInTouchMode="true"
|
|
|
|
|
android:descendantFocusability="beforeDescendants"
|
|
|
|
|
android:orientation="vertical"
|
|
|
|
|
android:paddingLeft="16dp"
|
2014-05-08 13:57:46 +02:00
|
|
|
android:paddingRight="16dp">
|
2014-05-05 00:58:22 +02:00
|
|
|
|
|
|
|
|
<TextView
|
|
|
|
|
style="@style/SectionHeader"
|
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
|
android:layout_marginBottom="4dp"
|
2014-05-06 23:11:10 +02:00
|
|
|
android:layout_marginTop="8dp"
|
2014-05-05 00:58:22 +02:00
|
|
|
android:text="@string/section_keys" />
|
|
|
|
|
|
|
|
|
|
<org.sufficientlysecure.keychain.ui.widget.FixedListView
|
|
|
|
|
android:id="@+id/keys"
|
|
|
|
|
android:layout_width="match_parent"
|
2014-05-06 23:11:10 +02:00
|
|
|
android:layout_height="wrap_content"
|
|
|
|
|
android:layout_marginBottom="8dp" />
|
2014-05-05 00:58:22 +02:00
|
|
|
|
|
|
|
|
</LinearLayout>
|
|
|
|
|
|
|
|
|
|
</ScrollView>
|