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如何创建用于打开的程序列表?