ToggleButton不工作

时间:2014-03-13 06:36:48

标签: java android togglebutton

我是android新手。 我试图创建一个简单的切换按钮,并抓住它的状态变化。但是当我在我的设备上运行它时崩溃了。

这是MainActivity.java代码:

package com.example.addimagebutton;

import android.os.Bundle;
import android.app.Activity;
import android.widget.CompoundButton;
import android.widget.CompoundButton.OnCheckedChangeListener;
import android.widget.Toast;
import android.widget.ToggleButton;

public class MainActivity extends Activity {

    private ToggleButton tbSwitch;

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

        tbSwitch = (ToggleButton) findViewById(R.id.swButton);
        tbSwitch.setOnCheckedChangeListener(toggleListener);
    }

    OnCheckedChangeListener toggleListener = new OnCheckedChangeListener() {

        @Override
        public void onCheckedChanged(CompoundButton buttonView,
                boolean isChecked) {
            // TODO Auto-generated method stub
            if (isChecked) {
                Toast.makeText(getApplicationContext(), "On",
                        Toast.LENGTH_SHORT).show();
            } else {
                Toast.makeText(getApplicationContext(), "Off",
                        Toast.LENGTH_SHORT).show();
            }
        }
    };
}

这是activity_main.xml代码:

<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="fill_parent"
    android:layout_height="fill_parent"
    android:orientation="vertical" >

    <Switch
        android:id="@+id/swButton"
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:text="Switch"
        android:textOff="Off"
        android:textOn="On" />

</LinearLayout>

我尝试在没有侦听器对象的情况下运行此代码。(注释那些)但它给了我相同的结果。

4 个答案:

答案 0 :(得分:2)

您正在转换为切换按钮,因此它会为您提供ClassCastException ..

更改此

 <Switch
    android:id="@+id/swButton"
    android:layout_width="match_parent"
    android:layout_height="wrap_content"
    android:text="Switch"
    android:textOff="Off"
    android:textOn="On" />

<ToggleButton
    android:id="@+id/swButton"
    android:layout_width="match_parent"
    android:layout_height="wrap_content"
    android:text="Switch"
    android:textOff="Off"
    android:textOn="On" />

答案 1 :(得分:1)

使用ToggleButton代替Switch

   <ToggleButton
    android:id="@+id/swButton"
    android:layout_width="match_parent"
    android:layout_height="wrap_content"
    android:text="Switch"
    android:textOff="Off"
    android:textOn="On"" />

Becoz您的布局包含Switch,并使用ToggleButton投射它。那是错的

答案 2 :(得分:0)

switch更改为ToggleButton

   <ToggleButton 
        android:id="@+id/swButton"
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:text="Switch"
        android:textOff="Off"
        android:textOn="On" />

答案 3 :(得分:0)

在你的xml中你应该使用ToggleButton而不是Switch - 它应该是这样的:

<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:orientation="vertical" >

<ToogleButton
    android:id="@+id/swButton"
    android:layout_width="match_parent"
    android:layout_height="wrap_content"
    android:text="Switch"
    android:textOff="Off"
    android:textOn="On" />