安卓原生侧使用下面的方法打开小程序
DCUniMPSDK.getInstance().openUniMP(context, appid, splashClass, redirectPath, arguments)
小程序默认从下往上打开页面,想知道有没有方法可以自定义打开小程序的动画
w***@gmail.com
- 发布:2021-11-03 13:18
- 更新:2022-06-27 09:57
- 阅读:1250
dcloud_unimp_close_exit.xml
<?xml version="1.0" encoding="utf-8"?>
<set xmlns:android="http://schemas.android.com/apk/res/android" android:background="#00000000" android:zAdjustment="top">
<translate android:duration="360" android:fromXDelta="0%p" android:toXDelta="100%p"/>
</set>
dcloud_unimp_open_enter.xml
<?xml version="1.0" encoding="utf-8"?>
<set xmlns:android="http://schemas.android.com/apk/res/android" android:background="#00000000" android:zAdjustment="top">
<translate android:duration="360" android:fromXDelta="0%p" android:toXDelta="100%p"/>
</set>
w***@gmail.com (作者)
刚刚在群里问了下DCloud的开发者,目前暂不支持配置。。。(2021.11.04)
海绵1024
启动动画的过程中,会出现黑屏,有解决方案么
2022-11-29 14:48