activity_backup.xml 1.4 KB

1234567891011121314151617181920212223242526272829303132333435363738394041
  1. <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
  2. xmlns:tools="http://schemas.android.com/tools"
  3. android:layout_width="match_parent"
  4. android:layout_height="match_parent"
  5. android:background="@color/blue_very_light"
  6. android:orientation="vertical" >
  7. <com.onion.appsbackup.view.CustomedActionBar
  8. xmlns:ab="http://schemas.android.com/apk/res-auto"
  9. android:id="@+id/ab_backup"
  10. android:layout_width="match_parent"
  11. android:layout_height="@dimen/action_bar_height"
  12. ab:rightText="@string/label_check_all"
  13. ab:title="@string/label_backup_apps" />
  14. <View
  15. android:layout_width="match_parent"
  16. android:layout_height="0.1dp"
  17. android:background="@color/cute_green" />
  18. <ListView
  19. android:id="@+id/lv_app"
  20. android:layout_width="match_parent"
  21. android:layout_height="0dp"
  22. android:layout_weight="1" />
  23. <View
  24. android:layout_width="match_parent"
  25. android:layout_height="0.1dp"
  26. android:background="@color/blue" />
  27. <Button
  28. android:id="@+id/btn_backup_checked"
  29. android:layout_width="match_parent"
  30. android:layout_height="45dp"
  31. android:background="@drawable/selector_button_rect"
  32. android:text="@string/label_backup_checked"
  33. android:textColor="@color/white"
  34. android:textSize="@dimen/button_text_size" />
  35. </LinearLayout>