在WhatsApp中,当您回复邮件时,它会显示如下:
我尝试过多次,但我无法像WhatsApp使用的那样设计布局。
答案 0 :(得分:0)
您只需要在 EditText 视图上方夸大您要回复的文字。我的xml代码如下所示
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:orientation="vertical"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:id="@+id/rl_resend_root_img"
android:visibility="visible"
android:padding="5dp"
android:background="@drawable/background">
<TextView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="Name"
android:id="@+id/tv_resend_name"
android:textStyle="bold"/>
<TextView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_below="@+id/tv_resend_name"
android:text=" Photo"
android:visibility="visible"
android:id="@+id/resend_no_cmnt"
android:gravity="center"
android:drawableLeft="@drawable/camera"
android:layout_marginTop="5dp" />
<TextView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_below="@+id/tv_resend_name"
android:text="what a pic brooo.."
android:maxLines="1"
android:textSize="14sp"
android:visibility="gone"
android:id="@+id/resend_cmnt_data"
android:gravity="center"
android:layout_marginTop="5dp" />
<FrameLayout
android:layout_width="36dp"
android:layout_height="36dp"
android:layout_alignParentEnd="true">
<ImageView
android:layout_width="match_parent"
android:layout_height="match_parent"
android:id="@+id/resend_image"
android:src="@drawable/henna"/>
<ImageView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_gravity="top|end"
android:background="@drawable/background"
android:id="@+id/resend_clear_img"
android:src="@drawable/clear"/>
</FrameLayout>
</RelativeLayout>
快乐编码