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 或 image 2 作为活动的背景。

谢谢

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并给它drawble id。

于 2012-04-30T05:06:27.853 回答