在 android 应用中强制关闭
Force Close in the android app
Android工作室
大家好。
我想为 android 制作一个简单的应用程序,它使用 <<OnCheckedChangeListener>> 作为 android studio 中的复选框。我查看了与我的问题类似的问题,例如 link,但我发现我的代码没有问题。这些是我的。提前致谢。
这是我的MainActivity.java
package com.example.gna.myapplication;
import android.app.Activity;
import android.support.v7.app.ActionBarActivity;
import android.os.Bundle;
import android.view.Menu;
import android.view.MenuItem;
import android.widget.CheckBox;
import android.widget.CompoundButton;
import android.widget.TextView;
public class MainActivity extends Activity {
public CheckBox chbox=(CheckBox)findViewById(R.id.CH1);
public TextView txt1 =(TextView)findViewById(R.id.TXT1);
CompoundButton.OnCheckedChangeListener list=new CompoundButton.OnCheckedChangeListener() {
@Override
public void onCheckedChanged(CompoundButton buttonView, boolean isChecked) {
if(isChecked)
txt1.setText("A New Era");
else
txt1.setText("MasterByte");
}
};
@Override
protected void onCreate(Bundle savedInstanceState){
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_main);
chbox.setOnCheckedChangeListener(list);
}
}
而 XML 是:
activity_main.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:paddingLeft="@dimen/activity_horizontal_margin"
android:paddingRight="@dimen/activity_horizontal_margin"
android:paddingTop="@dimen/activity_vertical_margin"
android:paddingBottom="@dimen/activity_vertical_margin"
tools:context=".MainActivity"
android:id="@+id/rl">
<TextView android:text="MasterByte"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:textSize="40dp"
android:textColor="#F00FF0"
android:id="@+id/TXT1"
android:layout_alignParentTop="true"
android:layout_centerHorizontal="true"
android:layout_marginTop="74dp" />
<CheckBox
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="Click Here"
android:id="@+id/CH1"
android:textSize="30dp"
android:layout_below="@+id/TXT1"
android:layout_alignRight="@+id/TXT1"
android:layout_alignEnd="@+id/TXT1"
android:layout_marginTop="55dp" />
</RelativeLayout>
好的。
我的问题是应用程序无法启动并且显示强制关闭错误。
我想使用异常 类 和 [try(),catch(),finally()] 但我不知道如何。如果你知道怎么做,我在等 :D
抱歉我的英语不好!
移动
的初始化
public CheckBox chbox=(CheckBox)findViewById(R.id.CH1);
public TextView txt1 =(TextView)findViewById(R.id.TXT1);
在 onCreate
内和 setContentView
之后。你需要一个有效的 Context
和一些东西才能真正找到一些东西
My problem is that the app won't start and it shows force close
error.
在 Activity
生命周期结束之前,您不能使用 findViewById。
Android工作室
大家好。
我想为 android 制作一个简单的应用程序,它使用 <<OnCheckedChangeListener>> 作为 android studio 中的复选框。我查看了与我的问题类似的问题,例如 link,但我发现我的代码没有问题。这些是我的。提前致谢。
这是我的MainActivity.java
package com.example.gna.myapplication;
import android.app.Activity;
import android.support.v7.app.ActionBarActivity;
import android.os.Bundle;
import android.view.Menu;
import android.view.MenuItem;
import android.widget.CheckBox;
import android.widget.CompoundButton;
import android.widget.TextView;
public class MainActivity extends Activity {
public CheckBox chbox=(CheckBox)findViewById(R.id.CH1);
public TextView txt1 =(TextView)findViewById(R.id.TXT1);
CompoundButton.OnCheckedChangeListener list=new CompoundButton.OnCheckedChangeListener() {
@Override
public void onCheckedChanged(CompoundButton buttonView, boolean isChecked) {
if(isChecked)
txt1.setText("A New Era");
else
txt1.setText("MasterByte");
}
};
@Override
protected void onCreate(Bundle savedInstanceState){
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_main);
chbox.setOnCheckedChangeListener(list);
}
}
而 XML 是:
activity_main.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:paddingLeft="@dimen/activity_horizontal_margin"
android:paddingRight="@dimen/activity_horizontal_margin"
android:paddingTop="@dimen/activity_vertical_margin"
android:paddingBottom="@dimen/activity_vertical_margin"
tools:context=".MainActivity"
android:id="@+id/rl">
<TextView android:text="MasterByte"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:textSize="40dp"
android:textColor="#F00FF0"
android:id="@+id/TXT1"
android:layout_alignParentTop="true"
android:layout_centerHorizontal="true"
android:layout_marginTop="74dp" />
<CheckBox
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="Click Here"
android:id="@+id/CH1"
android:textSize="30dp"
android:layout_below="@+id/TXT1"
android:layout_alignRight="@+id/TXT1"
android:layout_alignEnd="@+id/TXT1"
android:layout_marginTop="55dp" />
</RelativeLayout>
好的。 我的问题是应用程序无法启动并且显示强制关闭错误。 我想使用异常 类 和 [try(),catch(),finally()] 但我不知道如何。如果你知道怎么做,我在等 :D 抱歉我的英语不好!
移动
的初始化 public CheckBox chbox=(CheckBox)findViewById(R.id.CH1);
public TextView txt1 =(TextView)findViewById(R.id.TXT1);
在 onCreate
内和 setContentView
之后。你需要一个有效的 Context
和一些东西才能真正找到一些东西
My problem is that the app won't start and it shows force close error.
在 Activity
生命周期结束之前,您不能使用 findViewById。