2012-07-26 23:21:45 +00:00
|
|
|
<?xml version="1.0" encoding="utf-8"?>
|
|
|
|
|
|
|
|
<LinearLayout
|
|
|
|
xmlns:android="http://schemas.android.com/apk/res/android"
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="match_parent"
|
|
|
|
android:orientation="horizontal">
|
|
|
|
|
|
|
|
<TextView
|
|
|
|
android:id="@+id/title"
|
2012-09-08 03:03:23 +00:00
|
|
|
android:text="@string/batch_selection_mode"
|
2012-07-26 23:21:45 +00:00
|
|
|
android:maxLines="1"
|
|
|
|
android:singleLine="true"
|
|
|
|
android:layout_gravity="center_vertical"
|
|
|
|
android:textAppearance="?android:attr/textAppearanceMediumInverse"
|
|
|
|
android:layout_weight="1"
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_height="wrap_content" />
|
|
|
|
|
|
|
|
<TextView
|
|
|
|
android:id="@+id/selected_conv_count"
|
|
|
|
android:maxLines="1"
|
|
|
|
android:singleLine="true"
|
|
|
|
android:textAppearance="?android:attr/textAppearanceLarge"
|
|
|
|
android:textColor="#ccffffff"
|
|
|
|
android:layout_gravity="center_vertical"
|
|
|
|
android:paddingRight="10dip"
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_height="wrap_content" />
|
|
|
|
|
|
|
|
</LinearLayout>
|