Android Intent 序列化反序列化

上次遇到 Intent 使用用Parcel 序列化出错(见 ),未找到出错的原因,因项目急. 找其它的解决方法:

查看Intent 的源代码, 发现类中已经实现序列化功.

序列化

intent.toURI();

反序列 化使用:

Intent.parseUri(uriString, 0);

先看序列化:

intent.toURI();

Intent intent = new Intent("cn.eben.bookshelf.VIEW");
 
      intent.addFlags(Intent.FLAG_ACTIVITY_NEW_TASK);

String intnetUri = intent.toURI();

//序列化后:

//#Intent;action=cn.eben.bookshelf.VIEW;launchFlags=0x10000000;end

反序列 化使用:

Intent.parseUri(uriString, 0);

Intent i;
      try {
            i = Intent.parseUri(uriString, 0);
            context.startActivity(i);
        } catch (URISyntaxException e) {
            // TODO Auto-generated catch block
            e.printStackTrace();
        }

简单方便.

解决上次的问题.

内容版权声明:除非注明,否则皆为本站原创文章。

转载注明出处:http://www.heiqu.com/07a74da858864042240fe316103589a5.html