如何降低BottomSheetDialogFragment的进入和退出动画速度?
How can I reduce the entry and exit animation speed of BottomSheetDialogFragment?
我不确定这是否可以使用 setEnterTransition() 和 setExitTransition() 方法来实现。
我想我得到了答案:
我可以用getDialog().getWindow().setWindowAnimations()
方法来实现同样的效果。
我用 StyleAnimation 解决了
@Override
public void onActivityCreated(@Nullable Bundle savedInstanceState) {
super.onActivityCreated(savedInstanceState);
if (getDialog() != null && getDialog().getWindow() != null)
getDialog().getWindow().getAttributes().windowAnimations = R.style.DialogAnimation;
}
slide_in.xml
<?xml version="1.0" encoding="utf-8"?>
<set xmlns:android="http://schemas.android.com/apk/res/android">
<translate
android:fromYDelta="100%p"
android:toYDelta="0"
android:duration="3000"/> <!--Define duration here-->
</set>
slide_out.xml
<?xml version="1.0" encoding="utf-8"?>
<set xmlns:android="http://schemas.android.com/apk/res/android">
<translate
android:fromYDelta="0"
android:toYDelta="100%p"
android:duration="5000"/> <!--Define duration here-->
</set>
我不确定这是否可以使用 setEnterTransition() 和 setExitTransition() 方法来实现。
我想我得到了答案:
我可以用getDialog().getWindow().setWindowAnimations()
方法来实现同样的效果。
我用 StyleAnimation 解决了
@Override
public void onActivityCreated(@Nullable Bundle savedInstanceState) {
super.onActivityCreated(savedInstanceState);
if (getDialog() != null && getDialog().getWindow() != null)
getDialog().getWindow().getAttributes().windowAnimations = R.style.DialogAnimation;
}
slide_in.xml
<?xml version="1.0" encoding="utf-8"?>
<set xmlns:android="http://schemas.android.com/apk/res/android">
<translate
android:fromYDelta="100%p"
android:toYDelta="0"
android:duration="3000"/> <!--Define duration here-->
</set>
slide_out.xml
<?xml version="1.0" encoding="utf-8"?>
<set xmlns:android="http://schemas.android.com/apk/res/android">
<translate
android:fromYDelta="0"
android:toYDelta="100%p"
android:duration="5000"/> <!--Define duration here-->
</set>