我想知道如果這是可能的設置文本:安卓:包括視圖
在佈局文件,我已經包括了一個觀點:
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout
xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="vertical" >
<include
layout="@layout/includedView" />
</LinearLayout>
這includedView包含此:
<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout
xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="fill_parent"
android:layout_height="48dip" >
<ImageView
...
/>
<TextView
....
/>
</RelativeLayout>
我的問題是:是否有可能從包含視圖的佈局(因此來自佈局1)爲includedView內的textview設置文本?
希望我的問題很清楚,如果不是,請問。
在此先感謝!
是的,有可能,您可以參考該視圖作爲整體包括佈局被複制到主佈局文件。 – Analizer
是的,正如Analizer所說,這是可能的..... –
但包含的佈局不是一個textview,包含的佈局包含一個textview。這很重要嗎? – Xander