2012-08-24 23:47:23 -04:00
|
|
|
<?xml version="1.0" encoding="utf-8"?>
|
2013-01-31 20:50:00 -05:00
|
|
|
<FrameLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
2012-08-24 23:47:23 -04:00
|
|
|
android:layout_width="fill_parent"
|
2013-01-31 20:50:00 -05:00
|
|
|
android:layout_height="wrap_content" >
|
2012-08-24 23:47:23 -04:00
|
|
|
|
|
|
|
<LinearLayout
|
2013-01-31 20:50:00 -05:00
|
|
|
android:id="@+id/actionbar_message_list"
|
|
|
|
android:layout_width="fill_parent"
|
2012-08-24 23:47:23 -04:00
|
|
|
android:layout_height="wrap_content"
|
2013-01-31 20:50:00 -05:00
|
|
|
android:orientation="horizontal" >
|
2012-08-24 23:47:23 -04:00
|
|
|
|
2013-01-31 20:50:00 -05:00
|
|
|
<LinearLayout
|
|
|
|
android:id="@+id/title_layout"
|
|
|
|
android:layout_width="0dip"
|
2012-08-24 23:47:23 -04:00
|
|
|
android:layout_height="wrap_content"
|
2013-01-31 20:50:00 -05:00
|
|
|
android:layout_gravity="center_vertical"
|
|
|
|
android:layout_weight="1"
|
|
|
|
android:orientation="vertical" >
|
|
|
|
|
|
|
|
<TextView
|
|
|
|
android:id="@+id/actionbar_title_first"
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:ellipsize="start"
|
|
|
|
android:singleLine="true"
|
|
|
|
android:textSize="14sp" />
|
|
|
|
|
|
|
|
<TextView
|
|
|
|
android:id="@+id/actionbar_title_sub"
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:ellipsize="end"
|
|
|
|
android:singleLine="true"
|
|
|
|
android:textColor="?android:attr/textColorSecondary"
|
|
|
|
android:textSize="12sp" />
|
|
|
|
</LinearLayout>
|
|
|
|
|
|
|
|
<ProgressBar
|
|
|
|
android:id="@+id/actionbar_progress"
|
|
|
|
style="?android:attr/indeterminateProgressStyle"
|
|
|
|
android:layout_width="32dp"
|
|
|
|
android:layout_height="32dp"
|
|
|
|
android:layout_gravity="center"
|
|
|
|
android:visibility="gone" />
|
2012-08-24 23:47:23 -04:00
|
|
|
|
|
|
|
<TextView
|
2013-01-31 20:50:00 -05:00
|
|
|
android:id="@+id/actionbar_unread_count"
|
2012-08-24 23:47:23 -04:00
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_height="wrap_content"
|
2013-01-31 20:50:00 -05:00
|
|
|
android:paddingLeft="12dip"
|
|
|
|
android:paddingRight="12dip"
|
|
|
|
android:textColor="?android:attr/textColorTertiary"
|
|
|
|
android:textSize="32sp" />
|
2012-08-24 23:47:23 -04:00
|
|
|
</LinearLayout>
|
|
|
|
|
2013-01-31 20:50:00 -05:00
|
|
|
<LinearLayout
|
|
|
|
android:id="@+id/actionbar_message_view"
|
|
|
|
android:layout_width="fill_parent"
|
2012-08-24 23:47:23 -04:00
|
|
|
android:layout_height="wrap_content"
|
2013-01-31 20:50:00 -05:00
|
|
|
android:visibility="gone" >
|
|
|
|
|
|
|
|
<com.fsck.k9.view.MessageTitleView
|
|
|
|
android:id="@+id/message_title_view"
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:includeFontPadding="false"
|
|
|
|
android:textSize="16sp" />
|
|
|
|
</LinearLayout>
|
2012-08-24 23:47:23 -04:00
|
|
|
|
2013-01-31 20:50:00 -05:00
|
|
|
</FrameLayout>
|