当前位置: 首页 > 知识库问答 >
问题:

Android:在切换按钮中添加ClickListener时,程序会崩溃

陆洛城
2023-03-14

我有一个问题,每当我尝试添加任何监听器到我的切换按钮,应用程序甚至没有启动,只是崩溃。在这个代码示例中,我使用SetOnCheckedChangeListener进行了尝试。

当我在没有任何监听器的情况下设置这个值时,它已经崩溃了:

tglButton = (ToggleButton)findViewById(R.id.tglBtn);

mainactivity.java

package com.example.paulii.myapplication2;

import android.content.Intent;
import android.database.Cursor;
import android.support.v7.app.AppCompatActivity;
import android.os.Bundle;
import android.view.View;
import android.widget.AdapterView;
import android.widget.Button;
import android.widget.CompoundButton;
import android.widget.EditText;
import android.widget.ListView;
import android.widget.SimpleCursorAdapter;
import android.widget.Toast;
import android.widget.ToggleButton;

public class MainActivity extends AppCompatActivity {

    ListView mListView;
    Button button_stpd;
    DBAdapter myDB;
    Button btn_delete;
    ToggleButton tglButton;

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

        openDB();
        populateListView();

        button_stpd = (Button)findViewById(R.id.btn_createNewAlarm);

        button_stpd.setOnClickListener(new View.OnClickListener() {
            @Override
            public void onClick(View v) {
                Intent intent = new Intent(MainActivity.this, createNewWecker.class);
                startActivity(intent);
            }
        });

        mListView = (ListView)findViewById(R.id.stationList);
        mListView.setOnItemLongClickListener(new AdapterView.OnItemLongClickListener() {
            @Override
            public boolean onItemLongClick(AdapterView<?> parent, View view, int position, long id) {
                myDB.deleteRow(id);
                populateListView();
                return false;
            }
        });

        btn_delete = (Button)findViewById(R.id.btn_delete);
        btn_delete.setOnClickListener(new View.OnClickListener() {
            @Override
            public void onClick(View v) {
                myDB.deleteAll();
                populateListView();
            }
        });

    tglButton = (ToggleButton)findViewById(R.id.tglBtn);
        tglButton.setOnCheckedChangeListener(new CompoundButton.OnCheckedChangeListener() {
            @Override
            public void onCheckedChanged(CompoundButton buttonView, boolean isChecked) {
                Toast.makeText(getApplicationContext(), String.valueOf(buttonView.isChecked()),Toast.LENGTH_SHORT).show();
            }
        });


    }

    public void populateListView(){
        Cursor cursor = myDB.getAllRows();

        String[] fromFieldNames = new String[]{DBAdapter.KEY_TASK};

        int[] toViewIDs = new int[]{R.id.textStation};

        SimpleCursorAdapter myCursorAdapter;
        myCursorAdapter = new SimpleCursorAdapter(getBaseContext(), R.layout.textview_list, cursor, fromFieldNames, toViewIDs,0);
        ListView myList = (ListView)findViewById(R.id.stationList);
        myList.setAdapter(myCursorAdapter);

    }


    @Override
    protected void onStop() {
        super.onStop();
    }

    private void openDB(){
        myDB = new DBAdapter(this);
        myDB.open();
    }

    private void closeDB(){
        myDB.close();
    }

    @Override
    public void onDestroy() {
        super.onDestroy();
        closeDB();
    }

}

