2010-11-03 68 views
0

我有一個標籤佈局,可繪製資源作爲標籤圖像。 在橫向模式下一切都很好。但在縱向模式下,圖像沒有一些標籤頁邊距。我如何改變圖像比例或如何設置一些邊緣圖像?我不想使用固定大小,不要認爲這是正確的方式。如何更改標籤圖像比例尺

這裏是我的佈局

<TabWidget 
       android:id="@android:id/tabs" 
       android:layout_width="fill_parent" 
       android:layout_height="wrap_content" 
       /> 
     <FrameLayout 
       android:id="@android:id/tabcontent" 
       android:layout_width="fill_parent" 
       android:layout_height="fill_parent" 
       android:padding="5dp" 
       > 
      <ListView 
        android:id="@+id/list" 
        android:layout_width="fill_parent" 
        android:layout_height="fill_parent" 
        /> 
     </FrameLayout> 


<?xml version="1.0" encoding="utf-8"?> 
<selector xmlns:android="http://schemas.android.com/apk/res/android"> 
    <item android:drawable="@drawable/logo" android:state_selected="true" /> 
    <item android:drawable="@drawable/logo_disabled" /> 
</selector> 

這裏是標籤創建

Drawable d = res.getDrawable(R.drawable.logos); 
    spec = tabHost.newTabSpec(1).setIndicator("", res.getDrawable(R.drawable.logos)).setContent(intent); 
    tabHost.addTab(spec); 

回答

3

解決我的問題我自己

//set icons padding 
    for (int i = 0; i < tabHost.getTabWidget().getChildCount(); i++){ 
     tabHost.getTabWidget().getChildAt(i).setPadding(10,10,10,10); 
    }