1

スイッチを使いたい: http://developer.android.com/guide/topics/ui/controls/togglebutton.html

プロンプトが必要な Bluetooth のようなものを切り替えます。問題は、ユーザーがアクションを拒否した場合です。例に示されているように実行すると、ユーザーが拒否したため、Bluetooth デバイスがオフになっていても、トグルは「オン」と表示されます。ユーザーがプロンプトを受け入れる場合にのみスイッチを「オン」に表示し、それ以外の場合は「オフ」のままにする方法はありますか?

これは私がスイッチを使用しようとしているものです:

        Switch toggler = (Switch) findViewById(R.id.switch2);
    toggler.setOnCheckedChangeListener(new CompoundButton.OnCheckedChangeListener() {
        public void onCheckedChanged(CompoundButton buttonView, boolean isChecked) {
            if (isChecked) {
                // The toggle is enabled
                final Intent discoverableIntent = new Intent(BluetoothAdapter.ACTION_REQUEST_DISCOVERABLE);
                discoverableIntent.putExtra(BluetoothAdapter.EXTRA_DISCOVERABLE_DURATION, 0);
                startActivityForResult(discoverableIntent, DISCOVERABLE_REQUEST);
            } else {
                // The toggle is disabled
                final Intent stopDiscoverableIntent = new Intent(BluetoothAdapter.ACTION_REQUEST_DISCOVERABLE);
                stopDiscoverableIntent.putExtra(BluetoothAdapter.EXTRA_DISCOVERABLE_DURATION, 3);
                startActivityForResult(stopDiscoverableIntent,DISCOVERABLE_REQUEST);
            }
        }
    });

    public void onActivityResult(int req_code, int res_code, Intent data){

    System.out.println("Prior Check: " + res_code);

    if(req_code==REQUEST_ENABLE_BT){
        if(res_code==RESULT_OK){
            Toast.makeText(getBaseContext(),"Bluetooth is now turned ON",Toast.LENGTH_SHORT).show();
            System.out.println("BT Req.: " + res_code);
        }
        if(res_code==RESULT_CANCELED){
            Toast.makeText(getBaseContext(),"Bluetooth enable totally failed bru!",Toast.LENGTH_SHORT).show();
            System.out.println("BT Req.: " + res_code);
        }
    }
    else if(req_code==DISCOVERABLE_REQUEST){
        if (res_code==1){
            toggle = true;
            Toast.makeText(getBaseContext(),"Infinite discoverability enabled",Toast.LENGTH_SHORT).show();
            System.out.println("Disc. Req.: " + res_code);
        }
        if(res_code==3){
            toggle = false;
            Toast.makeText(getBaseContext(),"Discover mode ending",Toast.LENGTH_SHORT).show();
            System.out.println("Disc. Req.: " + res_code);
        }
        if(res_code==RESULT_CANCELED && toggle == true){
            Toast.makeText(getBaseContext(),"Discover mode ending denied",Toast.LENGTH_SHORT).show();
            System.out.println("Disc. Req.: " + res_code);
            //Switch sw = (Switch) findViewById(R.id.switch2);
            //sw.setChecked(false);
        }
        if(res_code==RESULT_CANCELED && toggle == false){
            Toast.makeText(getBaseContext(),"Infinite discoverability denied",Toast.LENGTH_SHORT).show();
            System.out.println("Disc. Req.: " + res_code);
            //Switch sw = (Switch) findViewById(R.id.switch2);
            //sw.setChecked(false);
        }
    }
}

ここでスイッチを押すと、ブルートゥースのプロンプトが表示されます。受け入れると、本来あるべきことを行いますが、拒否してもスイッチは切り替わらないので、そうしないでください。質問がより明確になったことを願っています。

4

1 に答える 1

1

以下を使用できます。

BluetoothAdapter mBluetoothAdapter = BluetoothAdapter.getDefaultAdapter();
if (mBluetoothAdapter != null) {
if (mBluetoothAdapter.isEnabled())
{

  //User accpeted keep toggle on or if off, programmatically turn on 
}

else
{
   //User rejected keep toggle off or if on, programmatically turn off
}

}
于 2015-05-11T12:06:12.877 に答える