2012-04-30 86 views
0

我已經做設定我的活動背景2活動的背景。設定背景圖片

感謝

+1

你的問題是什麼? – Rajesh

+0

你試過了什麼?你會從哪裏選擇圖片?在下一個活動中顯示該圖像? –

回答

3

試試這個

LinearLayout linearLayout = (LinearLayout)findViewById(R.id.linear); 
if(condition1) 
linearLayout.setBackgroundResource(R.drawable.image1); 
else 
linearLayout.setBackgroundResource(R.drawable.image2); 

在XML中,

<LinearLayout 
xmlns:android="http://schemas.android.com/apk/res/android" 
android:id = "@+id/linear" 
android:layout_width="fill_parent" 
android:layout_height="fill_parent" 
/> 

這將工作。根據條件,它會設置image1或image2

+0

不錯的答案....... :) –

+1

:) user1330394:將它標記爲正確答案 – nithinreddy

0

使用LinearLayout方法setBackgroundResource,並給它drawble ID。