9patch 图像有一些问题
Having some issues with 9patch image
我正在尝试制作聊天气泡。所以我尝试制作一个 9 补丁图像,但它没有自动拉伸。
所以这是我的 9 补丁图像,
这是我的 XML 聊天气泡文件..
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:background="@drawable/bubblee"
>
<TextView
android:id="@+id/txt_msg"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:maxWidth="300dp"
android:padding="5dp"
android:textColor="#000000"
tools:text="lol" />
</RelativeLayout>
这就是当前聊天气泡的样子,
Chat bubble image
我想我以前从未制作过任何 9 补丁图像,所以问题出在 9 补丁图像上,如果我有任何错误请告诉我:(
谢谢:3
您已经为图片保留了很多宽度,因此默认情况下它会占用这么多宽度。
尝试从宽度制作小图,然后检查它是否有效
我正在尝试制作聊天气泡。所以我尝试制作一个 9 补丁图像,但它没有自动拉伸。 所以这是我的 9 补丁图像,
这是我的 XML 聊天气泡文件..
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:background="@drawable/bubblee"
>
<TextView
android:id="@+id/txt_msg"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:maxWidth="300dp"
android:padding="5dp"
android:textColor="#000000"
tools:text="lol" />
</RelativeLayout>
这就是当前聊天气泡的样子,
Chat bubble image
我想我以前从未制作过任何 9 补丁图像,所以问题出在 9 补丁图像上,如果我有任何错误请告诉我:(
谢谢:3
您已经为图片保留了很多宽度,因此默认情况下它会占用这么多宽度。
尝试从宽度制作小图,然后检查它是否有效