Android:设置蓝牙可发现性无限制

时间:2015-01-20 00:09:57

标签: android bluetooth android-bluetooth connectivity discoverability

我花了最近几天的时间尝试制作一款让我的三星Galaxy S3 mini(Android 2.1.4)在“无限”的时间内无法发现的应用。我的代码目前看起来如下:

package com.example.downtoone;

import android.app.Activity;
import android.os.Bundle;
import android.support.v4.content.LocalBroadcastManager;
import android.widget.Toast;

import com.example.downtoone.*;
import android.bluetooth.*;
import android.content.BroadcastReceiver;
import android.content.Context;
import android.content.Intent;
import android.content.IntentFilter;

public class MainActivity extends Activity {

    private BluetoothAdapter mBluetoothAdapter = null;

    // Intent request codes
    private static final int REQUEST_CONNECT_DEVICE = 1;
    private static final int REQUEST_ENABLE_BT = 2;
    private static final int REQUEST_ENABLE_DSC = 3;

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

        mBluetoothAdapter = BluetoothAdapter.getDefaultAdapter();
        if (mBluetoothAdapter == null) {
            Toast.makeText(this, "Bluetooth is not available", Toast.LENGTH_LONG).show();
            finish();
            return;
        }
    }   
    @Override
    public void onStart() {
        super.onStart();

        if (!mBluetoothAdapter.isEnabled()) {
            Intent MDisc = new Intent(BluetoothAdapter.ACTION_REQUEST_DISCOVERABLE);
            MDisc.putExtra(BluetoothAdapter.EXTRA_DISCOVERABLE_DURATION,0);
            startActivityForResult(MDisc, REQUEST_ENABLE_DSC);
        }
    }
    @Override
    public void onRestart(){
        super.onRestart();
    }
    @Override
    public void onResume() {
        super.onResume();
    }
    @Override
    public void onStop() {
        super.onStop();
    }
    @Override
    public void onDestroy() {
        super.onDestroy();
    }

    public void onActivityResult(int requestCode, int resultCode, Intent data) {
        switch (requestCode) {
        case REQUEST_CONNECT_DEVICE:
            if (resultCode == Activity.RESULT_OK) {

            }
            break;
        case REQUEST_ENABLE_BT:
            if (resultCode == Activity.RESULT_CANCELED) {
                Toast.makeText(this, "BLUETOOTH NEEDS TO BE ENABLED AND DISCOVERABLE", Toast.LENGTH_SHORT).show();
                finish();
            }
            break;
        case REQUEST_ENABLE_DSC:
            if (resultCode == Activity.RESULT_CANCELED) {
                Toast.makeText(this, "BLUETOOTH NEEDS TO BE ENABLED AND DISCOVERABLE", Toast.LENGTH_SHORT).show();
                //finish();
            }
            break;
        }
    }

    public void finishBTsetup(){

    }
}

尽管我将时间设置为“0”,但可发现性仅持续2分钟。这是相当令人沮丧的,因为我知道设备可以无限期地发现可以被发现! (我可以手动访问蓝牙设置并将蓝牙可见性设置为“永不超时”!)

我一直在寻找一个没有成功的答案......很多帖子都给出了(对于像我这样的相对不熟练的程序员)看起来像是太模糊(*),混淆(**)的神秘解决方案彻头彻尾的错。解决这个问题的一个简单直接的答案(如果它当然存在!)将不胜感激!

(*) Make Bluetooth on Android 2.1 discoverable indefinitely

(**) Extend Android Bluetooth Discoverability Android Application Bluetooth visibility duration(答案部分)

清单:

