47 lines
1.8 KiB
XML
47 lines
1.8 KiB
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
|
xmlns:tools="http://schemas.android.com/tools"
|
|
xmlns:app="http://schemas.android.com/apk/res-auto"
|
|
android:orientation="vertical"
|
|
android:paddingLeft="16dp"
|
|
android:paddingRight="16dp"
|
|
android:layout_width="match_parent"
|
|
tools:viewBindingIgnore="true"
|
|
android:layout_height="wrap_content">
|
|
|
|
<com.flyco.roundview.RoundRelativeLayout
|
|
android:layout_width="match_parent"
|
|
app:rv_backgroundColor="#F6F6F6"
|
|
app:rv_cornerRadius="4dp"
|
|
android:layout_marginTop="12dp"
|
|
android:layout_height="68dp">
|
|
<ImageView
|
|
android:layout_marginRight="12dp"
|
|
android:id="@+id/delBtn"
|
|
android:layout_alignParentRight="true"
|
|
android:layout_centerVertical="true"
|
|
android:src="@drawable/ic_sign_input1"
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"/>
|
|
<ImageView
|
|
android:layout_marginLeft="12dp"
|
|
android:layout_centerVertical="true"
|
|
android:src="@mipmap/greeting_voice_play"
|
|
android:id="@+id/playBtn"
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"/>
|
|
<TextView
|
|
android:id="@+id/durationLabel"
|
|
android:layout_marginLeft="8dp"
|
|
android:layout_toRightOf="@id/playBtn"
|
|
android:layout_centerVertical="true"
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:text="语音招呼正在审核中"
|
|
android:textColor="#ff333333"
|
|
android:textSize="14sp"
|
|
/>
|
|
</com.flyco.roundview.RoundRelativeLayout>
|
|
|
|
|
|
</RelativeLayout> |