如何使textview背景像instagram直接消息

时间:2018-03-15 08:02:22

标签: java android android-layout

我想让我的文字视图就像这样

Instagram Direct Message

我想拍摄背景(仅限于边缘)

1 个答案:

答案 0 :(得分:2)

试试这个

<LinearLayout
    android:layout_width="match_parent"
    android:layout_height="wrap_content"
    android:gravity="center"
    android:padding="5dp"
    android:orientation="horizontal">

    <ImageView
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:src="@drawable/ic_delete" />

    <LinearLayout
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:background="@drawable/button_background"
        android:orientation="horizontal"
        android:padding="5dp">


        <EditText
            android:id="@+id/myEDT"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:layout_weight="1"
            android:layout_margin="2dp"
            android:background="@null"
            android:hint="Enter Text" />

        <ImageView
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:src="@drawable/ic_delete" />

        <ImageView
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:src="@drawable/ic_delete" />


    </LinearLayout>
</LinearLayout>

<强> button_background

<?xml version="1.0" encoding="utf-8"?>
<shape xmlns:android="http://schemas.android.com/apk/res/android"
    android:shape="rectangle">
    <corners android:radius="50dp" />
    <stroke android:width="2dp" android:color="@color/colorPrimary" />
    <solid android:color="#ffffff" />
</shape>

<强>输出

enter image description here