Android 中如何使用togglebutton

来源:爱站网时间:2020-11-16编辑:网友分享
togglebutton是一个网络开关按钮,那么你知道要怎样才能正确使用togglebutton吗?接下来的内容中就让小编为大家介绍在Android 中如何使用togglebutton。

togglebutton是一个网络开关按钮,那么你知道要怎样才能正确使用togglebutton吗?接下来的内容中就让小编为大家介绍在Android 中如何使用togglebutton。

ToggleButton的状态只能是选中和未选中,并且需要为不同的状态设置不同的显示文本。

以下案例为ToggleButton的用法

目录结构

main.xml布局文件

 


    android:orientation="vertical"
    android:layout_width="fill_parent"
    android:layout_height="fill_parent">
            android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:src="@drawable/bulb_off"
        android:layout_gravity="center_horizontal" />
            android:layout_width="140dip"
        android:layout_height="wrap_content"
        android:textOn="开灯"
        android:textOff="关灯"
        android:layout_gravity="center_horizontal" />


ToggleButtonActivity类

 

 

 


package com.ljq.tb;

 


 

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

public class ToggleButtonActivity extends Activity {
    private ImageView imageView=null;
    private ToggleButton toggleButton=null;

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

        imageView=(ImageView) findViewById(R.id.imageView);
        toggleButton=(ToggleButton)findViewById(R.id.toggleButton);
        toggleButton.setOnCheckedChangeListener(new OnCheckedChangeListener(){

            public void onCheckedChanged(CompoundButton buttonView,
                    boolean isChecked) {
                toggleButton.setChecked(isChecked);
                imageView.setImageResource(isChecked?R.drawable.bulb_on:R.drawable.bulb_off);
            }

        });
    }
}

 

运行效果:

上文就是小编为大家介绍Android 中如何使用togglebutton的内容,大家都了解清楚了吗?后续爱站技术频道小编会为大家继续扩充知识,大家一起收藏起来吧!

上一篇:Android中如何用sax解析xml文件

下一篇:Android开发中实现高仿发射器的效果展示

您可能感兴趣的文章

相关阅读

热门软件源码

最新软件源码下载