如何以编程方式更改开关的状态[Android]

时间:2019-01-29 16:05:19

标签: android android-studio android-widget

我必须切换A和B。我想每当我点击开关A时,它将改变B的状态,反之亦然。 如何在Android Studio中做到这一点?

这是我的开关代码

    //first switch
        flw_Rate_switch.setOnCheckedChangeListener(new CompoundButton.OnCheckedChangeListener() {


            @Override
            public void onCheckedChanged(CompoundButton buttonView, boolean isChecked) {
                if (isChecked) {

}...


//2nd switch
        lqd_followed_switch.setOnCheckedChangeListener(new CompoundButton.OnCheckedChangeListener() {

            @Override
            public void onCheckedChanged(CompoundButton buttonView, boolean isChecked) {
                if (isChecked) {


}...

2 个答案:

答案 0 :(得分:0)

首先,您需要定义开关:

Switch a; // define your switch
Switch b;

开关可以在点击时自行打开或关闭,因此我们需要告诉他们切换其他开关:

a.setOnClickListener(
     new View.OnClickListener() {
         @Override
         public void onClick(View view) {
               b.setChecked(!b.isChecked);
         }
      });
b.setOnClickListener(
     new View.OnClickListener() {
         @Override
         public void onClick(View view) {
               a.setChecked(!a.isChecked);
         }
      });

在onClick方法中,我们告诉开关用户是否单击了开关,将另一个开关的检查状态设置为反向,换句话说,我们告诉他们另一个开关是否关闭,将其打开,如果打开,则将其打开。 setChecked 方法执行此操作。然后,该参数表示反转开关状态。

答案 1 :(得分:0)

File-activity_main.xml

<?xml version="1.0" encoding="utf-8"?>
<android.support.constraint.ConstraintLayout 
    xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:app="http://schemas.android.com/apk/res-auto"
    xmlns:tools="http://schemas.android.com/tools"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    tools:context="com.example.hina.myapplication.MainActivity">


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

        <LinearLayout
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:id="@+id/container" >

            <Button
                android:id="@+id/on1"
                android:layout_width="wrap_content"
                android:layout_height="wrap_content"
                android:layout_alignParentBottom="true"
                android:text="ON" />

            <Button
                android:id="@+id/on2"
                android:layout_width="wrap_content"
                android:layout_height="wrap_content"
                android:layout_alignParentBottom="true"
                android:layout_toRightOf="@+id/testbutton"
                android:text="OFF"/>
        </LinearLayout>

        <ListView android:layout_width="fill_parent"
            android:layout_height="fill_parent"
            android:id="@+id/LstPeriodOptions"
            android:layout_alignParentTop="true"
            android:layout_above="@id/container" />

    </RelativeLayout>

</android.support.constraint.ConstraintLayout>

File-MainActivity.java

package com.example.hina.myapplication;
import android.app.Activity;
import android.support.v7.app.AppCompatActivity;
import android.os.Bundle;
import android.view.View;
import android.widget.Button;

import static com.example.hina.myapplication.R.id.on2;

public class MainActivity extends Activity implements View.OnClickListener {
    Button on1;
    Button off1;

    @Override
    protected void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);
        setContentView(R.layout.activity_main);
         on1= (Button) findViewById(R.id.on1);
         off1= (Button) findViewById(on2);
        on1.setOnClickListener(this);
        off1.setOnClickListener(this);
    }

    @Override
    public void onClick(View v) {
        if (on1.isPressed()){
            on1.setEnabled(false);
            off1.setEnabled(true);
        }
        else if (off1.isPressed()){
            off1.setEnabled(false);
            on1.setEnabled(true);
        }

    }
}