mirror of
https://github.com/moparisthebest/open-keychain
synced 2024-12-19 05:42:17 -05:00
27 lines
1010 B
XML
27 lines
1010 B
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content" >
|
|
|
|
<TextView
|
|
style="@style/SectionHeader"
|
|
android:id="@+id/stickylist_header_text"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:layout_gravity="start|left"
|
|
android:text="header text" />
|
|
|
|
<TextView
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:textAppearance="?android:attr/textAppearanceSmall"
|
|
android:text="certification count"
|
|
android:id="@+id/certs_num"
|
|
android:layout_centerVertical="true"
|
|
android:layout_alignParentRight="true"
|
|
android:layout_alignParentEnd="true"
|
|
android:layout_marginRight="8dp"
|
|
android:visibility="visible"
|
|
android:textColor="@android:color/darker_gray" />
|
|
|
|
</RelativeLayout> |