0

我正在尝试新的 Chrome 自定义标签,并希望添加一个自定义菜单项来为显示的页面网址添加书签。我创建了一个新的待定意图来启动书签活动,但我找不到将当前页面 url 传递给书签活动的方法。这可能吗?

这就是我创建菜单项的方式:

private void prepareMenuItems(CustomTabUiBuilder uiBuilder) {
    Intent menuIntent = new Intent();
    menuIntent.setClass(getApplicationContext(), this.getClass());
    Bundle menuBundle = ActivityOptions.makeCustomAnimation(this, android.R.anim.slide_in_left,
            android.R.anim.slide_out_right).toBundle();
    PendingIntent pi = PendingIntent.getActivity(getApplicationContext(), 0, menuIntent, 0,
            menuBundle);
    uiBuilder.addMenuItem("Bookmark page", pi);
    menuIntent.setClass(getApplicationContext(), BookmarkActivity.class);
}
4

1 回答 1

0

编辑:自发布以来已更改。现在,可以检索 URL。要处理 BroadcastReceiver 上的 URL,请执行以下操作:

@Override
public void onReceive(Context context, Intent intent) {
    String url = intent.getDataString();
    if (url != null) {
        String toastText =
                getToastText(context, intent.getIntExtra(KEY_ACTION_SOURCE, -1), url);
        Toast.makeText(context, toastText, Toast.LENGTH_SHORT).show();
    }
}
于 2015-09-08T08:22:47.340 回答