
 Intent intent = new Intent();
  intent.setAction ("android.intent.action.VIEW");
  Uri CONTENT_URI_BROWSERS = Uri.parse ("content://com.android.htmlfileprovider/sdcard/yuncode.html");
  intent.setData (CONTENT_URI_BROWSERS);
  intent.setClassName ("com.android.browser", "com.android.browser.BrowserActivity");
  startActivity (intent);



初级程序员
by: asdfeeeea 发表于:2013-04-27 01:21:11 顶(0) | 踩(1) 回复
不错,谢谢分享
回复评论