1

我有一个 9 补丁图像,这里是 9 补丁图像

现在,我将它用作这样的相对布局的背景图像

<RelativeLayout
    android:layout_width="match_parent"
    android:layout_height="wrap_content"
    android:background="@drawable/ae_bubble">

    <TextView
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:padding="8dp"
        android:text="How satisfied are you in terms of Aeroman performance regarding: TAT, quality of the work performed and aircraft appearance?"/>

</RelativeLayout>

这给了我使用nexus 5预览在android studio预览中的下一个结果,在中心完美

安卓工作室预览

但是当我在nexus 5模拟器中运行它时,箭头的尖端没有居中,对于真正的nexus 5设备也是如此

在此处输入图像描述

我已经在另一个设备上尝试过这个,比如 moto g 模拟器和真正的 moto g 设备,并且尖端在中心是完美的,在只影响 nexus 5 的图像气泡上可能有什么问题?,nexus 5 也很奇怪android studio上的预览居中,我该怎么办?,感谢您的帮助

FIX 这是最终的工作图像

在此处输入图像描述

4

1 回答 1

1

刚刚检查了您的图像,您应该更改两个点的位置。现在它们与底线的最后一个像素处于同一位置。尝试将它们每边移动一个像素。

于 2015-04-29T01:31:00.077 回答