我不能在全屏幕上填写我的相对布局。当另一个布局例如在底部时,他将出现在最后一个布局之后。 这是我的代码
<ScrollView
xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
tools:context=".android_app_activity.EspacePersonnelActivity"
android:layout_width="fill_parent"
android:background="@drawable/ep_background"
android:id="@+id/espacePersonnelLayout"
android:layout_height="fill_parent">
<RelativeLayout
android:layout_width="match_parent"
android:layout_height="match_parent"
>...
答案 0 :(得分:1)
这是正常的,滚动视图 - 只能有一个孩子 - 占用所有的屏幕空间,所以你要添加的所有东西都会显示在最后。
答案 1 :(得分:1)
始终保持scrollview子项的高度必须为wrap_content。要填充整个屏幕,您可以使用滚动视图的fillViewport属性。以下是一个工作示例 -
<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"
tools:context="com.example.jeshtamsru.tntrains.DashboarsActivity">
<ScrollView
android:layout_width="match_parent"
android:fillViewport="true"
android:layout_height="wrap_content">
<LinearLayout android:layout_width="match_parent"
android:layout_height="wrap_content"
android:orientation="vertical">
<RelativeLayout
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:orientation="horizontal"
android:layout_gravity="center_horizontal">
<Button
android:layout_width="wrap_content"
android:width="300dp"
android:gravity="center"
android:layout_height="wrap_content"
android:text="chennai to coimbatore"/>
</RelativeLayout>
<RelativeLayout
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:orientation="horizontal"
android:layout_gravity="center_horizontal">
<Button
android:layout_width="wrap_content"
android:width="300sp"
android:gravity="center"
android:layout_height="wrap_content"
android:text="chennai to coimbatore"/>
</RelativeLayout>
</LinearLayout>
</ScrollView>
</LinearLayout>
希望它会对你有所帮助:)。