带有switch语句的Android应用程序在我的手机上崩溃了

时间:2017-06-06 14:28:49

标签: java android xml

当我在Android手机上运行此代码时,它会继续崩溃。

我的java代码如下

public class MainActivity extends Activity {

EditText edit = (EditText) findViewById(R.id.text);
Button button = (Button) findViewById(R.id.button);
String string = edit.getText().toString();

@Override
protected void onCreate(Bundle savedInstanceState) {
    super.onCreate(savedInstanceState);
    setContentView(R.layout.activity_main);


    button.setOnClickListener(new View.OnClickListener() {

        @Override
        public void onClick(View v) {
            // TODO Auto-generated method stub
            switch (string){
                case "c":
                    MediaPlayer mp1 = MediaPlayer.create(getApplicationContext(), R.raw.sample1);
                    mp1.start();
                    break;

我的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="pembroke.com.example.algorhythmic.MainActivity">

<EditText
    android:id="@+id/box"
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:ems="10"
    android:inputType="textPersonName"
    android:text="Name"
    app:layout_constraintRight_toRightOf="parent"
    app:layout_constraintLeft_toLeftOf="parent"
    app:layout_constraintHorizontal_bias="0.502"
    app:layout_constraintBottom_toBottomOf="parent"
    android:layout_marginBottom="308dp" />

<Button
    android:id="@+id/button"
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:text="Button"
    app:layout_constraintRight_toRightOf="parent"
    app:layout_constraintLeft_toLeftOf="parent"
    app:layout_constraintBottom_toBottomOf="parent"
    app:layout_constraintTop_toTopOf="parent"
    app:layout_constraintVertical_bias="0.781" />

代码崩溃,但我不知道为什么。我可能没有正确使用该字符串。

代码中没有错误,但仍然崩溃。是因为Android IDE无法计算我的代码吗?

1 个答案:

答案 0 :(得分:0)

代码有3个问题:

  1. 为了执行findViewById,我们在onCreate活动方法的setContentView之后执行此操作。这是因为,在setContentView之前,所有视图都为null。因此,我在onCreate活动方法中的setContentView(R.layout.activity_main)之后移动了EditText和按钮的findViewById代码。

  2. 对于edittext,您使用的ID是java代码中的R.id.text,但在xml中,它是R.id.box。所以我在执行findViewById时已将其更改为java代码中的R.id.box。

  3. 要查找EditText中存在的值,我们必须在onClickListener中的EditText中显示文本,因为当用户进入EditText内部时,EditText内的值会不断变化。 因此,我们将值分配给onClickListener的onClick方法中的变量字符串。

  4. 所以最终的代码是:

    public class MainActivity extends Activity {
    
        EditText edit;
        Button button;
    
        @Override
        protected void onCreate(Bundle savedInstanceState) {
            super.onCreate(savedInstanceState);
            setContentView(R.layout.activity_main);
    
            edit  = (EditText) findViewById(R.id.box);
            button  = (Button) findViewById(R.id.button);
    
            button.setOnClickListener(new View.OnClickListener() {
    
                @Override
                public void onClick(View v) {
                    String string = edit.getText().toString();
                    switch (string){
                        case "c":
                            MediaPlayer mp1 = MediaPlayer.create(getApplicationContext(), R.raw.sample1);
                            mp1.start();
                            break;
               }
           }
        }
    }