我是一個總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>
感謝您的提示,不知道! 但調整大小仍然在發生...... – Ryan
也嘗試設置填充爲0 –
好吧,填充沒有太大變化.. upvoted你的答案。我正在考慮嘗試「密度獨立像素(dip)」,但不知道在哪裏輸入值...任何想法? – Ryan