使用 button.getTag().toString() 会导致应用程序崩溃

Using button.getTag().toString() causes app crash

使用button.getTag().toString() 会导致应用程序崩溃。据我所知,我需要在 getTag() 之前有一个 setTag(),但我不知道何时以及如何在此代码中使用它!

主线:

public class MainActivity extends AppCompatActivity {

    public void play(View view){
        Button buttonPressed = (Button) view;
        Log.i("Button pressed", buttonPressed.getTag().toString()); //this line is causing error
        MediaPlayer mediaPlayer = MediaPlayer.create(this, getResources().getIdentifier(buttonPressed.getTag().toString(), "raw", getPackageName()));
        mediaPlayer.start();
    }

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

    }

XML:

<androidx.gridlayout.widget.GridLayout
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    app:columnCount="2"
    app:layout_constraintBottom_toBottomOf="parent"
    app:layout_constraintEnd_toEndOf="parent"
    app:layout_constraintStart_toStartOf="parent"
    app:layout_constraintTop_toTopOf="parent"
    app:rowCount="4">

    <Button
        android:id="@+id/hi"
        android:onClick="play"
        android:text="HI"
        app:layout_columnWeight="1"
        app:layout_gravity="fill"
        app:layout_rowWeight="1" />

它崩溃的原因是因为buttonPressed.getTag() returns null。 如果在 XML 或代码中没有设置标签,它将为空。而null.toString()会导致空指针异常

要么在 XML 中使用 android:tag 设置一个标签,要么您正在尝试获取其他内容而不是标签