2012-03-03 22 views
4

由於錯誤日誌建議使用drawable-*來提供密度優化的圖像,所以我將/drawable的9個補丁文件移動到/drawable-hdpi當從/ drawable-hdpi而不是/ drawable加載爲背景時,Drawable的大小不同/可繪製

問題是,AppWidget現在看起來不同。當Drawables存儲在/drawable-hdpi邊框更厚。

欲瞭解更多信息,比較所附的截圖。這種差異的原因是什麼?

截圖

enter image description here

佈局

<?xml version="1.0" encoding="utf-8"?> 
<RelativeLayout xmlns:android="http://schemas.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/widget_bg_default

enter image description here

widget_bg(存儲在/drawables

<?xml version="1.0" encoding="utf-8"?> 
<selector xmlns:android="http://schemas.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> 

回答

相關問題