0

次のようにして、アクティビティの背景を設定しました。

<LinearLayout 
xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="fill_parent" 
android:layout_height="fill_parent"
android:background="@drawable/image">

私がやっていること: 私のメイン アクティビティでは、image1 または image2 のどちらが必要かを選択し、image1 または image2 のいずれかをアクティビティの背景にします。

ありがとう

4

2 に答える 2

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を設定します

于 2012-04-30T05:09:22.417 に答える
0

LinearLayoutメソッドを使用しsetBackgroundResourceて、ドローブル ID を指定します。

于 2012-04-30T05:06:27.853 に答える