0

他のすべてのレイアウトに共通するビューを定義する common_views.xml があり、この common_views.xml をこれらの他のレイアウトに含めます。

common_views.xml:

<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout android:layout_width="fill_parent" android:id="@+id/water_room_common"
    android:layout_height="fill_parent" xmlns:android="http://schemas.android.com/apk/res/android">

    <ImageButton android:id="@+id/bag" android:layout_width="65dp"
        android:layout_height="65dp" android:layout_alignBottom="@+id/storage"
        android:layout_alignParentRight="true" android:layout_marginRight="10dp"
        android:adjustViewBounds="true"  />
    <RelativeLayout...> ... </RelativeLayout>
   ...
</RelativeLayout>

以下は、common_views.xml を含むレイアウトの 1 つです。これを water_room_wall1.xml と呼びます。

<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:tools="http://schemas.android.com/tools"
    android:id="@+id/wall1Layout"
    android:layout_width="fill_parent"
    android:layout_height="fill_parent"
    android:background="@drawable/wall1withkey"
    tools:context=".FireRoomActivity" >

<include layout="@layout/common_views" android:id="@+id/common_views" />

....
</RelativeLayout>

私のアクティビティでは、common_views.xml の imagebutton @id/bag の背景をプログラムで変更したいと考えています。

 public class MainActivity extends Activity {
    RelativeLayout parentLayout;
    @Override
    protected void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);
        setContentView(R.layout.water_room_wall1);
            parentLayout = (RelativeLayout)findViewById(R.id.wall1Layout);
    }

    ...
ImageButton newItem  =(ImageButton)parentLayout.findViewById(R.id.common_views).findViewById(R.id.bag);
newItem.setBackgroundResource(R.drawable.key_stored);

}

しかし、これにより、water_room_wall1.xml レイアウトの他のすべてのコンポーネント (それらは消えます) が削除され、imagebutton が変更された common_views.xml レイアウトが表示されます。何故ですか?親レイアウトに影響を与えずに、含まれるレイアウトのコンポーネントのみを変更する方法はありますか?

4

0 に答える 0