Android中如何滚动固定大小的滚动条?

发布于 2024-11-25 12:21:52 字数 67 浏览 1 评论 0原文

如何在 Android 应用程序中滚动 listView 中固定大小(如 40px)的滚动条?

How can I scroll the scrollbar in my listView of a fixed size like 40px in my Android application?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

木森分化 2024-12-02 12:21:52

尝试提供这样的 listView 属性,

<ListView android:id="@+id/list"
android:layout_width="fillparent"
android:layout_height="40dip"/>

这将使您的 listview 仅占据 height 属性中指定的高度,这样您就可以单独获得 40px 的滚动。

Try provding the listView attributes like this,

<ListView android:id="@+id/list"
android:layout_width="fillparent"
android:layout_height="40dip"/>

This will make your listview to occupy only the height specified in the height attribute and as of which you can get your scroll for 40px alone.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文