我在一个应用程序上工作,我在底部有一个专用菜单,其中包含一些具有相同功能的固定按钮,并且在所有活动中表现相同。 我尝试在不同的活动中使用相同的Button(View)ID,但它不起作用。我搜索了很多没有找到任何方法 是否有任何方法可以在多个活动中共享视图或查看组?
例如,我创建此布局
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:id="@+id/parentLayout"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:orientation="vertical" >
<LinearLayout
android:id="@+id/childLayout"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:orientation="horizontal" android:layout_weight="1" >
<Button
android:id="@+id/button1"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="Button1" android:layout_weight="1"/>
<Button
android:id="@+id/button2"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="Button2" android:layout_weight="1"/>
</LinearLayout></LinearLayout>
这种布局id =“childLayout”是否可以用于布局内的任何其他活动id =“parentLayout”