使用幻灯片创建开/关按钮

时间:2014-03-26 09:19:18

标签: android

我想用幻灯片创建开/关按钮。 我正在使用这个技术:

我把按钮放在相同的位置,一个是可见的,另一个是隐藏的。 当我点击其中一个时,出现了另一个按钮,点击消失了。

现在如何使该按钮可以滑动。

这是按钮: enter image description here

我该怎么做?

2 个答案:

答案 0 :(得分:0)

this link may help you。有你想要的按钮示例代码

答案 1 :(得分:0)

尝试使用Switch但是,如果你对minSdkVersion> = 14没问题。

希望以下代码可以帮助您。

在Layout Xml中创建一个开关,如:

<Switch
     android:id="@+id/on_off_switch"
     android:layout_width="wrap_content"
     android:layout_height="wrap_content"
     android:textOff="OFF"
     android:textOn="ON"/>

然后在您的活动中获取布局和设置侦听器的切换,如下所示,

Switch onOffSwitch = (Switch)  findViewById(R.id.on_off_switch); 
onOffSwitch.setOnCheckedChangeListener(new OnCheckedChangeListener() {

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