Android图标在三星设备上延伸

时间:2014-06-03 14:20:39

标签: android xml android-layout icons android-drawable

我使用自定义图像使用android图标集开发了几个Action栏和标签图标,并将它们用作按钮背景。它们在手机上看起来很好但是当我在三星Galaxy tab 7"上测试时,它们会感到拉伸和模糊。

我尝试过制作文件夹layout-sw600dp和layout-large但没有区别。

其中一个图标:

 <ImageButton
        android:id="@+id/button_settings"
        android:layout_width="64dp" 
        android:layout_height="64dp"
        android:background="@drawable/settings_custom"
        android:focusable="true"
        android:contentDescription="@string/settings"/>

settings_custom.xml:

<?xml version="1.0" encoding="utf-8"?>
<selector xmlns:android="http://schemas.android.com/apk/res/android">

    <item android:drawable="@drawable/ic_action_app_sett" android:state_pressed="true"/>
    <item android:drawable="@drawable/ic_action_app_sett"/>

</selector>

任何人都可以帮我解决我错在哪里吗?谢谢!

1 个答案:

答案 0 :(得分:2)

尝试设置android:src =&#34; @ drawable / settings_custom&#34; ,对于7英寸标签,您需要在drawable-large-mdpi文件夹下放置该分辨率的图像,请通过以下链接查看更多关于Android屏幕的支持, http://developer.android.com/guide/practices/screens_support.html