gpt4 book ai didi

android - 无法从 gridview 中删除滚动条

转载 作者:太空狗 更新时间:2023-10-29 15:45:19 25 4
gpt4 key购买 nike

我已经阅读并尝试了所有关于从 gridview 中删除/隐藏滚动条的 stackoverflow 问题,但是,它不会消失!我正在运行 Lollipop 的三星 Galaxy S4 上进行测试。

这是我的 XML:

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:id="@+id/llChooserContainer"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:scrollbars="none"
android:layout_marginTop="?android:attr/actionBarSize"
android:orientation="vertical">

<GridView
android:id="@+id/gvGallery"
android:layout_width="match_parent"
android:layout_height="0dp"
android:layout_weight="1"
android:layout_margin="10dp"
android:columnWidth="@dimen/chooser_grid_col_width"
android:fadingEdgeLength="10dp"
android:fastScrollEnabled="true"
android:scrollbars="none"
android:gravity="center"
android:numColumns="auto_fit"
android:requiresFadingEdge="vertical"
android:scrollingCache="true"
android:stretchMode="columnWidth"/>

</LinearLayout>

这是我的onCreate

    llChooserContainer.setVerticalScrollBarEnabled(false);
llChooserContainer.setHorizontalScrollBarEnabled(false);
gvGallery.setOnItemClickListener(this);
gvGallery.setVerticalScrollBarEnabled(false);
gvGallery.setHorizontalScrollBarEnabled(false);
gvGallery.setAdapter(imagesAdapter);

还尝试设置样式,如

    gvGallery.setScrollBarStyle(View.SCROLLBARS_OUTSIDE_OVERLAY);

并将大小设置为空:

    gvGallery.setScrollBarSize(0);

拇指归零

android:scrollbarThumbHorizontal="@null"
android:scrollbarThumbVertical="@null"

XML -> styles.xml 中没有任何内容我还尝试清理项目、使缓存无效、每次都卸载应用程序。

enter image description here

最佳答案

你可以试试这个

    android:fadeScrollbars="false"

    android:scrollbarThumbVertical="@android:color/transparent"

关于android - 无法从 gridview 中删除滚动条,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/36690666/

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