将ScrollView和底部菜单放在同一视图上

时间:2013-12-04 09:37:06

标签: android xml android-layout scrollview

我试图将ScrollView放在屏幕底部菜单上方的布局(<include>只包含<LinearLayout>

问题:ScrollView不起作用(它的最后一个元素无法在屏幕上显示,并显示在菜单“下方”,看起来没有{{1所有)和我无法滚动浏览它。

布局.xml文件:

ScrollView

2 个答案:

答案 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" >