gpt4 book ai didi

java - 安卓上滑窗口

转载 作者:行者123 更新时间:2023-11-30 03:00:03 24 4
gpt4 key购买 nike

任何人都可以给我一个例子,或者一个用于向上滑动窗口的库。我有一个应用程序和一个 Action ,我想从屏幕底部向上滑动一个窗口,向用户显示信息。

我希望窗口只向上滑动一点点以显示信息。有点像对用户的提示,可能在屏幕上方的 1/4 处。

此窗口可以手动关闭或定时关闭。我希望使用 xamarin 来执行此操作,但 java 示例也会有所帮助。

最佳答案

您可能必须更改此方法中的某些变量。我在我的一个应用程序中使用了这个。从下到上动画 relativeLayout

 private void animate(){
RelativeLayout rl = (RelativeLayout)findViewById(R.id.yourLayout);
AnimationSet set = new AnimationSet(true);

Animation animation = new TranslateAnimation(
Animation.RELATIVE_TO_SELF, 0.0f, Animation.RELATIVE_TO_SELF, 0.0f,
Animation.RELATIVE_TO_SELF, 0.85f, Animation.RELATIVE_TO_SELF, 0.0f
);
animation.setDuration(250);
set.addAnimation(animation);

LayoutAnimationController controller = new LayoutAnimationController(set, 0.25f);
rl.setLayoutAnimation(controller);
}

关于java - 安卓上滑窗口,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/22662342/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com