我有一个名为“Editt.xml
”的xml文件,每当我点击@+id/myEditText
名为“activty_main
”的按钮时,我想将@+id/Button01
扩展到MainActivity中/ p>
“Editt.xml”是这样的:
<LinearLayout
xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="match_parent"
>
<EditText
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:id="@+id/myEditText"
android:layout_weight="1" /> </LinearLayout>
和“activity_main”
<RelativeLayout
xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="fill_parent"
android:layout_height="fill_parent">
<Button
android:text="Button01"
android:id="@+id/Button01"
android:layout_width="wrap_content"
android:layout_height="wrap_content"></Button>
<ScrollView
android:layout_below="@id/Button01"
android:id="@+id/scrollview"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:layout_above="@+id/tableRow">
<LinearLayout
android:id="@+id/gamehistory"
android:orientation="vertical"
android:layout_width="fill_parent"
android:layout_height="wrap_content">
</LinearLayout>
</ScrollView>
答案 0 :(得分:0)
View v = getInflater().inflate(Editt.xml,null);
LinearLayout linearLayout = (LinearLayout) findViewById(R.layout.game_layout);
linearLayout.addView(v);