我有 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 的布局之一,我称之为 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 布局。这是为什么?是否有任何方法可以仅更改包含布局的组件而不影响父布局?