2012-04-30 20 views
0

は私が行うことで、私の活動の背景を設定しています2活動の背景。、設定された背景画像

おかげ

+1

あなたの質問はありますか? – Rajesh

+0

何を試しましたか?あなたはどこから画像を選ぶでしょうか?その画像を次のアクティビティで表示しますか? –

答えて

3

は、これは動作します

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

、XMLではこの

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

を試してみてください。条件に基づいて、image1またはimage2を設定します

+0

ニースの答え....... :) –

+1

:) user1330394:それが正しいと答える – nithinreddy

0

LinearLayoutメソッドsetBackgroundResourceを使用し、それをdrawble IDを与えます。

関連する問題