ACTION_VIEW和getAbsolutePath

时间:2013-11-24 21:03:17

标签: java android

new AlertDialog.Builder(this)
    .setTitle("Подтверждение") //title
    .setItems(R.array.your_choice, new OnClickListener() {
        public void onClick(DialogInterface dialog, int which) {
            switch(which){
                case 0:
                    Intent i = new Intent(android.content.Intent.ACTION_VIEW, Uri.parse("file://" + directory.getAbsolutePath()));
                    startActivity(i);`

为什么我无法打开文件?我试试,但手机显示错误。另一部手机显示两个开放的程序:Acrobat和torrent,但我如何用torrent打开jpg和mp3文件?怎么了? android如何创建用于打开的程序列表?

0 个答案:

没有答案