好像是 setThem  设置空间主题的样子

解决方案 »

  1.   

    设置主题?、能说详细点么,在AndroidManifest.xml里面??
      

  2.   

    设置主题?、能说详细点么,在AndroidManifest.xml里面??this.setTheme()  这个  Activity  自带的  好像设置成什么dialg()  设置成 窗口模式来着   我不记得了。。  我也是初学者 。。
      

  3.   

    设置主题?、能说详细点么,在AndroidManifest.xml里面??this.setTheme()  这个  Activity  自带的  好像设置成什么dialg()  设置成 窗口模式来着   我不记得了。。  我也是初学者 。。
    刚解决了 我是这样写的,根据文件类型来选择应用Intent intent = new Intent();
    intent.addFlags(Intent.FLAG_ACTIVITY_NEW_TASK);
    intent.setAction(android.content.Intent.ACTION_VIEW); File f = new File(path);
    String type = Util.getMIMEType(f.getName());
    intent.setDataAndType(Uri.fromFile(f), type);
    startActivity(intent);