activity_about.xml 1.5 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344
  1. <?xml version="1.0" encoding="utf-8"?>
  2. <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
  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_about"
  10. android:layout_width="match_parent"
  11. android:layout_height="@dimen/action_bar_height"
  12. ab:title="@string/label_about"
  13. android:layout_marginBottom="10dp" />
  14. <LinearLayout
  15. android:layout_width="match_parent"
  16. android:layout_height="wrap_content"
  17. android:gravity="center_horizontal"
  18. android:orientation="vertical" >
  19. <ImageView
  20. android:layout_width="100dp"
  21. android:layout_height="100dp"
  22. android:scaleType="fitXY"
  23. android:src="@drawable/logo" />
  24. <TextView
  25. android:layout_width="wrap_content"
  26. android:layout_height="wrap_content"
  27. android:text="@string/label_version"
  28. android:textSize="14sp"
  29. android:textColor="@color/black"/>
  30. </LinearLayout>
  31. <TextView
  32. android:padding="10dp"
  33. android:layout_width="match_parent"
  34. android:layout_height="wrap_content"
  35. android:text="@string/label_about_details"
  36. android:textColor="@color/grey_text"
  37. android:textSize="12sp" />
  38. </LinearLayout>