我们如何创建落在不同页面internal asset
上的通知。
代码
Intent launchActivity = new Intent(ctx, CordovaApp.class);
launchActivity.putExtra("heading",newsHeader);
launchActivity.putExtra("content",newsText);
PendingIntent pi = PendingIntent.getActivity(ctx,0, launchActivity,0);
//Create notification from the Pending Intent
默认情况下,这会在点击通知时加载file:///android_asset/www/index.html
。
但我想加载另一个HTML路径
file:///android_asset/www/templates/notification.html
我如何实现这一目标?