需要帮助, 请参阅以下屏幕(这是我的实际主屏幕)
但是,当我运行我的应用程序它看起来如下(屏幕当我运行我的应用程序
这里我需要拖动(滚动)屏幕才能看到页脚部分。我想避免这种情况,任何人都可以帮我解决这个问题。谢谢。!
答案 0 :(得分:2)
<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="vertical">
<!-- header part -->
<LinearLayout
android:id="@+id/ll_header"
android:layout_alignParentTop="true"
android:layout_height="wrap_content"
android:layout_width="match_parent">
...
</LinearLayout>
<!-- scroll view part -->
<ScrollView
android:id="@+id/sv_container"
android:layout_height="wrap_content"
android:layout_width="match_parent"
android:layout_above="@+id/ll_fooetr">
</ScrollView>
<!-- footer part -->
<LinearLayout
android:id="@+id/ll_footer"
android:layout_alignParentBottom="true"
android:layout_height="wrap_content"
android:layout_width="match_parent">
...
</LinearLayout>
</RelativeLayout>
答案 1 :(得分:0)
我的建议是对您的活动使用LinearLayout
或RelativeLayout
,并在其中使用ScrollView
作为内部部分(应滚动)。
所以,也许是这样的
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="vertical">
<ScrollView
android:layout_height="wrap_content"
android:layout_width="match_parent">
<!-- all your scrollable stuff goes here -->
</ScrollView>
<!-- here's your footer -->
<LinearLayout
android:layout_height="wrap_content"
android:layout_width="match_parent">
...
</LinearLayout>
</LinearLayout>
修改强>
我认为RelativeLayout
(作为主要布局)将为您提供最好的服务,因为它允许您将自己与父母的边缘对齐。