123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177 |
- <?xml version="1.0" encoding="utf-8"?>
- <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
- xmlns:app="http://schemas.android.com/apk/res-auto"
- xmlns:tools="http://schemas.android.com/tools"
- android:layout_width="match_parent"
- android:layout_height="wrap_content"
- android:orientation="vertical">
- <LinearLayout
- android:layout_width="match_parent"
- android:layout_height="wrap_content"
- android:orientation="vertical"
- android:gravity="center_horizontal"
- android:padding="@dimen/dp_10">
- <com.qmuiteam.qmui.widget.roundwidget.QMUIRoundLinearLayout
- android:layout_width="wrap_content"
- app:qmui_radius="@dimen/dp_16"
- app:qmui_backgroundColor="@color/white"
- app:qmui_borderColor="@color/translucent"
- android:gravity="center"
- android:layout_height="wrap_content">
- <androidx.appcompat.widget.AppCompatImageView
- android:id="@+id/img"
- android:layout_width="123dp"
- android:layout_height="123dp"
- android:layout_gravity="center_horizontal"
- android:scaleType="fitXY"
- tools:src="@drawable/bg_need_error" />
- </com.qmuiteam.qmui.widget.roundwidget.QMUIRoundLinearLayout>
- <LinearLayout
- android:layout_width="match_parent"
- android:layout_height="wrap_content"
- android:layout_marginLeft="50dp"
- android:layout_marginTop="44dp"
- android:layout_marginRight="50dp"
- android:orientation="horizontal">
- <LinearLayout
- android:id="@+id/ll_wx"
- android:layout_width="0dp"
- android:layout_height="wrap_content"
- android:layout_weight="1"
- android:orientation="vertical"
- android:gravity="center">
- <ImageView
- android:layout_width="41dp"
- android:layout_height="41dp"
- android:src="@drawable/share_wx"/>
- <TextView
- android:textColor="@color/text_title"
- android:textSize="10sp"
- android:text="微信"
- android:layout_marginTop="4dp"
- android:layout_width="wrap_content"
- android:layout_height="wrap_content"/>
- </LinearLayout>
- <LinearLayout
- android:id="@+id/ll_share_one"
- android:layout_width="0dp"
- android:layout_height="wrap_content"
- android:layout_weight="1"
- android:orientation="vertical"
- android:gravity="center">
- <ImageView
- android:layout_width="41dp"
- android:layout_height="41dp"
- android:src="@drawable/share_friends"/>
- <TextView
- android:textColor="@color/text_title"
- android:textSize="10sp"
- android:text="微信好友"
- android:layout_marginTop="4dp"
- android:layout_width="wrap_content"
- android:layout_height="wrap_content"/>
- </LinearLayout>
- <LinearLayout
- android:id="@+id/ll_link"
- android:layout_width="0dp"
- android:layout_height="wrap_content"
- android:layout_weight="1"
- android:orientation="vertical"
- android:gravity="center">
- <ImageView
- android:layout_width="41dp"
- android:layout_height="41dp"
- android:src="@drawable/share_link"/>
- <TextView
- android:textColor="@color/text_title"
- android:textSize="10sp"
- android:text="复制链接"
- android:layout_marginTop="4dp"
- android:layout_width="wrap_content"
- android:layout_height="wrap_content"/>
- </LinearLayout>
- <LinearLayout
- android:layout_width="0dp"
- android:layout_height="wrap_content"
- android:layout_weight="1"
- android:visibility="gone"
- android:gravity="center">
- <ImageView
- android:id="@+id/iv_share_three"
- android:layout_width="41dp"
- android:layout_height="41dp"
- android:src="@drawable/share_qq"></ImageView>
- </LinearLayout>
- <LinearLayout
- android:id="@+id/ll_save"
- android:layout_width="0dp"
- android:layout_height="wrap_content"
- android:layout_weight="1"
- android:orientation="vertical"
- android:gravity="center">
- <ImageView
- android:layout_width="41dp"
- android:layout_height="41dp"
- android:src="@drawable/share_save"/>
- <TextView
- android:textColor="@color/text_title"
- android:textSize="10sp"
- android:text="下载图片"
- android:layout_marginTop="4dp"
- android:layout_width="wrap_content"
- android:layout_height="wrap_content"/>
- </LinearLayout>
- </LinearLayout>
- <TextView
- android:id="@+id/tv_close"
- android:layout_width="match_parent"
- android:layout_height="46dp"
- android:layout_marginStart="30dp"
- android:layout_marginTop="22dp"
- android:layout_marginEnd="30dp"
- android:layout_marginBottom="40dp"
- android:background="@drawable/bg_logo_but"
- android:gravity="center"
- android:text="取消"
- android:textColor="@color/white"
- android:textSize="20sp" />
- </LinearLayout>
- </LinearLayout>
|