0

我制作了矩形可绘制并放入 drawable-xhdpi 文件夹。但在我的设备中,它看起来很模糊。我的设备屏幕尺寸为 1280x720,密度为 344 dpi。我将该 xml 文件放在所有文件夹中,但看起来仍然模糊。请帮我。

<item>
    <shape android:shape="rectangle" >
        <solid android:color="#00000000" />

        <stroke
            android:width="0.5dip"
            android:color="#ADADAD" />
    </shape>
</item>

这是我放在drawable-xhdpi文件夹中的drawable。

4

1 回答 1

0

您必须以rectangleimage.xml这种方式创建和使用。

<shape xmlns:android="http://schemas.android.com/apk/res/android" 
   android:shape="rectangle">
 <corners
    android:bottomLeftRadius="15dp"
    android:bottomRightRadius="15dp"
    android:topLeftRadius="15dp"
    android:topRightRadius="15dp" />
  <solid android:color="@color/blue"/>

</shape>

你必须把它xml放到res/drawable

如果您发现任何问题,请告诉我。

于 2013-03-29T09:33:19.603 回答