????????两个APP之间跳转同样使用Intent进行跳转,将需要跳转的APP都下载到手机中,通过主APP调用需要跳转的APP包名进行跳转。
????????最好在其中加上try-catch语句,当需要跳转的APP不存在时进行错误抓取。
代码如下:
Intent mIntent = getPackageManager().getLaunchIntentForPackage("com.example.design");
startActivity(mIntent);
? ? ? ? 将app下载至手机中后,想要用自定义图标更换自带图标。
? ? ? ? 可以使用阿里icon选择png格式图标下载,保存至drawable或mipmap中。在AndroidManifest中修改以下两行代码:
android:icon="@drawable或mipmap+你的图片名"
android:roundIcon="@drawable或mipmap+你的图片名"