123456789101112131415161718192021222324 |
- <?xml version="1.0" encoding="utf-8"?>
- <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
- android:orientation="vertical" android:layout_width="match_parent"
- android:layout_height="match_parent">
- <LinearLayout
- android:layout_width="96dp"
- android:layout_height="96dp"
- android:gravity="center"
- android:orientation="vertical">
- <ImageView
- android:id="@+id/mine_fragment_edit_photos_img"
- android:layout_width="wrap_content"
- android:layout_height="wrap_content"
- android:src="@drawable/mine_edit_photos" />
- <TextView
- android:layout_width="wrap_content"
- android:layout_height="wrap_content"
- android:text="添加照片" />
- </LinearLayout>
- </LinearLayout>
|