我是Android开发的新手,对不起,如果这是我应该能够自己解决的根本问题。我已经阅读了许多其他问题,这就是我最终在我想到的任何地方启动切换但我仍然没有修复它。
如果用户将一个活动中的开关置于“ON”位置,我正在制作具有记录游戏功能的国际象棋游戏。
错误
Caused by: java.lang.NullPointerException: Attempt to invoke virtual method
'boolean android.widget.Switch.isChecked()' on a null object reference at
com.android51.HomeActivity.toRecord(HomeActivity.java:43)
这是我在国际象棋活动开始时传递该值的方式。
public void toChess(View view){
Intent myIntent = new Intent(HomeActivity.this, Chess.class);
Bundle bundle = getIntent().getExtras();
Boolean recordState = bundle.getBoolean("recordState");
HomeActivity.this.startActivity(myIntent);
}
public void toRecord(View view){
Intent myIntent = new Intent(HomeActivity.this, RecordActivity.class);
Switch recordSwitch = (Switch) findViewById(R.id.toggle_record);
Boolean recordState = recordSwitch.isChecked(); <---- NULL POINTER, WHY?
Bundle bundle = new Bundle();
bundle.putBoolean("recordState", recordState);
myIntent.putExtras(bundle);
HomeActivity.this.startActivity(myIntent);
}
我在onCreate()
内有这样的开关:
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_record);
switch_record = (Switch) findViewById(R.id.toggle_record);
recordState = switch_record.isChecked();
}
XML
<?xml version="1.0" encoding="utf-8"?>
<android.support.constraint.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="match_parent"
tools:context="com.android51.HomeActivity">
<Switch
android:id="@+id/toggle_record"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_marginLeft="16dp"
android:switchPadding="170dp"
android:text="Record All Gameplay"
android:checked="true"
android:onClick="onSwitchButtonClicked"
app:layout_constraintLeft_toLeftOf="parent"
app:layout_constraintTop_toTopOf="parent"
android:layout_marginTop="16dp" />