/**     * Returns the value associated with the given key, or null if     * no mapping of the desired type exists for the given key or a null     * value is explicitly associated with the key.     *     * @param key a String, or null     * @return a Parcelable value, or null     */    public <T extends Parcelable> T getParcelable(String key) {        unparcel();        Object o = mMap.get(key);        if (o == null) {            return null;        }        try {            return (T) o;        } catch (ClassCastException e) {            typeWarning(key, o, "Parcelable", e);            return null;        }    }

更多相关文章

  1. 代码中设置drawableleft
  2. android 3.0 隐藏 系统标题栏
  3. Android开发中activity切换动画的实现
  4. Android(安卓)学习 笔记_05. 文件下载
  5. Android中直播视频技术探究之—摄像头Camera视频源数据采集解析
  6. 技术博客汇总
  7. android 2.3 wifi (一)
  8. AndRoid Notification的清空和修改
  9. Android中的Chronometer

随机推荐

  1. html5结合flash实现视频文件在所有主流浏
  2. DOM笔记(三):Element接口和HTMLElement接口
  3. [原创]基于html5新标签canvas写的一个小
  4. 大熊君学习html5系列之
  5. web前端2016-3-5
  6. iis aspx常见错误 HTTP 错误 404 - 文件
  7. JSP页面图片路径为中文时乱码解决办法
  8. 重温html5的新增的标签和废除的标签
  9. 禁用div中的所有表单元素
  10. CSS不适用于嵌套的子div