2012-11-06 16:17:31 -05:00
|
|
|
<?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"
|
2013-02-12 04:04:52 -05:00
|
|
|
android:layout_height="match_parent"
|
|
|
|
android:gravity="center_vertical"
|
2013-07-21 10:42:31 -04:00
|
|
|
android:paddingLeft="2dip"
|
|
|
|
android:paddingRight="2dip"
|
2013-02-12 04:04:52 -05:00
|
|
|
android:clickable="true">
|
2012-11-06 16:17:31 -05:00
|
|
|
|
|
|
|
<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"
|
2013-02-12 04:04:52 -05:00
|
|
|
android:clickable="true"
|
2013-07-21 10:42:31 -04:00
|
|
|
android:paddingLeft="4dip"
|
|
|
|
android:paddingRight="4dip">
|
2013-02-12 04:04:52 -05:00
|
|
|
|
|
|
|
<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" />
|
|
|
|
|
2012-11-06 16:17:31 -05:00
|
|
|
</LinearLayout>
|
2013-02-12 04:04:52 -05:00
|
|
|
|
2012-11-06 16:17:31 -05:00
|
|
|
<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"
|
2013-02-12 04:04:52 -05:00
|
|
|
android:clickable="true"
|
2013-07-21 10:42:31 -04:00
|
|
|
android:paddingLeft="4dip"
|
|
|
|
android:paddingRight="4dip">
|
2013-02-12 04:04:52 -05:00
|
|
|
|
|
|
|
<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"/>
|
|
|
|
|
2012-11-06 16:17:31 -05:00
|
|
|
</LinearLayout>
|
|
|
|
|
|
|
|
</RelativeLayout>
|