ScrollView在布局中不起作用

时间:2018-03-16 07:58:54

标签: android xml

<?xml version="1.0" encoding="utf-8"?>
<ScrollView
xmlns:android="http://schemas.android.com/apk/res/android"
android:id="@+id/ScrollView01"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:fillViewport="true"
android:scrollbars="vertical" >

<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="match_parent"
xmlns:app="http://schemas.android.com/apk/res-auto">
<android.support.v4.widget.SwipeRefreshLayout
    android:id="@+id/sw_ManualRefresh"
    android:layout_width="wrap_content"
    android:layout_height="wrap_content">
    <RelativeLayout
        android:layout_width="wrap_content"
        android:layout_height="wrap_content">
        <TextView
            android:id="@+id/textView5"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:text="Today"
            android:textAllCaps="true"
            android:layout_marginTop="20dp"
            android:layout_marginLeft="@dimen/activity_horizontal_margin"
            android:textColor="@color/primary_dark"
            android:textSize="20sp"
            android:layout_alignLeft="@+id/view"
            android:layout_alignStart="@+id/view" />
        <View
            android:id="@+id/view"
            android:layout_width="match_parent"
            android:layout_height="1.7dp"
            android:background="@color/accent"
            android:layout_marginLeft="8dp"
            android:layout_marginStart="8dp"
            android:layout_marginEnd="8dp"
            android:layout_marginTop="0dp"
            android:layout_marginRight="8dp"
            android:layout_below="@id/textView5"
            />
        <ListView
            android:id="@+id/list_Today_plan"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:layout_marginTop="12dp"
            android:layout_below="@+id/view"
            android:layout_marginLeft="15dp"
            android:layout_alignRight="@+id/list_Upcoming_plans"
            android:layout_alignEnd="@+id/list_Upcoming_plans" />
        <TextView
            android:id="@+id/textView6"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:text="Upcoming"
            android:textAllCaps="true"
            android:textColor="@color/primary_dark"
            android:textSize="20sp"
            android:layout_below="@id/list_Today_plan"
            android:layout_alignLeft="@+id/view2"
            android:layout_alignStart="@+id/view2" />

        <View
            android:id="@+id/view2"
            android:layout_width="match_parent"
            android:layout_height="1.7dp"
            android:layout_marginEnd="8dp"
            android:layout_marginLeft="8dp"
            android:layout_marginRight="13dp"
            android:layout_marginStart="8dp"
            android:background="@color/accent"
            android:layout_below="@id/textView6"
            />
        <ListView
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:layout_marginTop="8dp"
            android:layout_marginLeft="8dp"
            android:layout_marginRight="8dp"
            android:id="@+id/list_Upcoming_plans"
            android:layout_below="@id/view2"/>

</RelativeLayout>
</android.support.v4.widget.SwipeRefreshLayout>
</RelativeLayout>
</ScrollView>

This is my screen

屏幕不滚动。该屏幕还包含刷卡刷新。 我尝试了不同的解决方案并添加了这一行

  

android:fillViewport="true"   并删除了相对布局的方向。

为什么滚动视图在这里不起作用?

但屏幕不滚动。我是android的新手。

请帮帮我。任何帮助将不胜感激。

谢谢。

2 个答案:

答案 0 :(得分:0)

尝试使用 NestedScrollView RecyclerView 代替 ScrollView { {1}}

LIstView

<强>输出

enter image description here

<强> here is link for migrate from ListView to RecyclerView

答案 1 :(得分:0)

您应该将ScrollView置于widget.SwipeRefreshLayout

之内
<android.support.v4.widget.SwipeRefreshLayout
 xmlns:android="http://schemas.android.com/apk/res/android"
 android:id="@+id/swipe_container"
 android:layout_width="match_parent"
 android:layout_height="match_parent">

<ScrollView xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:id="@+id/garae_scroll"
android:layout_width="match_parent"
android:layout_height="wrap_content" >

//Your Scrollview content and other layouts here


</ScrollView>

</android.support.v4.widget.SwipeRefreshLayout>