gpt4 book ai didi

android - 如何在 NestedScrollView 中显示滚动条

转载 作者:塔克拉玛干 更新时间:2023-11-02 19:12:28 24 4
gpt4 key购买 nike

嘿,我在 Activity 中实现了 NestedScrollView,但是我不能像在 ScrollView 中那样显示滚动条,你们可以吗?

如何展示?

<android.support.v4.widget.NestedScrollView
android:layout_width="match_parent"
android:layout_height="match_parent"
android:layout_below="@+id/appBar">

<LinearLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:clipChildren="false"
android:clipToPadding="false"
android:orientation="vertical"
android:paddingLeft="@dimen/dimen_2"
android:paddingRight="@dimen/dimen_2">
</LinearLayout>
</android.support.v4.widget.NestedScrollView>

最佳答案

使用 android:scrollbars 属性。

如:

android:scrollbars="vertical"

android:scrollbars="horizontal"

android:scrollbars="vertical|horizontal"

例如:

<android.support.v4.widget.NestedScrollView
android:id="@+id/foo"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:scrollbars="vertical">

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

文档链接:https://developer.android.com/reference/android/view/View.html#attr_android:scrollbars

关于android - 如何在 NestedScrollView 中显示滚动条,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/39687679/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com