1

我想使用 xml 资源创建聊天气泡,但我无法在矩形外用右边缘制作三角形我也尝试了 9 个补丁图像,但是当用户输入 1 个字符时,它的宽度仍然不是包装内容。请帮帮我我也把创建的xml资源代码。

<item>
    <shape android:shape="rectangle">
        <solid android:color="#5EB888"/>
        <corners android:radius="30dp"/>
    </shape>
</item>


<item
    android:bottom="-1000dp"
    android:right="200dp"
    android:gravity="right"
    android:top="190dp">

    <rotate
        android:fromDegrees="-45">
        <shape android:shape="rectangle">
            <solid android:color="#000000"/>
        </shape>
    </rotate>
</item>

在此处输入图像描述

4

2 回答 2

1

查看这些库

它可以帮助你(Y)

泡沫 1

泡泡 2

泡泡 3

于 2017-06-01T12:45:50.797 回答
0

这是工作的可绘制对象custom_shape_chat_box.xml

<?xml version="1.0" encoding="utf-8"?>
<layer-list xmlns:android="http://schemas.android.com/apk/res/android">

    <!-- Transparent Rectangle -->
    <item>
        <shape android:shape="rectangle">
            <size
                android:width="300dp"
                android:height="60dp" />
            <solid android:color="@android:color/transparent" />
        </shape>
    </item>

    <!-- Colored Rectangle -->
    <item
        android:right="20dp">
        <shape android:shape="rectangle">
            <size
                android:width="300dp"
                android:height="60dp" />
            <solid android:color="#5EB888" />
        </shape>
    </item>

    <!-- Bottom-Right Triangle -->
    <item
        android:left="20dp"
        android:right="0dp"
        android:top="-10dp"
        android:bottom="20dp">
        <rotate android:fromDegrees="26">
            <shape android:shape="rectangle">
                <solid android:color="#5EB888" />
            </shape>
        </rotate>
    </item>

</layer-list>

利用:

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:orientation="vertical" android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:padding="24dp">

    <LinearLayout
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:background="@drawable/custom_shape_chat_box">
    </LinearLayout>
</LinearLayout>

输出:

在此处输入图像描述

希望这会有所帮助~

于 2017-06-01T21:19:14.510 回答