app直接跳轉(zhuǎn)支付寶轉(zhuǎn)賬:
1.首先把自己支付寶的轉(zhuǎn)賬二維碼保存下來搪哪,然后把二維碼解析成網(wǎng)址,然后就會得到codeId,就是我下方的urlcode
2.然后把代碼添加到Android代碼中
String urlCode="FKX02222T3KPE5VMUSBCE0";
Intent intent=Intent.parseUri("intent://platformapi/startapp?saId=10000007&clientVersion=3.7.0.0718&qrcode=https%3A%2F%2Fqr.alipay.com%2F{urlCode}%3F_s%3Dweb-other&_t=1472443966571#Intent;scheme=alipayqr;package=com.eg.android.AlipayGphone;end".replace("{urlCode}", urlCode),1);
startActivity(intent);