rate_dialog.xml 753 B

123456789101112131415161718192021222324
  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:orientation="horizontal"
  6. android:weightSum="1">
  7. <Space
  8. android:layout_width="0dp"
  9. android:layout_height="wrap_content"
  10. android:layout_weight="0.2" />
  11. <ImageView
  12. android:id="@+id/image"
  13. android:layout_width="0dp"
  14. android:layout_height="wrap_content"
  15. android:layout_gravity="center_horizontal"
  16. android:layout_weight="0.6" />
  17. <Space
  18. android:layout_width="0dp"
  19. android:layout_height="wrap_content"
  20. android:layout_weight="0.2" />
  21. </LinearLayout>