私のプロジェクトにはいくつかのxmlレイアウトがあります。アプリケーションがmain.xmlレイアウトを開始すると、デバイスにロードされます。 2番目のxmlレイアウトをロードすると、メインからinfrontになりますが、すべての画面をカバーしません。また、背後にmain.xmlレイアウトがあることがわかりますandroidのレイアウト
2番目のレイアウトはmatch_parentを使用しています。
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout
xmlns:android="http://schemas.android.com/apk/res/android"
android:orientation="vertical"
android:layout_width="match_parent"
android:layout_height="match_parent" android:weightSum="1">
//something
</LinearLayout>
このthamは、すべての画面を取り、背面にメインを表示することはできません第2のレイアウトです。 これは可能ですか?
EDIT
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout
xmlns:android="http://schemas.android.com/apk/res/android"
android:orientation="vertical"
android:layout_width="match_parent"
android:layout_height="match_parent">
<TableLayout android:layout_width="match_parent"
android:layout_height="match_parent" >
<TableRow >
<TextView android:text="Password Recovery" android:id="@+id/textView1" android:layout_width="wrap_content" android:layout_height="match_parent"></TextView>
</TableRow>
<TableRow >
<TextView android:text="Username: " android:id="@+id/textView1" android:layout_width="wrap_content" android:layout_height="wrap_content"></TextView>
<EditText android:text=" " android:id="@+id/UsernameRecovery" android:layout_width="100dp" android:layout_height="45dp"></EditText>
</TableRow>
<TableRow >
<Button android:text="Submit" android:id="@+id/SubmitRecoveryPass" android:layout_width="wrap_content" android:layout_height="wrap_content"></Button>
<Button android:text="Cancel" android:id="@+id/CancelRecoveryPass" android:layout_width="wrap_content" android:layout_height="wrap_content"></Button>
</TableRow>
</TableLayout>
</LinearLayout>
私は戻って
実際に切り替えを行うコードを投稿する必要があります。 – dmon
あなたは試してみました:android:layout_height = "wrap_content"? –