4

我想在我的 WebView 中获取用户用户所在的任何页面,并允许他们与 FaceBook/etc 共享 URL 作为 ACTION_SEND 意图。

我试过了,但显然 onCreateOptionsMenu 中不存在 URL。如何将其移至 onOptionsItemsSelected?

private ShareActionProvider mShareActionProvider;
@Override
public boolean onOptionsItemSelected(MenuItem item) {
    // TODO Auto-generated method stub


    return super.onOptionsItemSelected(item);
}
   @Override
public boolean onCreateOptionsMenu(Menu menu) {
     getMenuInflater().inflate(R.menu.activity_main, menu);
     MenuItem item = menu.findItem(R.id.menu_item_share);
     mShareActionProvider = (ShareActionProvider)item.getActionProvider();
     mShareActionProvider.setShareHistoryFileName(
       ShareActionProvider.DEFAULT_SHARE_HISTORY_FILE_NAME);
     mShareActionProvider.setShareIntent(createShareIntent());
     return true;   
}
 private Intent createShareIntent() {
      Intent shareIntent = new Intent(Intent.ACTION_SEND);
            shareIntent.setType("text/plain");
            shareIntent.putExtra(Intent.EXTRA_TEXT, 
          web.getUrl());
            return shareIntent;
        }
4

1 回答 1

7

您上面的代码不起作用,因为onCreateOptionsMenu仅在第一次显示选项菜单时调用了一次。

解决这个问题很容易。onOptionsItemSelected当被调用时,我们正在构建我们的 Intent 。这是选择膨胀菜单的任何资源的时候。如果所选项目是共享资源,shareURL则执行现在构建并启动 Intent。

@Override
public boolean onCreateOptionsMenu(Menu menu) {
    getMenuInflater().inflate(R.menu.activity_main, menu);
    return true;
}

@Override
public final boolean onOptionsItemSelected(MenuItem item) {
    switch (item.getItemId()) {
        case R.id.menu_item_share:
            shareURL();
    }
    return super.onOptionsItemSelected(item);
}

private void shareURL() {
    Intent shareIntent = new Intent(Intent.ACTION_SEND);
    shareIntent.setType("text/plain");
    shareIntent.putExtra(Intent.EXTRA_TEXT, web.getUrl());
    startActivity(Intent.createChooser(shareIntent, "Share This!"));
}

我没有测试上面的代码示例。既不是在实际设备上,也不是在 Java 编译器上。尽管如此,它应该可以帮助您解决问题。

于 2013-02-02T22:33:31.427 回答