mirror of
https://github.com/moparisthebest/k-9
synced 2024-11-01 16:15:08 -04:00
64 lines
2.1 KiB
XML
64 lines
2.1 KiB
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<RelativeLayout
|
|
xmlns:android="http://schemas.android.com/apk/res/android"
|
|
android:id="@+id/active_icons"
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="match_parent"
|
|
android:gravity="center_vertical"
|
|
android:paddingLeft="6dip"
|
|
android:paddingRight="6dip"
|
|
android:clickable="true">
|
|
|
|
<LinearLayout
|
|
android:id="@+id/flagged_message_count_wrapper"
|
|
android:orientation="horizontal"
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:gravity="center_vertical"
|
|
android:clickable="true"
|
|
android:paddingLeft="10dip"
|
|
android:paddingRight="10dip">
|
|
|
|
<View
|
|
android:id="@+id/flagged_message_count_icon"
|
|
android:layout_width="32dp"
|
|
android:layout_height="32dp" />
|
|
|
|
<TextView
|
|
android:id="@+id/flagged_message_count"
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:singleLine="true"
|
|
android:ellipsize="end"
|
|
android:textAppearance="?android:attr/textAppearanceLarge" />
|
|
|
|
</LinearLayout>
|
|
|
|
<LinearLayout
|
|
android:id="@+id/new_message_count_wrapper"
|
|
android:orientation="horizontal"
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:layout_toRightOf="@id/flagged_message_count_wrapper"
|
|
android:gravity="center_vertical"
|
|
android:clickable="true"
|
|
android:paddingLeft="10dip"
|
|
android:paddingRight="10dip">
|
|
|
|
<View
|
|
android:id="@+id/new_message_count_icon"
|
|
android:layout_width="32dp"
|
|
android:layout_height="32dp"/>
|
|
|
|
<TextView
|
|
android:id="@+id/new_message_count"
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:singleLine="true"
|
|
android:ellipsize="end"
|
|
android:textAppearance="?android:attr/textAppearanceLarge"/>
|
|
|
|
</LinearLayout>
|
|
|
|
</RelativeLayout>
|