如何让android缩放控件像内置缩放控件一样自动消失

发布于 2024-11-18 07:26:51 字数 143 浏览 1 评论 0原文

我必须改变缩放控件的位置。为此,我使用了 android 缩放控件并在其侦听器中实现了放大和缩小功能。然而,现在我认为它们的行为方式与内置缩放控件相同,即它们自动消失。如何做到这一点,因为我不希望 Android 缩放控件永远保留在屏幕上。

谢谢 阿斯塔

I had to change the position of the zoomcontrols. For this purpose, I used android zoom controls and implemented zoom in and zoom out functions in its listener. However, now i was thinking them to behave in the same manner the built in zoom controls do i.e. they auto disappear. How to do it as i don't want the android zoom control to stay forever on the screen.

Thanks
Astha

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

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

发布评论

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

评论(1

夏花。依旧 2024-11-25 07:26:51

AlphaAnimation 应用于小部件,从 1.0(不透明)到 0.0(透明)。每当您希望动画淡出时就启动它。在 AlphaAnimation 上设置一个 AnimationListener,以便在动画结束时在小部件上调用 setVisibility(View.GONE)。当您希望小部件重新显示时,请调用 setVisibility(View.VISIBLE)

Apply an AlphaAnimation to the widget, going from an alpha of 1.0 (opaque) to 0.0 (transparent). Start the animation whenever you want it to fade out. Set up an AnimationListener on the AlphaAnimation to call setVisibility(View.GONE) on the widget when the animation ends. When you want the widget to re-appear, call setVisibility(View.VISIBLE).

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