ImageButtonをアプリに追加すると、アプリがクラッシュします。 I次のコードがあります。画像ボタンがアプリをクラッシュする
<ImageButton
android:id="@+id/ib_main_home"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:src="@drawable/home"
android:background="@null"
android:scaleType="fitCenter"
/>
<ImageButton
android:id="@+id/ib_main_categories"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:src="@drawable/categories"
android:background="@null"
android:scaleType="fitCenter"
/>
<ImageButton
android:id="@+id/ib_main_actors"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:src="@drawable/actors"
android:background="@null"
android:scaleType="fitCenter"
/>
<ImageButton
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:src="@drawable/twitter"
android:background="@null"
android:scaleType="fitCenter"
/>
<ImageButton
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:src="@drawable/facebook"
android:background="@null"
android:scaleType="fitCenter"
/>
<ImageButton
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:src="@drawable/instagram"
android:background="@null"
android:scaleType="fitCenter"
/>
(全体のxmlがであるRelativeLayout)... @nullがないと、画像が画面より大きく表示されます。ボタンは画面全体を塗りつぶします。 誰でも私を助けることができますか?
'background'に' @ null'をしないでください。 'android:background =" @ android:color/transparent "' –
それもクラッシュします... –
The Logcat: java.lang.OutOfMemoryError:16777120のフリーバイトで74649612バイトの割り当てを割り当てることができませんでした。 55MBまでOOM –