JetPack学习笔记之Navigation(三)
Navigation组件还提供了一个很实用的特性DeepLink,即深层链接。通过该特性,可以利用PendingIntent或一个真实的URL链接,直接跳转到应用程序中的某个页面(Activity或者Fragment)。
分别对应两种应用场景:
PendingIntent的方式。当应用程序接收到某个通知推送,你希望用户点击该通知后,能够直接跳转到APP内的某个页面,那么可以通过PendingIntent的方式实现。
URL的方式,当用户通过手机浏览器浏览网站上的某个页面时,可以在网上上放置一个类似于”在应用内打开“的按钮。如果用户安装了我们的APP,可以直接跳转到应用程序,如果没有安装,可以跳转到应用商店内对应的APP的下载页面,从而引导用户安装。
1、PendingIntent的方式
1.1 模拟用户收到一条推送消息
private void sendNotification(){
if(getActivity() == null){
return;
}
if(Build.VERSION.SDK_INT >= Build.VERSION_CODES.O){
int importance = NotificationManager.IMPORTANCE_DEFAULT;
NotificationChannel channel = new NotificationChannel("channel_id","channelName",importance);
channel.setDescription("description");
NotificationManager notificationManager = getActivity().getSystemService(NotificationManager.class);
notificationManager.createNotificationChannel(channel);
}
NotificationCompat.Builder builder = new NotificationCompat
.Builder(getActivity(),"channel_id")
.setSmallIcon(R.mipmap.ic_launcher)
.setContentTitle("这是通知标题")
.setContentText("这是通知内容")
.setPriority(NotificationCompat.PRIORITY_DEFAULT)
.setContentIntent(getPendingIntent())
.setAutoCancel(true);
NotificationManagerCompat notificationManagerCompat = NotificationManagerCompat.from(getActivity());
notificationManagerCompat.notify(1,builder.build());
}
1.2 构建PendingIntent对象,在其中设置当通知被点击时需要跳转到的目的地以及传递的参数。
private PendingIntent getPendingIntent(){
if(getActivity() != null){
Bundle bundle = new Bundle();
bundle.putString("params","this is the params");
return Navigation.findNavController(getActivity(),R.id.jumpBtn)
.createDeepLink()
.setGraph(R.navigation.nav_graph)
.setDestination(R.id.secondFragment)
.setArguments(bundle)
.createPendingIntent();
}
return null;
}
2、URL的方式
2.1 在导航图中为页面添加<deepLink>标签。app:uri属性中对应的是WEB页面地址,后面的参数会通过Bundle对象传递到页面中。
<fragment
android:id="@+id/secondFragment"
android:name="com.example.jetpackpro.navigation.SecondFragment"
android:label="fragment_second"
tools:layout="@layout/fragment_second" >
<deepLink app:uri="www.baidu.com/{params}"/>
</fragment>
2.2 为Activity设置<nav-graph>标签,当用户在浏览器中访问你的网址时,APP可以得到监听。
<activity android:name=".navigation.NavigationActivity">
<nav-graph android:value="@navigation/nav_graph"/>
</activity>