我想在我的程序頂部有兩個按鈕,讓用戶可以進行不同的活動。我在格式化方面遇到了很多麻煩。Android ImageButton解決問題
我怎樣才能讓它按照屏幕大小按比例拉伸?現在,他們會看起來像一個屏幕大小,然後我會切換到一個不同的,它會出現所有的衝動或拉伸。我已經嘗試了所有不同的ScaleTypes,而且沒有任何區別。我也去了,並使用Shubhayu's answer按比例將所有圖像保存到正確的尺寸關注xhdpi,hdpi等。
這裏是我到目前爲止的代碼:
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:background="@drawable/brushed_metal_background_dark"
tools:context=".HomeActivity" >
<ImageButton
android:id="@+id/incidentsSelect"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_weight="1"
android:background="@drawable/incident_bar2"
android:contentDescription="Incidents"
android:onClick="chooseIncident"
android:scaleType="center" />
<ImageButton
android:id="@+id/operationalPeriodsSelect"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_weight="1"
android:background="@drawable/operationalperiod_bar2"
android:contentDescription="Operational Periods"
android:onClick="chooseOperationalPeriod"
android:scaleType="fitCenter" />
謝謝!我也不得不使用android:background =「@ null」來擺脫惡意背景邊界的事情。 –