将图像放入xhdpi但看起来很模糊

时间:2013-03-29 09:15:19

标签: android drawable hdpi

我制作矩形可绘制并放入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,我把它放在drawable-xhdpi文件夹中。

1 个答案:

答案 0 :(得分: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

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