如何在android中为左栏菜单设置动画(缩小效果)?

发布于 2025-01-06 14:00:01 字数 482 浏览 5 评论 0原文

我有以下视图:

------------------------------------
o Menu1 |   
@ Menu2 |
# Menu3 |         CONTENT
        |
        |
------------------------------------

我想创建一个动画来缩小菜单栏以仅显示这样的图标:

------------------------------------
o |   
@ |
# |               CONTENT
  |
  |
------------------------------------

我已经通过将 Visibility.GONE 应用于文本标签并调整包含菜单的 LinearLayout 的大小来进行更改,但是我想制作“缩小”效果的动画。我尝试沿 x 应用缩放动画,但这不起作用。有人已经做过类似的事情了吗?

I have the following view:

------------------------------------
o Menu1 |   
@ Menu2 |
# Menu3 |         CONTENT
        |
        |
------------------------------------

And I want to create an animation that shrinks the menu bar to show just the icons like this:

------------------------------------
o |   
@ |
# |               CONTENT
  |
  |
------------------------------------

I already make the change work by applying Visibility.GONE to the text labels and resizing the LinearLayout that contains the menu but I want to animate that "shrinking" effect. I tried applying an scale animation along x but this doesn't work. Anybody already did something similar?

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

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

发布评论

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

评论(1

我最亲爱的 2025-01-13 14:00:01

我认为您在这里最好使用的是左侧导航栏。它允许您将操作项放在左侧。

https://developers.google.com/tv/android/docs/gtv_demo_samples#LeftNavBar

查看 Panoramio,了解如何将其集成到您的应用程序中的示例。这真的很简单。
完成后..对于动画效果使用:

bar.setDisplayOptions(LeftNavBar.DISPLAY_AUTO_EXPAND);
bar.setShowHideAnimationEnabled(true);

I think what you should ideally use here is Left Navigation Bar. It allows you to put your Action items on the left.

https://developers.google.com/tv/android/docs/gtv_demo_samples#LeftNavBar

Check out Panoramio for an example of how to integrate it in your app. Its really simple.
Once thats done..for the animation effect use:

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