我寫了一個程序來測試MediaPlayer類,它有三個ImageButtons - 「播放」,「暫停」和「停止」。在開始時,我使用了三種不同尺寸的.png圖片作爲三個ImageButton,並且該程序無法在我的AVD上運行,然後我將它們更改爲三個具有相同大小的.png picutres,然後這次它正確運行。LinearLayout中的圖像是否必須具有相同的大小?
在LinearLayout中使用的圖像必須是相同的大小?
這裏是latyout文件:
<?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"
>
<TextView
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:text="@string/hello"
/>
<LinearLayout
android:orientation="horizontal"
android:layout_width="fill_parent"
android:layout_height="fill_parent">
<ImageButton
android:id="@+id/play"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:src="@drawable/play">
</ImageButton>
<ImageButton
android:id="@+id/pause"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:src="@drawable/pause">
</ImageButton>
<ImageButton
android:id="@+id/stop"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:src="@drawable/stop">
</ImageButton>
</LinearLayout>
</LinearLayout>
是否有一個原因,你爲什麼使用android:src而不是android:background? – josephus
但它不是屬性的問題 – zenis