我只是在Android微调器中进行实验,我遇到了这个奇怪的应用程序崩溃问题。
这是我默认使用的方法来引用包含方法的类: 的 sr.setOnItemSelectedListener(本); 这很好用
但是当我改变参考方法时: sr.setOnItemSelectedListener(new MainActivity());
编辑:
我们为什么要通过这个
为什么我们不能通过新的MainActivity()?
如果使用Toast,则抛出此错误:
java.lang.NullPointerException:尝试在android.content.ContextWrapper.getResources上的空对象引用上调用虚拟方法'android.content.res.Resources android.content.Context.getResources()'(ContextWrapper.java: 86)
整个代码:
package com.example.defaultspinner;
import android.support.v7.app.AppCompatActivity;
import android.os.Bundle;
import android.view.View;
import android.widget.AdapterView;
import android.widget.ArrayAdapter;
import android.widget.Spinner;
import android.widget.Toast;
public class MainActivity extends AppCompatActivity implements AdapterView.OnItemSelectedListener
{
Spinner sr;
@Override
protected void onCreate(Bundle savedInstanceState)
{
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_main);
sr = (Spinner) findViewById(R.id.sp);
String[] days = getResources().getStringArray(R.array.days);
ArrayAdapter<String> ar = new ArrayAdapter<>(this, R.layout.single_row, days);
sr.setAdapter(ar);
sr.setOnItemSelectedListener(new MainActivity()); //passing new MainActivity() instead of this (it may be the problem)
System.out.println("THIS -> " + this); //com.example.defaultspinner.MainActivity@3b90554d
System.out.println("NEW -> " + new MainActivity()); //com.example.defaultspinner.MainActivity@1475b903
}
@Override
public void onItemSelected(AdapterView<?> parent, View view, int position, long id)
{
String tm = "VALUE -> " + parent.getItemAtPosition(position);
System.out.println("THIS-> " + MainActivity.this); //out -> com.example.defaultspinner.MainActivity@210b457b
System.out.println("APP -> " + getApplicationContext()); //out -> null
System.out.println(tm);
Toast.makeText(MainActivity.this, tm, Toast.LENGTH_LONG).show(); //error is thrown here
}
@Override
public void onNothingSelected(AdapterView<?> parent)
{
System.out.println(parent);
}
}
java.lang.NullPointerException:尝试在android.content.ContextWrapper.getResources上的空对象引用上调用虚拟方法'android.content.res.Resources android.content.Context.getResources()'(ContextWrapper.java: 86)
如果使用此而不是新的Object(),此程序可以正常工作 我尝试了以下上下文方法:
Toast.makeText(this, tm, Toast.LENGTH_LONG).show();
Toast.makeText(MainActivity.this, tm, Toast.LENGTH_LONG).show();
Toast.makeText(getApplicationContext(), tm, Toast.LENGTH_LONG).show();
Toast.makeText(getBaseContext(), tm, Toast.LENGTH_LONG).show();