| 1234567891011121314151617181920212223242526272829303132333435363738394041 |
- <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:rightText="@string/label_check_all"
- 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" />
- <Button
- android:id="@+id/btn_backup_checked"
- android:layout_width="match_parent"
- android:layout_height="45dp"
- android:background="@drawable/selector_button_rect"
- android:text="@string/label_backup_checked"
- android:textColor="@color/white"
- android:textSize="@dimen/button_text_size" />
- </LinearLayout>
|