正如您所看到的,我试图一如既往地将setOnCheckedChangeListener添加到tglButton中。但我不明白为什么应用程序在那之后就崩溃了。

 <?xml version="1.0" encoding="utf-8"?>
    <RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
        xmlns:tools="http://schemas.android.com/tools"
        android:id="@+id/activity_testwindow"
        android:layout_width="match_parent"
        android:layout_height="match_parent"
        android:paddingBottom="@dimen/activity_vertical_margin"
        android:paddingLeft="@dimen/activity_horizontal_margin"
        android:paddingRight="@dimen/activity_horizontal_margin"
        android:paddingTop="@dimen/activity_vertical_margin"
        tools:context="com.example.paulii.myapplication2.MainActivity">

        <LinearLayout
            android:orientation="vertical"
            android:layout_width="match_parent"
            android:layout_height="match_parent"
            android:weightSum="1"
            android:layout_alignParentTop="true"
            android:layout_alignParentStart="true">

            <LinearLayout
                android:orientation="vertical"
                android:layout_width="match_parent"
                android:layout_height="282dp"
                android:layout_weight="1.07"
                android:weightSum="1">

                <RelativeLayout
                    android:orientation="vertical"
                    android:layout_width="match_parent"
                    android:layout_height="match_parent"
                    android:layout_weight="0.72"
                    android:weightSum="1"
                    tools:ignore="NestedWeights,UselessParent"
                    android:layout_marginBottom="10dp">

                    <ListView
                        android:layout_width="match_parent"
                        android:id="@+id/stationList"
                        android:layout_gravity="left"
                        tools:ignore="RtlHardcoded"
                        android:layout_height="400dp" />

                    <Button
                        android:text="Delete All"
                        android:layout_width="wrap_content"
                        android:layout_height="wrap_content"
                        android:id="@+id/btn_delete"
                        android:layout_alignBottom="@+id/btn_createNewAlarm"
                        android:layout_alignParentEnd="true" />

                    <Button
                        android:text="@string/create_new_alarm"
                        android:layout_width="wrap_content"
                        android:layout_height="wrap_content"
                        android:id="@+id/btn_createTimePicker"
                        android:layout_alignParentBottom="true"
                        android:layout_alignParentStart="true" />


                </RelativeLayout>

            </LinearLayout>

        </LinearLayout>

    </RelativeLayout>

textview_list.xml

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:tools="http://schemas.android.com/tools"
    android:orientation="horizontal" android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:weightSum="1">

    <TextView
        android:text="TextView"
        android:layout_width="150dp"
        android:id="@+id/textStation"
        android:layout_height="68dp"
        android:layout_weight="0.87" />

    <ToggleButton
        android:text="ToggleButton"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:id="@+id/tglBtn"
        android:focusable="false" />

</LinearLayout>

错误消息是:

java.lang.RuntimeException:无法启动activity ComponentInfo{com.example.Paulii.MyApplication2/com.example.Paulii.MyApplication2.MainActivity}:java.lang.NullPointerException:尝试对空对象引用调用虚拟方法“void android.widget.button.SetonClickListener(android.view.view$OnClickListener

也许你们中有人能帮我?

共有1个答案

史烈
2023-03-14

切换按钮存在于ListView项布局textview_list.xml中,因此需要在ListView适配器中添加侦听器。

 类似资料:
  • 问题内容: 应用程序可以在四种不同的设备上正常运行。但是客户端在 Xperia z2 上的闪光按钮ON / OFF上面临崩溃。 主要活动 相机预览 崩溃报告。 问题答案: 应muku的要求。我自己回答。用于切换闪光灯 FlashOn和FlashOff方法是

  • 问题内容: 我一直试图在Eclipse中制作我的第一个android应用程序(一个简单的温度转换器),但是当我单击手机上的按钮时,该应用程序崩溃了。这是完整的Java代码 单击按钮时的LogCat 最后是按钮的xml 我不确定如何解决此问题,因此希望有人可以提供帮助。谢谢。 问题答案: 首先初始化您的按钮,然后将onclicklistener设置为它们 同样设置另一个按钮

  • 我对场景构建器有意见。我想在按钮上添加ContextMenu。当我在按钮上拖放ContextMenu时,它工作得很好(它出现在Hierarchy选项卡中)。但是当我点击Hierarchy选项卡中预定义的MenuItem(在ContextMenu下)时,Scence Builder会冻结,我不得不关闭它。 谁能帮我一下吗?我知道我可以在Java代码中创建一个ContextMenu,但我想在Scene

  • 每次我点击按钮1,我的应用程序就会崩溃。同一活动中的另一个按钮可以正常工作。我已经试过更换按钮和代码了。控制台中没有错误。

  • 09-08 07:58:32.915 137 26-13726/com.ruthadeaton.bld3.calculator e/androidruntime:致命异常:main process:com.ruthadeaton.bld3.calculator.calculator,PID:13726 java.lang.numberformatexception:empty string ats

  • 在这个孩子的acitivy我有一个页面有一个旋转器和一个按钮。 首先,按钮是工作的,但当我点击旋转器,应用程序将崩溃。为了解决这个问题,我必须改变 至 我在活动中得到了这个方法,但他没有找到这个方法,因为我查看了contentView=LayoutInflater.from(getParent()).Inflate(r.layout.show_add_expresse_event,null);se