摘要: intent-filter主要通过三种(action category data)来过滤intent1、action一个intent 只包含一个action (可以没有),但是 一个filter可以有多个action(必须有一个,否则阻塞所有intent)并且只需要有一个action与intent中的action匹配就可以通过2、category一个intent 可以包含多个category(可以没有),一个filter也可以包含多个category,但是intent中的category必须是filter中的category的子集才可以通过。3、data(scheme path(pathPre 阅读全文
posted @ 2013-05-02 19:47 lipeil 阅读(335) 评论(0) 推荐(0) 编辑
摘要: 1、使用Integer中的方法System.out.println(Integer.toHexString(~mode));// ~表示取反System.out.println(Integer.toHexString(mode));// 阅读全文
posted @ 2013-05-02 16:40 lipeil 阅读(265) 评论(0) 推荐(0) 编辑
摘要: 1、WebViewClient就是帮助WebView处理各种通知、请求事件的,具体来说包括:onLoadResource 、onPageStart 、onPageFinish 、 onReceiveError 、onReceivedHttpAuthRequest2、WebChromeClient是辅助WebView处理Javascript的对话框,网站图标,网站title,加载进度等 onCloseWindow(关闭WebView) 、onCreateWindow() 、onJsAlert (WebView上alert是弹不出来东西的,需要定制你的WebChromeClient处理弹出) .. 阅读全文
posted @ 2013-05-02 15:30 lipeil 阅读(428) 评论(0) 推荐(0) 编辑