2011-08-11 52 views
0

我是一個總noob,所以我可能已經得到了基本的錯誤,但這只是混淆了我。 (注意:比基尼女孩可能是NSFW--我想如果我要長時間看到這個屏幕,我可能會有一些有趣的東西; D )Android(新手)image/s佈局/縮放問題

http://imageshack.us/photo/my-images/6/finaldi.jpg/

正如你可以在不同的屏幕尺寸看背景圖像縮放很好,但在我的第一個圖像按鈕周圍有一個奇怪的邊框上,然後它只是開始萎縮。

我在36x36,48x48,72x72和96x96的由相同的圖像按鈕,並把它們放在 繪製,LDPI,繪製,MDPI,繪製,華電國際目錄沒有任何變化:(

我怎樣才能得到該按鈕是相同的所有畫面上 我在閱讀上的DIP,但我在哪裏可以宣佈

感謝

編輯,XML代碼:?!

<?xml version="1.0" encoding="utf-8"?> 
<LinearLayout 
    xmlns:android="http://schemas.android.com/apk/res/android" 
    android:orientation="vertical" 
    android:layout_width="fill_parent" 
    android:layout_height="fill_parent" android:background="@drawable/background_ass"> 
    <TableLayout android:id="@+id/tableLayout1" android:layout_height="wrap_content" android:layout_width="fill_parent"> 
     <TableRow android:id="@+id/tableRow1" android:layout_width="wrap_content" android:layout_height="wrap_content"> 
      <ImageButton android:src="@drawable/level1" 
       android:id="@+id/imageButton1" 
       android:onClick="button_clicked1" 
       android:background="#00000000" android:layout_width="48dip" android:layout_height="48dip"> 
      </ImageButton> 
     </TableRow> 
     <TableRow android:id="@+id/tableRow2" android:layout_width="wrap_content" android:layout_height="wrap_content"> 
      <TextView android:text="TextView" android:id="@+id/textView1" 
      android:layout_width="wrap_content" 
      android:layout_height="wrap_content"></TextView> 
     </TableRow> 
     <TableRow android:id="@+id/tableRow3" android:layout_width="wrap_content" android:layout_height="wrap_content"> 
     </TableRow> 
     <TableRow android:id="@+id/tableRow4" android:layout_width="wrap_content" android:layout_height="wrap_content"></TableRow> 
    </TableLayout> 

</LinearLayout> 

回答

1

Afaik ImageButton具有最小尺寸,這是可見的邊框。具有代碼後

<ImageButton ... background="#00000000" padding="0px"/> 

更新:您可以通過定義一個透明的背景和零填充擺脫它
這裏的問題是,ImageButton的寬度和高度是固定的,圖像沒有被告知進行縮放。
The SDK docs給出了一些關於處理多種屏幕尺寸/分辨率的解釋,但這不是一個微不足道的問題!
我的建議是,根據您的需要:

  • 如果相對大小(DIP)應該是在所有設備上完全一樣,添加scaleType =「fitXY」到的ImageButton
  • 的聲明
  • 如果尺寸稍有變化就可以了,請將layout_width和layout_height設置爲「wrap_content」。
+0

感謝您的提示,不知道! 但調整大小仍然在發生...... – Ryan

+0

也嘗試設置填充爲0 –

+0

好吧,填充沒有太大變化.. upvoted你的答案。我正在考慮嘗試「密度獨立像素(dip)」,但不知道在哪裏輸入值...任何想法? – Ryan