| 123456789101112131415161718192021222324 |
- <?xml version="1.0" encoding="utf-8"?>
- <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
- android:layout_width="match_parent"
- android:layout_height="match_parent"
- android:orientation="horizontal"
- android:weightSum="1">
- <Space
- android:layout_width="0dp"
- android:layout_height="wrap_content"
- android:layout_weight="0.2" />
- <ImageView
- android:id="@+id/image"
- android:layout_width="0dp"
- android:layout_height="wrap_content"
- android:layout_gravity="center_horizontal"
- android:layout_weight="0.6" />
- <Space
- android:layout_width="0dp"
- android:layout_height="wrap_content"
- android:layout_weight="0.2" />
- </LinearLayout>
|