跳转到应用本身的详情页,清除本应用缓存

来源:互联网 发布:手机usb共享网络打不开 编辑:程序博客网 时间:2024/05/21 19:36
  1. Intent intent = new Intent();  
  2. intent.setAction(Settings.ACTION_APPLICATION_DETAILS_SETTINGS);  
  3. intent.setData(Uri.fromParts("package", getPackageName(), null));   
  4. startActivity(intent); 

0 0