<?xml version="1.0" encoding="utf-8"?>
    <manifest xmlns:android="http://schemas.android.com/apk/res/android"
        package="com.example.downtoone"
        android:versionCode="1"
        android:versionName="1.0" >

        <uses-sdk
            android:minSdkVersion="14"
            android:targetSdkVersion="14" />
        <uses-permission android:name="android.permission.BLUETOOTH"/>
        <uses-permission android:name="android.permission.BLUETOOTH_ADMIN"/>
        <uses-permission android:name="android.permission.WRITE_SETTINGS" />  
        <uses-permission android:name="android.permission.WRITE_SECURE_SETTINGS" />


        <application
            android:allowBackup="true"
            android:icon="@drawable/ic_launcher"
            android:label="@string/app_name"
            android:theme="@style/AppTheme" >
            <activity
                android:name=".MainActivity"
                android:label="@string/app_name">
                <intent-filter>
                    <action android:name="android.intent.action.MAIN" />

                    <category android:name="android.intent.category.LAUNCHER" />
                </intent-filter>
            </activity>
        </application>

    </manifest>

修改 为了给人们一点上下文,这个应用程序的目标之一是尝试发现附近的所有蓝牙设备,以便它可以直接与他们交谈。由于大多数智能手机可以在短时间内发现(通常为2分钟*),并且只有当用户直接启用可发现性(=可见性)时才能发现,扫描设备并自动交换数据的应用程序无法实现。 (*用户通常可以将可见性设置为“No Time Out”,但这需要用户直接在智能手机的Bluetooth设置下设置该选项,这不是一个非常优雅的解决方案......)

6 个答案:

答案 0 :(得分:2)

我在三种设备上得出了相同的结论。

  • ANDROID v 4.3及更高版本:EXTRA_DISCOVERABLE_DURATION 0无限制
  • ANDROIND v 4.1:EXTRA_DISCOVERABLE_DURATION 0最多1小时。必须手动更改参数无限制。

答案 1 :(得分:1)

以上api等级14 EXTRA_DISCOVERABLE_DURATION 0适用于无限限制但低于此值则最多可使用1小时。

此代码适用于我

Intent intent = new Intent(BluetoothAdapter.ACTION_REQUEST_DISCOVERABLE);
intent.putExtra(BluetoothAdapter.EXTRA_DISCOVERABLE_DURATION, 0);
startActivityForResult(intent, Utils.REQUEST_DEVICE_DISCOVERABLE);

答案 2 :(得分:0)

根据Android文档,可发现的最长时间限制为300秒。你无法让BT永远被发现。

请参阅: http://developer.android.com/reference/android/bluetooth/BluetoothAdapter.html#ACTION_REQUEST_DISCOVERABLE

为了获得300秒的最大周期,您需要将一行代码更改为:

MDisc.putExtra(BluetoothAdapter.EXTRA_DISCOVERABLE_DURATION,300)

答案 3 :(得分:0)

我不确定这是否适合您的应用程序,或者是否有其他原因导致您不想这样做,但为什么不发现默认时间,然后在超时时重新启动发现?通过这种方式,它在技术上将是一个无限的发现,只会在两者之间触发非常轻微的暂停,我在我的应用程序中使用广播接收器使用此方法。

我在onStart()方法中放置startDiscovery()以在活动开始时触发发现,然后在广播接收器的onReceive()方法中侦听ACTION_DISCOVERY_FINISHED,这里再次调用startDiscovery()。

这将永远循环发现,如果你想在你找到一个设备时停止然后在接收者的ACTION_FOUND监听器中调用cancelDiscovery(),你也可以在这里找一些检查,如果你需要找到一个特定的设备 - 再次在我的我正在检查特定设备的mac地址,因此发现将一直持续到找到它为止。

不确定这是否有用,但如果您需要更多详细信息,请告诉我。

答案 4 :(得分:0)

我得出的结论是,除非用户转到蓝牙&gt;否则无法完成。设置&gt;可见性超时并相应地设置超时。

和平。

答案 5 :(得分:0)

对我有用。

Intent enableBtIntent = new Intent(BluetoothAdapter.ACTION_REQUEST_DISCOVERABLE);
enableBtIntent.putExtra(BluetoothAdapter.EXTRA_DISCOVERABLE_DURATION, 0);
startActivityForResult(enableBtIntent, Utils.REQUEST_DEVICE_DISCOVERABLE);

手动禁用蓝牙,然后运行代码。它会起作用,是的。