0

我正在开发一个将图像保存到目录然后允许您查看这些图像的应用程序。目前我能够保存图像,然后查看该目录中的图像列表。我希望能够在imageview用户从列表中选择图像文件时打开图像。这是我目前拥有的列表代码:

public class Test extends ListActivity {

    private List<String> fileList = new ArrayList<String>();

    protected void onCreate(Bundle savedInstanceState) {
        // TODO Auto-generated method stub
        super.onCreate(savedInstanceState);


        String root = Environment.getExternalStorageDirectory().toString();
        File mapfiles= new File(root + "/Maps"); 
        ListDir(mapfiles);

    }

    void ListDir(File f) {

        File[] files = f.listFiles();
        fileList.clear();

        for (File file : files) { 
            //fileList.add(file.getPath());  
            fileList.add(file.getName());
        }

        ArrayAdapter<String> directoryList = new ArrayAdapter<String>(this, android.R.layout.simple_list_item_1, fileList);
        setListAdapter(directoryList); 

    }

    protected void onListItemClick(ListView l, View v, int position, long id) {
        String item=fileList.get(position).toString();
        Toast.makeText(Test.this, "You clicked on: "+item, Toast.LENGTH_SHORT).show();

    }

}

我使用 toast 只是为了验证单击列表中的某个项目时是否可以发生某些事情,这是有效的。我尝试在其中使用的代码onItemListClick是:

File selected = new File(fileList.get(position));

if(selected.isDirectory()){
    ListDir(selected);
} else {
    Uri selectedUri = Uri.fromFile(selected);
    Intent notificationIntent = new Intent(Intent.ACTION_VIEW, selectedUri);                        
    startActivity(notificationIntent);
}

这会导致应用程序崩溃,我不知道为什么。我的问题是上面的代码有什么不正确的?或者只是如何通过从列表中选择图像来查看图像?

谢谢。

4

0 回答 0