【发布时间】:2013-11-26 22:03:11
【问题描述】:
自 14 小时以来,我一直试图列出 android 设备中的所有图像及其路径,但我无法......它一直给我“java.lang.RuntimeException:无法启动活动 ComponentInfo”错误。
我不明白为什么..
有什么帮助吗??
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: 无法启动 活动 组件信息{com.example.allpicsexample/com.example.allpicsexample.MainActivity}: java.lang.NullPointerException 11-14 08:29:01.749: E/AndroidRuntime(16788):在 android.app.ActivityThread.performLaunchActivity(ActivityThread.java:1651) 11-14 08:29:01.749: E/AndroidRuntime(16788): 在 android.app.ActivityThread.handleLaunchActivity(ActivityThread.java:1667) 11-14 08:29:01.749: E/AndroidRuntime(16788): 在 android.app.ActivityThread.access$1500(ActivityThread.java:117) 11-14 08:29:01.749: E/AndroidRuntime(16788): 在 android.app.ActivityThread$H.handleMessage(ActivityThread.java:935) 11-14 08:29:01.749: E/AndroidRuntime(16788): 在 android.os.Handler.dispatchMessage(Handler.java:99) 11-14 08:29:01.749: E/AndroidRuntime(16788): 在 android.os.Looper.loop(Looper.java:130) 11-14 08:29:01.749: E/AndroidRuntime(16788):在 android.app.ActivityThread.main(ActivityThread.java:3687) 11-14 08:29:01.749: E/AndroidRuntime(16788): 在 java.lang.reflect.Method.invokeNative(Native Method) 11-14 08:29:01.749: E/AndroidRuntime(16788): 在 java.lang.reflect.Method.invoke(Method.java:507) 11-14 08:29:01.749: E/AndroidRuntime(16788):在 com.android.internal.os.ZygoteInit$MethodAndArgsCaller.run(ZygoteInit.java:867) 11-14 08:29:01.749: E/AndroidRuntime(16788): 在 com.android.internal.os.ZygoteInit.main(ZygoteInit.java:625) 11-14 08:29:01.749: E/AndroidRuntime(16788): 在 dalvik.system.NativeStart.main(本机方法)11-14 08:29:01.749: E/AndroidRuntime(16788):原因:java.lang.NullPointerException 11-14 08:29:01.749: E/AndroidRuntime(16788): 在 com.example.allpicsexample.MainActivity.onCreate(MainActivity.java:37) 11-14 08:29:01.749: E/AndroidRuntime(16788): 在 android.app.Instrumentation.callActivityOnCreate(Instrumentation.java:1047) 11-14 08:29:01.749: E/AndroidRuntime(16788): 在 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: 活动 {com.example.allpicsexample/com.example.allpicsexample.MainActivity} 没有调用 super.onCreate() 11-14 10:00:20.189: E/AndroidRuntime(19266):在 android.app.ActivityThread.performLaunchActivity(ActivityThread.java:1617) 11-14 10:00:20.189: E/AndroidRuntime(19266): 在 android.app.ActivityThread.handleLaunchActivity(ActivityThread.java:1667) 11-14 10:00:20.189: E/AndroidRuntime(19266): 在 android.app.ActivityThread.access$1500(ActivityThread.java:117) 11-14 10:00:20.189:E/AndroidRuntime(19266):在 android.app.ActivityThread$H.handleMessage(ActivityThread.java:935) 11-14 10:00:20.189: E/AndroidRuntime(19266): 在 android.os.Handler.dispatchMessage(Handler.java:99) 11-14 10:00:20.189:E/AndroidRuntime(19266):在 android.os.Looper.loop(Looper.java:130) 11-14 10:00:20.189: E/AndroidRuntime(19266):在 android.app.ActivityThread.main(ActivityThread.java:3687) 11-14 10:00:20.189:E/AndroidRuntime(19266):在 java.lang.reflect.Method.invokeNative(Native Method) 11-14 10:00:20.189:E/AndroidRuntime(19266):在 java.lang.reflect.Method.invoke(Method.java:507) 11-14 10:00:20.189: E/AndroidRuntime(19266):在 com.android.internal.os.ZygoteInit$MethodAndArgsCaller.run(ZygoteInit.java:867) 11-14 10:00:20.189: E/AndroidRuntime(19266): 在 com.android.internal.os.ZygoteInit.main(ZygoteInit.java:625) 11-14 10:00:20.189:E/AndroidRuntime(19266):在 dalvik.system.NativeStart.main(Native Method)
【问题讨论】:
-
您好,能否提供完整的日志?确保您没有忘记在应用程序清单中声明您的活动。干杯!
-
@k3v1n4ud3 我已经粘贴了完整的 logcat 日志,你现在可以查看.. 谢谢 :)
-
@k3v1n4ud3 你也可以告诉我一种列出安卓设备中所有图像的方法....
-
我不确定如何访问 SD 卡上的所有内容,您应该查看 developer.android.com/guide/topics/data/…。但是我想我知道它为什么会崩溃,您在尚未初始化的游标对象上调用 getString 。即使您在访问它之前对其进行了初始化,它仍然是空的。尝试替换它,它将防止崩溃。
-
如果我删除它,那么做任何事情都没有意义..