open-keychain/OpenKeychain/src/main/res/layout/view_key_certs_fragment.xml

35 lines
1.2 KiB
XML
Raw Normal View History

<ScrollView xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
2014-03-10 21:40:41 -04:00
android:layout_height="match_parent"
android:fillViewport="true">
2014-03-10 22:19:12 -04:00
<RelativeLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
2014-03-10 22:19:12 -04:00
android:orientation="vertical">
2014-03-10 21:40:41 -04:00
<view
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"
android:paddingLeft="16dp"
android:layout_alignParentStart="false"
android:layout_alignParentEnd="false"
android:layout_below="@+id/list" />
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>
</ScrollView>