これが可能かどうか疑問に思っています:
レイアウト ファイルに、次のビューを含めました。
<?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内のテキストビューのテキストを設定することは可能ですか?
私の質問が明確であることを願っています。そうでない場合は、質問してください。