2017-03-18 5 views
0

ExpadableListView Isses:E/AndroidRuntime:致命的除外:メイン。私は次のエラーを取得する私のアプリを実行しようとすると、私は一度だけ実行され、expandablelistviewこれらのエラーまし

7686/com.example.admin.n0499049 E/AndroidRuntime: FATAL EXCEPTION: main 
Process: com.example.admin.n0499049, PID: 7686 
java.lang.RuntimeException: Unable to start activity ComponentInfo { com.example.admin.n0499049/com.example.admin.n0499049.MainActivity }: java.lang.NullPointerException: Attempt to invoke virtual method 'void android.widget.ExpandableListView.setAdapter(android.widget.ExpandableListAdapter)' 
on a null object reference 
at android.app.ActivityThread.performLaunchActivity(ActivityThread.java: 2665) 
at android.app.ActivityThread.handleLaunchActivity(ActivityThread.java: 2726) 
at android.app.ActivityThread. - wrap12(ActivityThread.java) 
at android.app.ActivityThread$H.handleMessage(ActivityThread.java: 1477) 
at android.os.Handler.dispatchMessage(Handler.java: 102) 
at android.os.Looper.loop(Looper.java: 154) 
at android.app.ActivityThread.main(ActivityThread.java: 6119) 
at java.lang.reflect.Method.invoke(Native Method) 
at com.android.internal.os.ZygoteInit$MethodAndArgsCaller.run(ZygoteInit.java: 886) 
at com.android.internal.os.ZygoteInit.main(ZygoteInit.java: 776) 
Caused by: java.lang.NullPointerException: Attempt to invoke virtual method 'void android.widget.ExpandableListView.setAdapter(android.widget.ExpandableListAdapter)' 
on a null object reference 
at com.example.admin.n0499049.MainActivity.onCreate(MainActivity.java: 34) 
at android.app.Activity.performCreate(Activity.java: 6679) 
at android.app.Instrumentation.callActivityOnCreate(Instrumentation.java: 1118) 
at android.app.ActivityThread.performLaunchActivity(ActivityThread.java: 2618) 
at android.app.ActivityThread.handleLaunchActivity(ActivityThread.java: 2726)  
at android.app.ActivityThread. - wrap12(ActivityThread.java)  
at android.app.ActivityThread$H.handleMessage(ActivityThread.java: 1477)  
at android.os.Handler.dispatchMessage(Handler.java: 102)  
at android.os.Looper.loop(Looper.java: 154)  
at android.app.ActivityThread.main(ActivityThread.java: 6119)  
at java.lang.reflect.Method.invoke(Native Method)  
at com.android.internal.os.ZygoteInit$MethodAndArgsCaller.run(ZygoteInit.java: 886)  
at com.android.internal.os.ZygoteInit.main(ZygoteInit.java: 776)  

答えて

0

あなたExpandableListViewがnullでは、正しくそれを開始するようにしてください。お電話前にExpandableListView.setAdapter(...)

+0

どうすれば正しい方法で開始できますか?私はアンドロイドのために開発するのが初めてです。 – user7731456

+0

http://www.vogella.com/tutorials/AndroidListView/article.html – Minis

+0

ありがとう、私はリンクを見てきました。私はアンドロイドの開発に新しいので、私は間違っていることを理解していない。もしあなたが私のプロジェクトをあなたに送ったら、それを見ることができるでしょうか? – user7731456

関連する問題