Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我想在 Android 活动中显示横幅。
横幅应该是:
关闭时,布局的其余部分应伸展以填充横幅占据的区域。
在 Android 中实现这一点的最佳方法是什么?
谢谢!
你可以设置一个Animation向下滑动横幅,当它离开视图时(设置一个onAnimationComplete监听器)调用它的方法:setVisibility(View.GONE)所以它不会再占用布局空间。
Animation
onAnimationComplete
setVisibility(View.GONE)