0

リスナーを配置する場所を見つけようとして問題が発生しています (セットアップしようとしているリスナーが 2 つありますが、ここでは 1 つだけを参照し、2 つ目のリスナーを自分で解決できることを願っています!)。

スピナーがあり、スピナー項目が変更されたときにいくつかの TextViews を更新したいので、onItemSelectedリスナーが必要だと思います。onCreateSOに関する他の人の質問を読んだ後、メソッドとメソッドに入れてみましたonStartが、アプリはロード時にFCになります。

アプリはナビゲーションにタブ/フラグメントを使用しますが、これは問題 (リスナーを設定しようとしたときにフラグメントが膨張しない) と関係があるのでしょうか?

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


    // Create the adapter that will return a fragment for each of the three
    // primary sections of the app.
    mSectionsPagerAdapter = new SectionsPagerAdapter(getSupportFragmentManager());

    // Set up the ViewPager with the sections adapter.
    mViewPager = (ViewPager) findViewById(R.id.pager);
    mViewPager.setAdapter(mSectionsPagerAdapter);

    spinner = (Spinner)findViewById(R.id.spinner);
    spinner.setOnItemSelectedListener(new AdapterView.OnItemSelectedListener() {
        @Override
        public void onItemSelected(AdapterView<?> parentView, View selectedItemView, int position, long id) {
            Toast.makeText(getApplicationContext(), "hello", Toast.LENGTH_LONG).show();
        }

        @Override
        public void onNothingSelected(AdapterView<?> parentView) {
            // your code here
        }

    });


}

そしてlogcat;

08-24 17:19:16.256  13803-13803/com.example.myapplication E/AndroidRuntime: FATAL EXCEPTION: main
    java.lang.RuntimeException: Unable to start activity     ComponentInfo{com.example.myapplication/com.example.myapplication.MainActivity}: java.lang.NullPointerException
    at android.app.ActivityThread.performLaunchActivity(ActivityThread.java:2211)
    at android.app.ActivityThread.handleLaunchActivity(ActivityThread.java:2261)
    at android.app.ActivityThread.access$600(ActivityThread.java:141)
    at android.app.ActivityThread$H.handleMessage(ActivityThread.java:1256)
    at android.os.Handler.dispatchMessage(Handler.java:99)
    at android.os.Looper.loop(Looper.java:137)
    at android.app.ActivityThread.main(ActivityThread.java:5103)
    at java.lang.reflect.Method.invokeNative(Native Method)
    at java.lang.reflect.Method.invoke(Method.java:525)
    at com.android.internal.os.ZygoteInit$MethodAndArgsCaller.run(ZygoteInit.java:737)
    at com.android.internal.os.ZygoteInit.main(ZygoteInit.java:553)
    at dalvik.system.NativeStart.main(Native Method)
    Caused by: java.lang.NullPointerException
    at com.example.myapplication.MainActivity.onCreate(MainActivity.java:57)
    at android.app.Activity.performCreate(Activity.java:5133)
    at android.app.Instrumentation.callActivityOnCreate(Instrumentation.java:1087)
    at android.app.ActivityThread.performLaunchActivity(ActivityThread.java:2175)
    ... 11 more
4

1 に答える 1

1

NullPointerException を取得するとspinner.setXXX()spinner変数に null が含まれます。これは、findViewById()以前の in the pine が現在のコンテキストでスピナーを見つけられなかったことを意味します。コンテキストは line で設定されますsetContentView()

結論:R.layout.activity_mainが含まれていないようR.id.spinnerです。

于 2013-08-24T17:26:52.073 に答える