8

バックグラウンドのあるアクティビティがあります:

<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" />

コードから背景画像を変更するにはどうすればよいですか? 実際にmonoを使っていますが、Javaのサンプルも参考になります。

4

3 に答える 3

18

まず、レイアウト 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);
于 2012-06-20T08:01:33.427 に答える
3

Javaでは、このようにします

LinearLayout に id を与える

<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);
于 2012-06-20T08:00:36.567 に答える
1
LinearLayout  vi = (LinearLayout ) findViewById(<id>)
vi.setBackgroundResource(R.drawable.<id2>);

XMLでもLinearLayoutにIDを提供する必要があります....

于 2012-06-20T08:00:50.250 に答える