別のxmlファイルから特定のビューを膨らませる方法。出来ますか?このビューのIDを設定しようとすると、ResourceNotFoundExceptionが発生します。どういうわけかファイル名を設定する必要がありますか?
LayoutInflater inflater = LayoutInflater.from(this);
FrameLayout ingredients_frame = (FrameLayout)inflater.inflate(R.id.ingredients_frame, null);
R.id.ingredients_frameは別のxmlファイルにあります。
例外:
android.content.res.Resources$NotFoundException: Resource ID #0x7f060032 type #0x12 is not valid
成分_フレーム_レイアウト.xml:
<FrameLayout
xmlns:android="http://schemas.android.com/apk/res/android"
android:id="@+id/ingredients_frame"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:background="@drawable/expandable_second_layer_selector" >
<TextView
android:id="@+id/text"
android:layout_width="fill_parent"
android:layout_height="match_parent"
android:layout_gravity="center"
android:background="@android:color/white"
android:singleLine="true"
android:text="......................................................................................................................................................................"
android:textColor="@color/dark_orange"
android:textSize="18dip"/>
<TextView
android:id="@+id/ingredient_name"
android:layout_width="wrap_content"
android:layout_height="match_parent"
android:layout_gravity="left"
android:background="@android:color/white"
android:textStyle="bold"
android:text="@string/friends_total"
android:textColor="@color/dark_orange"
android:textSize="18dip" />
<TextView
android:id="@+id/ingredient_data"
android:layout_width="wrap_content"
android:layout_height="match_parent"
android:layout_gravity="right"
android:background="@android:color/white"
android:textStyle="bold"
android:textColor="@color/dark_orange"
android:textSize="18dip" />
</FrameLayout>