Android   发布时间:2022-04-28  发布网站:大佬教程  code.js-code.com
大佬教程收集整理的这篇文章主要介绍了android – 从/ drawable-hdpi而不是/ drawable作为背景加载时,不同大小的Drawable大佬教程大佬觉得挺不错的,现在分享给大家,也给大家做个参考。
我将9-patch文件从/ drawable移动到/ drawable-hdpi,因为错误日志建议使用drawable- *来提供密度优化的图像.

问题是,AppWidget现在看起来不同了.当Drawables存储在/ drawable-hdpi中时,边框更粗.

有关更多信息,请比较附加的屏幕截图.造成这种差异的原因是什么?

截图

布局

<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://scheR_97_11845@as.android.com/apk/res/android"
    android:id="@+id/widget_parent"
    android:layout_width="fill_parent"
    android:layout_height="fill_parent"
    android:BACkground="@drawable/widgeT_Bg" >

    <TextView
        android:id="@+id/textView1"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:layout_centerHorizontal="true"
        android:layout_centerVertical="true"
        android:text="@String/widget_loading"
        android:textAppearance="?android:attr/textAppearanceMedium" />

    <ProgressBar
        style="?android:attr/progressBarStylesmall"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:layout_centerVertical="true"
        android:layout_marginRight="4dp"
        android:layout_toLeftOf="@+id/textView1" />

</RelativeLayout>

Drawable @ drawable / widgeT_Bg_default

widgeT_Bg(存储在/ drawables中)

<?xml version="1.0" encoding="utf-8"?>
<SELEctor xmlns:android="http://scheR_97_11845@as.android.com/apk/res/android">

    <item android:drawable="@drawable/widgeT_Bg_default" android:state_focused="false" android:state_pressed="false" android:state_SELEcted="false"/>
    <item android:drawable="@drawable/widgeT_Bg_pressed" android:state_pressed="true"/>
    <item android:drawable="@drawable/ic_launcher" android:state_SELEcted="true"/>
    <item android:drawable="@drawable/widgeT_Bg_focused" android:state_focused="true"/>

</SELEctor>

解决方法

大佬总结

以上是大佬教程为你收集整理的android – 从/ drawable-hdpi而不是/ drawable作为背景加载时,不同大小的Drawable全部内容,希望文章能够帮你解决android – 从/ drawable-hdpi而不是/ drawable作为背景加载时,不同大小的Drawable所遇到的程序开发问题。

如果觉得大佬教程网站内容还不错,欢迎将大佬教程推荐给程序员好友。

本图文内容来源于网友网络收集整理提供,作为学习参考使用,版权属于原作者。
如您有任何意见或建议可联系处理。小编QQ:384754419,请注明来意。