缩小Android按钮的PNG图像变得模糊

时间:2012-09-18 17:13:37

标签: android scale image-quality

我正在尝试将图像从109x105缩小到48x48以制作按钮背景。我在photoshop中完成了缩放,图像是矢量。

然而,当我在手机上运行时,较小的图像模糊不清。大图像是完美的,我可以将它加载到手机上没有问题,所以质量损失。我必须提一下,图像中还有一些文字,模糊性非常明显。

我试图使用9补丁drawable,使整个图像可伸缩。我似乎无法在线找到解决这个问题的任何答案,因此任何输入都会有用。

我的问题是,如何在不降低质量的情况下缩小PNG图像?这是我在将图像复制到我的drawable文件夹之前可以做的事情,还是我可以让android自动完成的事情。

编辑:问题在代码“@ drawable / map”“@ drawable / block_small”和“@ drawable / share”

附近的3个按钮中很明显
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="match_parent"
    android:layout_height="wrap_content"
    android:background="@drawable/expandable_deal_back_white"
    android:orientation="horizontal"
    android:padding="8dp" >

    <ImageView
        android:id="@+id/imageView1"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:layout_marginTop="23dp"
        android:contentDescription="@string/logo_content_description"
        android:maxHeight="100dp"
        android:maxWidth="100dp"
        android:minHeight="100dp"
        android:minWidth="100dp"
        android:scaleType="fitXY"
        android:src="@drawable/food_selector" />

    <LinearLayout
        android:id="@+id/LinearLayout1"
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:orientation="vertical" >

        <Button
            android:id="@+id/button1"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:layout_gravity="center"
            android:layout_marginBottom="8dp"
            android:layout_marginLeft="8dp"
            android:layout_marginTop="23dp"
            android:background="@drawable/button_selector_new"
            android:padding="8dp"
            android:text="@string/tandc"
            android:textColor="@drawable/button_text_selector_new" />

        <RelativeLayout
            android:id="@+id/RelativeLayout1"
            android:layout_width="match_parent"
            android:layout_height="wrap_content"
            android:layout_marginLeft="8dp" >

            <Button
                android:id="@+id/button2"
                android:layout_width="wrap_content"
                android:layout_height="wrap_content"
                android:layout_alignParentTop="true"
                android:layout_centerHorizontal="true"
                android:layout_marginLeft="4dp"
                android:layout_marginRight="4dp"
                android:background="@drawable/map"
                android:text="@string/empty" />

            <Button
                android:id="@+id/button3"
                android:layout_width="wrap_content"
                android:layout_height="wrap_content"
                android:layout_alignParentTop="true"
                android:layout_toRightOf="@+id/button2"
                android:background="@drawable/block_small"
                android:text="@string/empty" />

            <Button
                android:id="@+id/button4"
                android:layout_width="wrap_content"
                android:layout_height="wrap_content"
                android:layout_alignParentTop="true"
                android:layout_toLeftOf="@+id/button2"
                android:background="@drawable/share"
                android:text="@string/empty" />

        </RelativeLayout>

    </LinearLayout>

</LinearLayout>

1 个答案:

答案 0 :(得分:0)

  

如何缩小PNG图像而不会降低质量?

你没有。根据定义,较小(按像素计数)的图像具有较少的数据。

也就是说,您需要检查一些事项,以确保模糊是由于图像质量下降而不是其他因素造成的。计算机上的小图片看起来不错吗?你有made sure you are putting the images in the correct drawable folders吗?