我试图学习如何使用android studio,虽然我不熟悉java。 我尝试制作一个布尔值,如果是真的,则文本更改为" ON"否则它将更改为" OFF" 当我使用USB调试时,我的应用程序崩溃了。
代码: MainActivity.java
package com.leuchtstein.flashlight;
import android.support.v7.app.AppCompatActivity;
import android.os.Bundle;
import android.view.View;
import android.widget.TextView;
public class MainActivity extends AppCompatActivity {
public boolean stat = false;
TextView text = (TextView) findViewById(R.id.textView) ;
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_main);
}
public void triggerlight(View view) {
if (stat == false) {
text.setText("ON");
stat = true;
} else {
text.setText("OFF");
stat = false;
}
}
}
activity_main.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.leuchtstein.flashlight.MainActivity">
<TextView
android:id="@+id/textView"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_marginTop="16dp"
android:text="@string/desc_textview"
android:textAppearance="@android:style/TextAppearance.DeviceDefault.Large"
app:layout_constraintHorizontal_bias="0.95"
app:layout_constraintLeft_toLeftOf="parent"
app:layout_constraintRight_toRightOf="parent"
app:layout_constraintTop_toTopOf="parent" />
<Button
android:id="@+id/button"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:onClick="triggerlight"
android:text="Turn on/off"
app:layout_constraintBottom_toBottomOf="parent"
app:layout_constraintLeft_toLeftOf="parent"
app:layout_constraintRight_toRightOf="parent"
app:layout_constraintTop_toBottomOf="@+id/textView"
app:layout_constraintVertical_bias="0.387" />
嗯,提前谢谢。
答案 0 :(得分:2)
不要打电话
TextView text = (TextView) findViewById(R.id.textView) ;
在初始化时,而不是在onCreate()
方法中调用它。
这是因为Android首先初始化脚本,并且仅在调用setContentView()
并且已设置按钮时调用onCreate,&amp; c。因此findViewById(int id)
找不到任何东西。
放
text = (TextView) findViewById(R.id.textView);
在onCreate()
并填写
TextView text;
在初始化中。
答案 1 :(得分:0)
试试这个:
public class MainActivity extends AppCompatActivity {
public boolean stat = false;
TextView text;
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_main);
text = (TextView) findViewById(R.id.textView)
}
答案 2 :(得分:0)
你还没有提供logcat或任何其他ifo,但我可以在这里看到一个可能出错的事情是:
TextView text = (TextView) findViewById(R.id.textView);
将您的代码更改为:
public class MainActivity extends AppCompatActivity {
TextView text;
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_main);
text = (TextView) findViewById(R.id.textView)
}
不同之处在于,在调用TextView
后,使用findViewById
为setContentView()
分配值。
所有视图分配应仅在活动中调用setContentView()
之后完成,因为这是您设置根视图的位置,当您调用findViewById()
时,系统会在根视图中查找具有id的视图。