item_add_photos_layout.xml 818 B

123456789101112131415161718192021222324
  1. <?xml version="1.0" encoding="utf-8"?>
  2. <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
  3. android:orientation="vertical" android:layout_width="match_parent"
  4. android:layout_height="match_parent">
  5. <LinearLayout
  6. android:layout_width="96dp"
  7. android:layout_height="96dp"
  8. android:gravity="center"
  9. android:orientation="vertical">
  10. <ImageView
  11. android:id="@+id/mine_fragment_edit_photos_img"
  12. android:layout_width="wrap_content"
  13. android:layout_height="wrap_content"
  14. android:src="@drawable/mine_edit_photos" />
  15. <TextView
  16. android:layout_width="wrap_content"
  17. android:layout_height="wrap_content"
  18. android:text="添加照片" />
  19. </LinearLayout>
  20. </LinearLayout>