2012-07-16 09:22:42 -04:00
|
|
|
<?xml version="1.0" encoding="utf-8"?>
|
2012-07-16 14:52:44 -04:00
|
|
|
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
2012-07-16 09:22:42 -04:00
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:orientation="vertical" >
|
2012-07-16 14:52:44 -04:00
|
|
|
|
2012-07-16 09:22:42 -04:00
|
|
|
<TextView
|
2012-07-16 14:52:44 -04:00
|
|
|
android:id="@+id/actionbar_title_first"
|
2012-07-16 09:22:42 -04:00
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:layout_marginBottom="-4dip"
|
2012-08-24 21:32:21 -04:00
|
|
|
android:textAppearance="?android:attr/textAppearanceMedium"
|
|
|
|
android:singleLine="true"
|
|
|
|
android:ellipsize="start" />
|
2012-07-16 09:22:42 -04:00
|
|
|
|
|
|
|
<TextView
|
|
|
|
android:id="@+id/actionbar_title_sub"
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_height="wrap_content"
|
2012-08-24 21:32:21 -04:00
|
|
|
android:textAppearance="?android:attr/textAppearanceSmall"
|
|
|
|
android:singleLine="true"
|
|
|
|
android:ellipsize="end" />
|
2012-07-16 09:22:42 -04:00
|
|
|
|
2012-07-16 14:52:44 -04:00
|
|
|
</LinearLayout>
|