我正在玩加速度傳感器,看它是如何工作的,爲此我想在TextView上實時顯示手機運動的力量。 但每次我按下btnStart按鈕,它都會給我java.lang.NullPointerException錯誤。但我真的不能在我的代碼中看到這個錯誤,我想這是在我聲明傳感器時發生的,但它沒有任何意義,因爲這是聲明它的適當方式。 代碼:android傳感器上的java.lang.NullPointerException
package com.example.accelerometermine;
import android.hardware.Sensor;
import android.hardware.SensorEvent;
import android.hardware.SensorEventListener;
import android.hardware.SensorManager;
import android.os.Bundle;
import android.app.Activity;
import android.view.Menu;
import android.view.View;
import android.view.View.OnClickListener;
import android.widget.Button;
import android.widget.TextView;
public class MainActivity extends Activity implements SensorEventListener, OnClickListener{
private SensorManager sensorManager;
private Button btnSta, btnSto;
private TextView txt;
private boolean started = false;
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_main);
btnSta = (Button)findViewById(R.id.btnStart);
btnSto = (Button)findViewById(R.id.btnStop);
txt = (TextView)findViewById(R.id.textView1);
btnSta.setOnClickListener(this);
btnSto.setOnClickListener(this);
btnSta.setEnabled(true);
btnSto.setEnabled(false);
}
@Override
protected void onResume() {
super.onResume();
}
@Override
protected void onPause() {
super.onPause();
if (started == true) {
sensorManager.unregisterListener(this);
}
}
@Override
public boolean onCreateOptionsMenu(Menu menu) {
// Inflate the menu; this adds items to the action bar if it is present.
getMenuInflater().inflate(R.menu.main, menu);
return true;
}
@Override
public void onAccuracyChanged(Sensor arg0, int arg1) {
// TODO Auto-generated method stub
}
@Override
public void onSensorChanged(SensorEvent event) {
if (started) {
double x = event.values[0];
double y = event.values[1];
double z = event.values[2];
double xa = Math.abs(x);
double ya = Math.abs(y);
double za = Math.abs(z);
double force = xa + ya + za;
txt.setText("0" + force);
}
}
@Override
public void onClick(View v) {
switch (v.getId()){
case R.id.btnStart:
btnSta.setEnabled(false);
btnSto.setEnabled(true);
started = true;
Sensor accel = sensorManager.getDefaultSensor(Sensor.TYPE_ACCELEROMETER);
sensorManager.registerListener(this, accel, SensorManager.SENSOR_DELAY_FASTEST);
break;
case R.id.btnStop:
btnSta.setEnabled(true);
btnSto.setEnabled(false);
started = false;
sensorManager.unregisterListener(this);
default:
break;
}
}
}
在XML:
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:paddingBottom="@dimen/activity_vertical_margin"
android:paddingLeft="@dimen/activity_horizontal_margin"
android:paddingRight="@dimen/activity_horizontal_margin"
android:paddingTop="@dimen/activity_vertical_margin"
tools:context=".MainActivity" >
<Button
android:id="@+id/btnStart"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_centerHorizontal="true"
android:layout_centerVertical="true"
android:text="Start" />
<Button
android:id="@+id/btnStop"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_alignLeft="@+id/btnStart"
android:layout_below="@+id/btnStart"
android:layout_marginTop="37dp"
android:text="Stop" />
<TextView
android:id="@+id/textView1"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_above="@+id/btnStart"
android:layout_centerHorizontal="true"
android:layout_marginBottom="89dp"
android:textAppearance="@android:style/TextAppearance.Medium"
android:text="TextView" />
發佈logcat錯誤跟蹤,並指示您的源的哪一行對應於「由...引起」提及的空指針中的編號行。當你在它的時候,確定你試圖在該行使用一個字段或方法的對象,並考慮可能導致該對象仍然爲空的那種失敗。 –