我有这个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
刚刚消失:
为什么会这样?我在这里错过了什么?我知道这是一个非常小的部分,但我无法发现它。
答案 0 :(得分:1)
// 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>
答案 1 :(得分:1)
您可以在scollview
之外使用LinearLayout
。这将允许LinearLayout
内的内容可滚动,因此可以查看。
<?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">
<ScrollView>
<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>
</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"
/>
</RelativeLayout>
答案 2 :(得分:1)
您只需将整个布局放在scrollview下即可。 编辑-
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">
<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"/>
机器人:paddingEnd = “@扪/ activity_vertical_margin”
机器人:layout_alignParentBottom = “真”
/&GT;
答案 3 :(得分:0)
如果您想避开滚动视图,可能只是尝试将视图保持在按钮上方:
<LinearLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_above="@+id/btnAsk"
android:orientation="vertical">