亚洲乱码中文字幕综合,中国熟女仑乱hd,亚洲精品乱拍国产一区二区三区,一本大道卡一卡二卡三乱码全集资源,又粗又黄又硬又爽的免费视频

android打開(kāi)rar壓縮文件

 更新時(shí)間:2014年03月07日 09:22:47   投稿:zxhpj  
這篇文章主要介紹了android打開(kāi)rar壓縮文件示例,調(diào)用RAR for android 打開(kāi)壓縮文件,需要的朋友可以參考下

復(fù)制代碼 代碼如下:

private void open(String fileString) {
 Intent intent = new Intent();
 intent.setClassName("com.rarlab.rar", "com.rarlab.rar.MainActivity");
 File file = new File(fileString);
 Uri data = Uri.fromFile(file);
 intent.setData(data);
 try {
  startActivity(intent);
 } catch (ActivityNotFoundException e) {
  try {
   Uri uri = Uri.parse("market://search?q=" + "rar");
   Intent it = new Intent(Intent.ACTION_VIEW, uri);
   startActivity(it);
  } catch (ActivityNotFoundException e2) {
   Log.i(TAG, "market no found");
  }
 }
}

相關(guān)文章

最新評(píng)論