<include layout=""/>
タグを使用して別のレイアウトにレイアウトを含める方法のように、レイアウトに設定を含めることはできますか?
私のレイアウトコードは次のようになります
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="vertical">
<TextView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:padding="@dimen/padding_medium"
android:text="@string/hello_world"
tools:context=".MainActivity" />
<include layout="@layout/settings"/>
<!-- <include layout="@xml/set_variables"/> -->
</LinearLayout>
上記のレイアウトでは、設定を含めようとして@xml/set_variables
いますが、コメントを外すとアプリケーションがクラッシュし<include layout="@xml/set_variables"/>
ます。レイアウトに好みを含める方法があるかどうかを誰かが提案できますか、それとも私はこれを忘れるべきです。