垂直滚动条滚动Android时不显示

时间:2018-02-05 20:53:26

标签: android android-studio scroll scrollbar

一些新的android开发。目前,这是我的布局代码:

<FrameLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:fitsSystemWindows="true"
android:theme="@android:style/Theme.NoTitleBar"
tools:context="com.alibaba.weex.com.alibaba.app.WXPageActivity">

<FrameLayout
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    app:layout_behavior="@string/appbar_scrolling_view_behavior">

    <FrameLayout
        android:id="@+id/container"
        android:layout_width="match_parent"
        android:layout_height="match_parent"
        android:background="#ffffff"
        android:scrollIndicators="right"
        android:scrollbars="vertical">

    </FrameLayout>

    <ProgressBar
        android:id="@+id/progress"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:layout_gravity="center"
        android:visibility="gone" />

    <TextView
        android:id="@+id/index_tip"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:layout_alignWithParentIfMissing="true"
        android:layout_below="@+id/index_progressBar"
        android:layout_centerHorizontal="true"
        android:layout_margin="10dp"
        android:text="loading...."
        android:visibility="gone" />

</FrameLayout>

有人可以帮我弄清楚如何显示垂直滚动条吗?我已经尝试将所有的framelayout更改为relativelayouts,然后将第二个framelayout更改为ScrollView,但是一旦打开它,应用程序就会崩溃。

谢谢!

1 个答案:

答案 0 :(得分:0)

我认为你的布局应该是这样的。

<ScrollView
 xmlns:android="http://schemas.android.com/apk/res/android"
 android:layout_width="match_parent"
 android:layout_height="match_parent"
 android:fitsSystemWindows="true"
 android:scrollbars="vertical"
>

<FrameLayout
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    >

    <FrameLayout
        android:id="@+id/container"
        android:layout_width="match_parent"
        android:layout_height="match_parent"
        android:background="#ffffff"
        >

    </FrameLayout>

    <ProgressBar
        android:id="@+id/progress"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:layout_gravity="center"
        android:visibility="gone" />

    <TextView
        android:id="@+id/index_tip"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:layout_alignWithParentIfMissing="true"
        android:layout_below="@+id/index_progressBar"
        android:layout_centerHorizontal="true"
        android:layout_margin="10dp"
        android:text="loading...."
        android:visibility="gone" />

  </FrameLayout>

</ScrollView>

您无法在第二个framelayout中更改scollview,因为scollview只能有一个孩子。