我试图将ScrollView
放在屏幕底部菜单上方的布局(<include>
只包含<LinearLayout>
。
问题:ScrollView
不起作用(它的最后一个元素无法在屏幕上显示,并显示在菜单“下方”,看起来没有{{1所有)和我无法滚动浏览它。
布局.xml文件:
ScrollView
答案 0 :(得分:0)
<?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:background="@drawable/bg" >
<ScrollView
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:fillViewport="true">
<LinearLayout
android:orientation="vertical"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:paddingLeft="10dp"
android:paddingRight="10dp" >
试试这个
答案 1 :(得分:0)
试试这个
<ScrollView
android:layout_width="fill_parent"
android:layout_height="match_parent"
android:layout_above="@+id/down"
android:fillViewport="true" >