我有这个XML:

<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout

    xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:ads="http://schemas.android.com/apk/res-auto"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:background="#000000"
    android:orientation="vertical">
      <LinearLayout
    android:layout_width="match_parent"
    android:layout_height="wrap_content"
    android:orientation="vertical">

    <com.google.android.gms.ads.AdView
              android:id="@+id/adView"
              android:layout_width="fill_parent"
              android:layout_height="wrap_content"
              android:gravity="center_vertical"
              ads:adUnitId="ca-app-pub-xxx/xxx"
              ads:adSize="SMART_BANNER"
              android:background="#E5E4E2"
    />

        <ImageView
        android:id="@+id/sphereIcon"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:orientation="vertical"
        android:layout_gravity="center_horizontal"
        android:contentDescription="@string/magicBallDescr"
        android:src="@drawable/rsz_topkniga" />

        <TextView
            android:id="@+id/txtAnswer"
            android:layout_marginTop="10dp"
            android:layout_width="match_parent"
            android:layout_height="wrap_content"
            android:textColor="#ed620b"
            android:orientation="vertical"
            android:gravity="center"
            android:typeface="sans"
            android:textSize="25sp"
        />

        <EditText
            android:id="@+id/txtQuestion"
            android:layout_marginTop="13dp"
            android:layout_width="match_parent"
            android:layout_height="wrap_content"
            android:orientation="vertical"
            android:layout_gravity="center"
            android:hint="@string/textHint"
            android:inputType="textMultiLine"
            android:lines="6"
            android:background="#ffffff"/>

</LinearLayout>
        <Button
            android:id="@+id/btnAsk"
            android:layout_marginTop="10dp"
            android:layout_width="match_parent"
            android:layout_height="wrap_content"
            android:background="#e5802d"
            android:text="@string/btnAskQ"
            android:paddingEnd="@dimen/activity_vertical_margin"
            android:layout_alignParentBottom="true"
         />
</RelativeLayout>

在纵向视图中,我的应用程序看起来很完美:
但在风景中,EditText只是消失了:
为什么会这样?我错过了什么?我知道这是个很小的部分,但我看不出来。

最佳答案

// try this way,hope this will help you...
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout
    xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:ads="http://schemas.android.com/apk/res-auto"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:background="#000000"
    android:orientation="vertical">

    <ScrollView
        android:layout_width="match_parent"
        android:layout_height="0dp"
        android:layout_weight="1">
        <LinearLayout
            android:layout_width="match_parent"
            android:layout_height="wrap_content"
            android:orientation="vertical">

            <com.google.android.gms.ads.AdView
                android:id="@+id/adView"
                android:layout_width="match_parent"
                android:layout_height="wrap_content"
                android:gravity="center_vertical"
                ads:adUnitId="ca-app-pub-xxx/xxx"
                ads:adSize="SMART_BANNER"
                android:background="#E5E4E2"/>

            <ImageView
                android:id="@+id/sphereIcon"
                android:layout_width="wrap_content"
                android:layout_height="wrap_content"
                android:orientation="vertical"
                android:layout_gravity="center_horizontal"
                android:contentDescription="@string/magicBallDescr"
                android:src="@drawable/rsz_topkniga" />

            <TextView
                android:id="@+id/txtAnswer"
                android:layout_marginTop="10dp"
                android:layout_width="match_parent"
                android:layout_height="wrap_content"
                android:textColor="#ed620b"
                android:orientation="vertical"
                android:gravity="center"
                android:typeface="sans"
                android:textSize="25sp"
                />

            <EditText
                android:id="@+id/txtQuestion"
                android:layout_marginTop="13dp"
                android:layout_width="match_parent"
                android:layout_height="wrap_content"
                android:orientation="vertical"
                android:layout_gravity="center"
                android:hint="@string/textHint"
                android:inputType="textMultiLine"
                android:lines="6"
                android:background="#ffffff"/>

        </LinearLayout>
    </ScrollView>
    <Button
        android:id="@+id/btnAsk"
        android:layout_marginTop="10dp"
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:background="#e5802d"
        android:text="@string/btnAskQ"
        android:paddingEnd="@dimen/activity_vertical_margin"
        android:layout_alignParentBottom="true"/>
</LinearLayout>

09-12 06:03