我在special_button.xml
中有一個按鈕,A
,我可以在所有活動中重複使用該按鈕。每個活動都有一個根RelativeLayout
。在xml中的「包含」佈局中引用視圖的ID
問題:我的一項活動有一個按鈕,B
,位置與A
相同。我決定只將B
移到A
以上,但我不能從活動的xml中引用A
。
這裏有個XML
special_button.xml
<?xml version="1.0" encoding="utf-8"?>
<merge xmlns:android="http://schemas.android.com/apk/res/android" >
<Button
android:id="@+id/A"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_alignParentBottom="true"
android:layout_alignParentRight="true"
android:layout_marginBottom="15dp"
android:layout_marginRight="20dp"/>
</merge>
layout_main.xml
<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="match_parent" >
<include layout="@layout/special_button" />
<Button
android:id="@+id/B"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_alignParentRight="true"
android:layout_above="<id to reference button A>"
android:layout_marginBottom="15dp"
android:layout_marginRight="20dp" />
</RelativeLayout>
我試過這個。這種方法的問題是,id被賦予了包含的佈局的根。就我而言,它是'merge'標籤,它實際上是活動的'RelativeLayout'。我仍然無法使用A按鈕。 – aysonje
如果您爲「RelativeLayout」的id不同的''給出了一個id,那麼您的陳述是不正確的。請檢查我的編輯,看看是否有幫助。 –
anddev84
哇。謝謝!我不知道你可以直接引用'A'。只是爲了讓你知道,我沒有添加任何數據到''標籤,簡單地說:' '並且它工作。 –
aysonje