2021-07-20. android scheme 实现h5跳转到原生app


1.在想要跳转的activity下面配置下面的配置

2.测试页面之间的跳转

val action = Intent(Intent.ACTION_VIEW)

val builder = StringBuilder()

builder.append("zeekr://zeekr:8080/zeekrloginask")

action.data = Uri.parse(builder.toString())

startActivity(action)

3.网页跳转原生页面。

Insert title here 打开APP工具详情页

你可能感兴趣的:(2021-07-20. android scheme 实现h5跳转到原生app)