我打算开始这样的快捷方式活动:
startActivity((Intent) shortcut_intent.getExtras().get(Intent.EXTRA_SHORTCUT_INTENT));
我需要将shortcut_intent转换为字符串以将其保存在sqlite db中。我这么久都试了很久没有成功。目前我站在这里:
将意图转换为字符串:
String uri_string = mIntent_shortcut_intent.toUri(0);
创建新意图:
Intent intent = new Intent();
并解析来自uri的额外内容:
intent.putExtra("android.intent.extra.shortcut.INTENT", Uri.parse(uri_string));
没有工作/ app悲伤地崩溃;(
有人可以帮我吗?或者告诉我一个在sqlite db中保存持久性的替代方法吗?
事先提前更新
正如pskink建议包裹,解除附加组件,反之亦然,我做了以下事情:
Bundle bundle=shortcutIntent.getExtras();
Parcel parcel=Parcel.obtain();
bundle.writeToParcel(parcel, 0);
byte[] byt=parcel.marshall();
Bundle newBundle=new Bundle();
Parcel newParcel=Parcel.obtain();
newParcel.unmarshall(byt, 0, byt.length);
bundle.readFromParcel(newParcel);
Intent intent=new Intent();
intent.putExtras(newBundle);
startActivity((Intent) intent.getExtras().get(Intent.EXTRA_SHORTCUT_INTENT));
newBundle看起来与原始捆绑包完全不同,但仍然崩溃。所以有些事情仍然是错误的.....
答案 0 :(得分:3)
只是为了完成这个帖子/帮助别人........
pskink帮助我找到了以下解决方案:
Bundle bundle = shortcutIntent.getExtras();
Parcel parcel = Parcel.obtain();
bundle.writeToParcel(parcel, 0);
byte[] byt = parcel.marshall();
String s = Base64.encodeToString(byt, 0, byt.length, 0); //store this string to sqlite
byte[] newByt = Base64.decode(s, 0);
Bundle newBundle = new Bundle();
Parcel newParcel = Parcel.obtain();
newParcel.unmarshall(newByt, 0, newByt.length);
newParcel.setDataPosition(0);
newBundle.readFromParcel(newParcel);
Intent intent = new Intent();
intent.putExtras(newBundle);
MainActivity.getContext().startActivity((Intent)intent.getExtras().get(Intent.EXTRA_SHORTCUT_INTENT));
再次感谢你pskink!
答案 1 :(得分:-2)
你有没有尝试过做
String sIntent = intent.toString();
将意图转换为字符串?