pandorapan/live/src/main/res/layout/view_voice_dialog.xml

59 lines
2.0 KiB
XML
Raw Normal View History

2022-10-24 18:18:39 +08:00
<?xml version="1.0" encoding="utf-8"?>
2022-10-25 14:05:33 +08:00
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:background="@drawable/bg_voice_chat"
android:gravity="center_horizontal"
android:orientation="vertical">
2022-10-24 18:18:39 +08:00
<ImageView
android:id="@+id/icon_withdraw"
android:layout_width="38dp"
android:layout_height="31dp"
2022-10-25 14:05:33 +08:00
android:layout_marginTop="23dp"
android:layout_marginStart="20dp"
android:layout_marginEnd="20dp"
2022-10-24 18:18:39 +08:00
android:src="@mipmap/icon_withdraw" />
<ImageView
android:id="@+id/voice_fluctuations"
2022-10-25 17:10:20 +08:00
android:layout_width="154dp"
2022-10-24 18:18:39 +08:00
android:layout_height="wrap_content"
2022-10-25 14:05:33 +08:00
android:layout_marginTop="23dp"
android:layout_marginStart="20dp"
android:layout_marginEnd="20dp"
2022-10-24 18:18:39 +08:00
android:scaleType="fitCenter"
android:src="@mipmap/img_p" />
<pl.droidsonroids.gif.GifImageView
android:id="@+id/gif_view"
2022-10-25 17:10:20 +08:00
android:layout_width="154dp"
2022-10-24 18:18:39 +08:00
android:layout_height="wrap_content"
2022-10-25 14:05:33 +08:00
android:layout_marginTop="23dp"
android:layout_marginStart="20dp"
android:layout_marginEnd="20dp"
2022-10-24 18:18:39 +08:00
android:background="@mipmap/voice_fluctuations"
android:visibility="gone" />
2022-10-25 14:05:33 +08:00
<TextView
android:id="@+id/voice_chat"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_marginStart="5dp"
android:layout_marginTop="8dp"
android:layout_marginBottom="10dp"
android:layout_marginEnd="5dp"
android:maxLines="5"
android:textColor="#FFFFFF"
android:textSize="14sp" />
2022-10-24 18:18:39 +08:00
<TextView
android:id="@+id/fingers_slide"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_marginBottom="16dp"
android:text="@string/fingers_slide"
android:textColor="#9A9A9A" />
2022-10-25 14:05:33 +08:00
</LinearLayout>