我需要将对话框从当前位置翻译为顶部作为退出动画。在有键盘的情况下,它将在顶部可用,并且应该平移并从该位置退出,如果键盘不可见,它将位于中心,并应从那里退出。
尝试以下代码段:
<set xmlns:android="http://schemas.android.com/apk/res/android"
android:fillBefore="true"
android:fillEnabled="true">
<translate
android:duration="400"
android:toYDelta="-100%p"
/>
</set>
在这种情况下,当对话框不在中心时(当键盘可见时),它会下降一次(到其中心位置),然后向上平移。这会导致闪烁。我究竟做错了什么?如何顺利翻译
答案 0 :(得分:0)
您可以使用以下代码向上和向下显示自定义对话框。
<?xml version="1.0" encoding="utf-8"?>
<set xmlns:android="http://schemas.android.com/apk/res/android" >
<translate
android:duration="@android:integer/config_longAnimTime"
android:fromYDelta="0%p"
android:toYDelta="100%p" />
</set>
<?xml version="1.0" encoding="utf-8"?>
<set xmlns:android="http://schemas.android.com/apk/res/android" >
<translate
android:duration="@android:integer/config_longAnimTime"
android:fromYDelta="50%p"
android:toYDelta="0%p" />
</set>
答案 1 :(得分:0)
slideup.xml:
<?xml version="1.0" encoding="utf-8"?>
<set xmlns:android="http://schemas.android.com/apk/res/android">
<alpha
android:fromAlpha="1"
android:toAlpha="0"
android:duration="500"/>
<translate android:fromYDelta="0%" android:toYDelta="-100%" android:duration="500"/>
</set>
style.xml:
<style name="DialogTheme" parent="Theme.AppCompat.Light.Dialog">
<item name="android:windowAnimationStyle">@style/MyAnimation.Window</item>
</style>
<style name="MyAnimation.Window" parent="@android:style/Animation.Activity">
<item name="android:windowExitAnimation">@anim/slide_up</item>
</style>
代码
public void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setStyle(STYLE_NORMAL, R.style.DialogTheme);
}