有没有办法在android中强制过度滚动发光效果?

发布于 2024-12-11 11:24:39 字数 176 浏览 0 评论 0原文


我正在开发一个应用程序,其中有滚动视图。
在模拟器中,显示了过度滚动效果,在 HTC Legend 中显示了它,但在我的三星 Galaxy S2 中却没有......(我有姜饼,启用了过度滚动发光)。 我喜欢这个效果,我想将它应用到我的应用程序中(当然,如果用户有 2.3+)。 有什么办法可以做到这一点吗? 谢谢你!

I am developing an application, in which there are scrollviews.

In the emulator, the overscroll effect is shown, in an HTC Legend it is shown, but in my Samsung Galaxy S2 its not... (I DO have gingebread, with overscroll glow enabled).
I like this effect and I would like to apply it to my application (if the user have 2.3+ of course).
Is there any way to do this?
Thank you!

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

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

发布评论

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

评论(1

情绪操控生活 2024-12-18 11:24:39

也许在布局中使用属性 android:overScrollMode 。你在用它吗?

例子:

<ScrollView
    android:layout_width="fill_parent"
    android:layout_height="fill_parent"
    android:overScrollMode="always">

Maybe use attribute android:overScrollMode in your layouts. Are you using it?

Example:

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