所以我对android开发很新,并且很快就遇到了问题,我有一个视图,我想启用/禁用设备的蓝牙和wifi,虽然两者都是通过一个单独的开关来控制的。
所以这就是我的观点:
<?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_connect"
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="nl.neverdull.payleven.safeport.Connect">
<Switch
android:text="Bluetooth"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_alignParentTop="true"
android:id="@+id/bluetooth_switch"
android:layout_alignParentLeft="true"
android:layout_alignParentStart="true"
android:layout_alignParentRight="true"
android:layout_alignParentEnd="true"
tools:text="bluetooth"
android:contentDescription="Status of bluetooth"
android:textOn="@string/bluetooth_on"
android:textOff="@string/bluetooth_off" />
<Switch
android:text="Wifi"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_alignParentLeft="true"
android:layout_alignParentStart="true"
android:layout_marginTop="25dp"
android:id="@+id/wifi_switch"
android:layout_alignParentRight="true"
android:layout_alignParentEnd="true"
tools:text="wifi" />
</RelativeLayout>
现在我已经为蓝牙工作了,我按照以下方式进行操作
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_connect);
blueToothStatus();
wifiStatus();
}
public void blueToothStatus() {
Switch s = (Switch) findViewById(R.id.bluetooth_switch);
if (s != null) {
s.setOnCheckedChangeListener(this);
}
}
public void onCheckedChanged(CompoundButton buttonView, boolean isChecked) {
BluetoothAdapter mBluetoothAdapter = BluetoothAdapter.getDefaultAdapter();
mBluetoothAdapter = BluetoothAdapter.getDefaultAdapter();
Toast.makeText(this, "Bluetooth " + (isChecked ? "enabled" : "disabled"),
Toast.LENGTH_SHORT).show();
if(isChecked) {
mBluetoothAdapter.enable();
} else {
mBluetoothAdapter.disable();
}
}
现在当我尝试为wifi做同样的事情时,它最终会使用相同的onCheckedChanged
函数,所以我的理想解决方案是如何让wifi使用它自己的onCheckedChanged函数?
截至目前,我基本上与WIFI和蓝牙的代码完全相同,但它不会起作用,因为它们最终都会转到相同的功能,这使我的wifi开关改变了蓝牙状态。
public void wifiStatus() {
Switch s = (Switch) findViewById(R.id.wifi_switch);
s.setOnCheckedChangeListener(this);//This goes to my onCheckedChanged
}
答案 0 :(得分:1)
public void wifiStatus() {
Switch s = (Switch) findViewById(R.id.wifi_switch);
s.setOnCheckedChangeListener(new CompoundButton.OnCheckedChangeListener() {
@Override
public void onCheckedChanged(CompoundButton buttonView, boolean isChecked) {
// do what you need to do
}
});
}