从代码更改活动背景

时间:2012-06-20 07:56:15

标签: android user-interface xamarin.android android-activity

我有一个背景活动:

<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:orientation="horizontal"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:minWidth="25px"
android:minHeight="25px"
android:background="@drawable/background_fingerboard" />

如何从代码中更改背景图片?我实际上使用单声道,但Java样本也会有所帮助。

3 个答案:

答案 0 :(得分:17)

首先在布局xml中添加LinearLayout id:

<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:orientation="horizontal"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:id="@+id/linearLayoutid" 
android:minWidth="25px"
android:minHeight="25px"
android:background="@drawable/background_fingerboard" 

并在代码部分中将背景设置为::

LinearLayout  linearLayout = (LinearLayout) findViewById(R.id.linearLayoutid);
 linearLayout.setBackgroundResource(R.drawable.background_fingerboard);

答案 1 :(得分:2)

在java中我们喜欢这个

将ID提供给LinearLayout

<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
              android:id=@+id/parentLayout  

然后在代码中

LinearLayout layout=(LinearLayout)findViewById(R.id.parentLayout);

layout.setBackgroundColor(Color.BLUE);  Or
layout.setBackgroundDrawable(d); Or
layout.setBackgroundResource(resid);

答案 2 :(得分:1)

LinearLayout  vi = (LinearLayout ) findViewById(<id>)
vi.setBackgroundResource(R.drawable.<id2>);

你需要在XML中为你的LinearLayout提供id ....