1. 首页
  2. 编程语言
  3. Java
  4. android各种文件的intent

android各种文件的intent

上传者: 2019-01-08 02:43:39上传 TXT文件 5.84KB 热度 37次
//android获取一个用于打开HTML文件的intent public static Intent getHtmlFileIntent( String param ) { Uri uri = Uri.parse(param ).buildUpon().encodedAuthority("com.android.htmlfileprovider").scheme("content").encodedPath(param ).build(); Intent intent = new Intent("android.intent.action.VIEW");
用户评论