activity_receive.xml 1.0 KB

12345678910111213141516171819202122232425262728293031
  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:title="@string/label_backup_apps" />
  13. <View
  14. android:layout_width="match_parent"
  15. android:layout_height="0.1dp"
  16. android:background="@color/cute_green" />
  17. <ListView
  18. android:id="@+id/lv_app"
  19. android:layout_width="match_parent"
  20. android:layout_height="0dp"
  21. android:layout_weight="1" />
  22. <View
  23. android:layout_width="match_parent"
  24. android:layout_height="0.1dp"
  25. android:background="@color/blue" />
  26. </LinearLayout>