列出Android设备上的所有图像

时间:2013-11-14 02:31:22

标签: android image

我试图用自己的路径列出Android设备中的所有图片,直到14个小时,但我无法...它一直给我“java.lang.RuntimeException:无法启动活动ComponentInfo”错误。< / p>

我不明白为什么......

任何帮助?

package com.example.allpicsexample;

import android.app.Activity; 
import android.content.Context; 
import android.content.Intent;
import android.database.Cursor;
import android.net.Uri;
import android.os.Bundle; 
import android.provider.MediaStore;
import android.view.Menu; 
import android.view.MenuInflater;
import android.view.MenuItem;
import android.view.View; 
import android.view.ViewGroup; 
import android.widget.AdapterView;
import android.widget.BaseAdapter;
import android.widget.GridView;
import android.widget.ImageView; 
import android.widget.AdapterView.OnItemClickListener;

/** * Displays images from an SD card. */ public class MainActivity extends Activity {

/**
 * Cursor used to access the results from querying for images on the SD card.
 */
private Cursor cursor;
/*
 * Column index for the Thumbnails Image IDs.
 */
private int columnIndex;

@Override
public void onCreate(Bundle savedInstanceState) {
    super.onCreate(savedInstanceState);
    setContentView(R.layout.activity_main);

    String filePath = cursor.getString(cursor.getColumnIndexOrThrow(MediaStore.MediaColumns.DATA));
    System.out.println("the path is : "+filePath);

}
}

这是LogCat信息:

  

11-14 08:29:01.739:D / AndroidRuntime(16788):关闭VM 11-14   08:29:01.739:W / dalvikvm(16788):threadid = 1:线程退出   未捕获的异常(组= 0x40018578)11-14 08:29:01.749:   E / AndroidRuntime(16788):致命异议:主11-14 08:29:01.749:   E / AndroidRuntime(16788):java.lang.RuntimeException:无法启动   活动   ComponentInfo {com.example.allpicsexample / com.example.allpicsexample.MainActivity}:   java.lang.NullPointerException 11-14 08:29:01.749:   E / AndroidRuntime(16788):at   android.app.ActivityThread.performLaunchActivity(ActivityThread.java:1651)   11-14 08:29:01.749:E / AndroidRuntime(16788):at   android.app.ActivityThread.handleLaunchActivity(ActivityThread.java:1667)   11-14 08:29:01.749:E / AndroidRuntime(16788):at   android.app.ActivityThread.access $ 1500(ActivityThread.java:117)11-14   08:29:01.749:E / AndroidRuntime(16788):at   android.app.ActivityThread $ H.handleMessage(ActivityThread.java:935)   11-14 08:29:01.749:E / AndroidRuntime(16788):at   android.os.Handler.dispatchMessage(Handler.java:99)11-14   08:29:01.749:E / AndroidRuntime(16788):at   android.os.Looper.loop(Looper.java:130)11-14 08:29:01.749:   E / AndroidRuntime(16788):at   android.app.ActivityThread.main(ActivityThread.java:3687)11-14   08:29:01.749:E / AndroidRuntime(16788):at   java.lang.reflect.Method.invokeNative(Native Method)11-14   08:29:01.749:E / AndroidRuntime(16788):at   java.lang.reflect.Method.invoke(Method.java:507)11-14 08:29:01.749:   E / AndroidRuntime(16788):at   com.android.internal.os.ZygoteInit $ MethodAndArgsCaller.run(ZygoteInit.java:867)   11-14 08:29:01.749:E / AndroidRuntime(16788):at   com.android.internal.os.ZygoteInit.main(ZygoteInit.java:625)11-14   08:29:01.749:E / AndroidRuntime(16788):at   dalvik.system.NativeStart.main(Native Method)11-14 08:29:01.749:   E / AndroidRuntime(16788):引起:java.lang.NullPointerException   11-14 08:29:01.749:E / AndroidRuntime(16788):at   com.example.allpicsexample.MainActivity.onCreate(MainActivity.java:37)   11-14 08:29:01.749:E / AndroidRuntime(16788):at   android.app.Instrumentation.callActivityOnCreate(Instrumentation.java:1047)   11-14 08:29:01.749:E / AndroidRuntime(16788):at   android.app.ActivityThread.performLaunchActivity(ActivityThread.java:1615)   11-14 08:29:01.749:E / AndroidRuntime(16788):... 11更多

这是执行Abhishek代码后的第二个崩溃日志

  

11-14 10:00:20.159:D / AndroidRuntime(19266):关闭VM 11-14   10:00:20.159:W / dalvikvm(19266):threadid = 1:线程退出   未捕获的异常(组= 0x40018578)11-14 10:00:20.189:   E / AndroidRuntime(19266):致命例外:主11-14 10:00:20.189:   E / AndroidRuntime(19266):android.app.SuperNotCalledException:Activity   {com.example.allpicsexample / com.example.allpicsexample.MainActivity}   没有打电话给super.onCreate()11-14 10:00:20.189:   E / AndroidRuntime(19266):at   android.app.ActivityThread.performLaunchActivity(ActivityThread.java:1617)   11-14 10:00:20.189:E / AndroidRuntime(19266):at   android.app.ActivityThread.handleLaunchActivity(ActivityThread.java:1667)   11-14 10:00:20.189:E / AndroidRuntime(19266):at   android.app.ActivityThread.access $ 1500(ActivityThread.java:117)11-14   10:00:20.189:E / AndroidRuntime(19266):at   android.app.ActivityThread $ H.handleMessage(ActivityThread.java:935)   11-14 10:00:20.189:E / AndroidRuntime(19266):at   android.os.Handler.dispatchMessage(Handler.java:99)11-14   10:00:20.189:E / AndroidRuntime(19266):at   android.os.Looper.loop(Looper.java:130)11-14 10:00:20.189:   E / AndroidRuntime(19266):at   android.app.ActivityThread.main(ActivityThread.java:3687)11-14   10:00:20.189:E / AndroidRuntime(19266):at   java.lang.reflect.Method.invokeNative(Native Method)11-14   10:00:20.189:E / AndroidRuntime(19266):at   java.lang.reflect.Method.invoke(Method.java:507)11-14 10:00:20.189:   E / AndroidRuntime(19266):at   com.android.internal.os.ZygoteInit $ MethodAndArgsCaller.run(ZygoteInit.java:867)   11-14 10:00:20.189:E / AndroidRuntime(19266):at   com.android.internal.os.ZygoteInit.main(ZygoteInit.java:625)11-14   10:00:20.189:E / AndroidRuntime(19266):at   dalvik.system.NativeStart.main(原生方法)

1 个答案:

答案 0 :(得分:8)

您正在获取异常,因为您尚未初始化cursor对象。 您可以使用以下代码获取所有图像的路径。

final String[] columns = { MediaStore.Images.Media.DATA, MediaStore.Images.Media._ID };
        final String orderBy = MediaStore.Images.Media._ID;
        //Stores all the images from the gallery in Cursor
        Cursor cursor = getContentResolver().query(
                MediaStore.Images.Media.EXTERNAL_CONTENT_URI, columns, null,
                null, orderBy);
        //Total number of images
        int count = cursor.getCount();

        //Create an array to store path to all the images
        String[] arrPath = new String[count];

        for (int i = 0; i < count; i++) {
            cursor.moveToPosition(i);
            int dataColumnIndex = cursor.getColumnIndex(MediaStore.Images.Media.DATA);
            //Store the path of the image
            arrPath[i]= cursor.getString(dataColumnIndex);
            Log.i("PATH", arrPath[i]);
        }