我正在使用Chrome自定义标签显示各种网站。我在自定义标签操作栏中添加了共享链接按钮。
builder.setActionButton(bitmap,shareLabel,createPendingShareIntent());
和我的pendingintent函数
private PendingIntent createPendingShareIntent() {
Intent actionIntent = new Intent(Intent.ACTION_SEND);
actionIntent.setType("text/plain");
actionIntent.putExtra(Intent.EXTRA_TEXT,getResources().getString(R.string.chromeextra));
return PendingIntent.getActivity(
getApplicationContext(), 0, actionIntent, 0);
}
现在我想更改Intent.EXTRA_TEXT,以便共享用户打开链接的链接。
我知道PendingIntent.FLAG_UPDATE_CURRENT,但我不知道如何在这种情况下使用。
答案 0 :(得分:0)
经过很长一段时间我找到了解决方案。 我是通过使用广播接收器完成的。
首先创建一个自定义广播侦听器类来共享链接
<强> ShareBroadcastReceiver.java 强>
public class ShareBroadcastReceiver extends BroadcastReceiver {
@Override
public void onReceive(Context context, Intent intent) {
String url = intent.getDataString();
if (url != null) {
Intent shareIntent = new Intent(Intent.ACTION_SEND);
shareIntent.setType("text/plain");
shareIntent.putExtra(Intent.EXTRA_TEXT,context.getResources().getString(R.string.chromeextra)+ url);
Intent chooserIntent = Intent.createChooser(shareIntent, "Share url");
chooserIntent.setFlags(Intent.FLAG_ACTIVITY_NEW_TASK);
context.startActivity(chooserIntent);
}
}
}
然后在自定义选项卡构建器类
中设置菜单项 String shareLabel = getString(R.string.label_action_share);
Bitmap icon = BitmapFactory.decodeResource(getResources(),
android.R.drawable.ic_menu_share);
//Create a PendingIntent to your BroadCastReceiver implementation
Intent actionIntent = new Intent(
this.getApplicationContext(), ShareBroadcastReceiver.class);
PendingIntent pendingIntent =
PendingIntent.getBroadcast(getApplicationContext(), 0, actionIntent, 0);
//Set the pendingIntent as the action to be performed when the button is clicked.
intentBuilder.setActionButton(icon, shareLabel, pendingIntent);