使用片段从另一个类获取值时出现 NullPointerException [重复]
Posted
技术标签:
【中文标题】使用片段从另一个类获取值时出现 NullPointerException [重复]【英文标题】:NullPointerException when using a fragment to get values from another class [duplicate] 【发布时间】:2017-08-10 17:04:06 【问题描述】:我是 android 的初学者,在处理 NullPointerException 时遇到了一些问题。我需要将数组中的磁力计读数值从一个类传递到一个片段。 这是磁力计类:
public class Magnetometer implements SensorEventListener
private Sensor mag;
private SensorManager magman;
private boolean magAvailable;
private float[] magValue;
public Magnetometer(MagFragment context)
magman=(SensorManager)context.getActivity().getSystemService(Context.SENSOR_SERVICE);
magAvailable=magman.getDefaultSensor(Sensor.TYPE_ACCELEROMETER)!=null;
if(isMagAvailable())
magValue=new float[3];
mag=magman.getDefaultSensor(Sensor.TYPE_ACCELEROMETER);
magman.registerListener(this,mag,SensorManager.SENSOR_DELAY_NORMAL);
@Override
public void onSensorChanged(SensorEvent event)
for(int i=0;i<3;i++)
magValue[i]=event.values[i];
public float[] getLastReading()
return this.magValue;
@Override
public void onAccuracyChanged(Sensor sensor, int i)
public boolean isMagAvailable()
return this.magAvailable;
public void unregister()
if(isMagAvailable())
magman.unregisterListener(this,mag);
这是片段:
ublic class MagFragment extends Fragment
private Magnetometer mag;
private TextView x,y,z;
private float[] magValues;
public MagFragment()
// Required empty public constructor
@Nullable
@Override
public View onCreateView(LayoutInflater inflater, @Nullable ViewGroup container, @Nullable Bundle savedInstanceState)
//returning our layout file
//change R.layout.yourlayoutfilename for each of your fragments
View rootView = inflater.inflate(R.layout.fragment_mag, container, false);
x=(TextView) rootView.findViewById(R.id.mx);
y=(TextView) rootView.findViewById(R.id.my);
z=(TextView) rootView.findViewById(R.id.mz);
magValues=new float[3];
getData(this);
return rootView;
@Override
public void onViewCreated(View view, @Nullable Bundle savedInstanceState)
super.onViewCreated(view, savedInstanceState);
//you can set the title for your toolbar here for different fragments different titles
getActivity().setTitle("Magnetometer");
public void getData(MagFragment context)
magValues=mag.getLastReading();
displayData(magValues);
public void displayData(float [] magV)
x.setText(String.valueOf(magV[0]));
y.setText(String.valueOf(magV[1]));
z.setText(String.valueOf(magV[2]));
我了解,该函数返回一些 NULL 值。 我得到的错误是“尝试在空对象引用上调用虚拟方法'float[] com.example.ark.ark.Sensors.Magnetometer.getLastReading()'”
【问题讨论】:
【参考方案1】:您从未在 MagFragment 中创建磁力计实例。
例如:Magnetometer mag = new Magnetometer(this);
【讨论】:
谢谢,我自己发现了这个,我的错。以上是关于使用片段从另一个类获取值时出现 NullPointerException [重复]的主要内容,如果未能解决你的问题,请参考以下文章
Android中ViewPager + Fragment使用ButterKnife注解时出现空指针NullPoint的情况