我使用eclipse來編寫我的android應用程序,我想知道如何在單擊按鈕時更改MainActivity的背景圖像。我有img1.png和img2.png。背景是當前設置與以下XML代碼img1.png:按鈕點擊更改背景圖片
<RelativeLayout 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/img1"
tools:context=".MainActivity" >
<Button
android:id="@+id/btn1"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_alignParentLeft="true"
android:layout_alignParentTop="true"
android:layout_marginLeft="46dp"
android:layout_marginTop="55dp"
android:background="@android:color/transparent"
android:text="" />
</RelativeLayout>
我只是不確定我會用什麼Java代碼來改變BTN1點擊背景圖像。
使用可繪製的狀態 – Jimmy