| 12345678910111213141516171819202122232425262728293031 |
- <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
- xmlns:tools="http://schemas.android.com/tools"
- android:layout_width="match_parent"
- android:layout_height="match_parent"
- android:background="@color/blue_very_light"
- android:orientation="vertical" >
- <com.onion.appsbackup.view.CustomedActionBar
- xmlns:ab="http://schemas.android.com/apk/res-auto"
- android:id="@+id/ab_backup"
- android:layout_width="match_parent"
- android:layout_height="@dimen/action_bar_height"
- ab:title="@string/label_backup_apps" />
- <View
- android:layout_width="match_parent"
- android:layout_height="0.1dp"
- android:background="@color/cute_green" />
- <ListView
- android:id="@+id/lv_app"
- android:layout_width="match_parent"
- android:layout_height="0dp"
- android:layout_weight="1" />
- <View
- android:layout_width="match_parent"
- android:layout_height="0.1dp"
- android:background="@color/blue" />
- </LinearLayout>
|