0

検出可能な Bluetooth LE ビーコンを作成するだけの非常にシンプルなアプリを作成する必要があります。データを送信する必要はありません。私は AltBeacon lybrary を使用することを選択したので、AltBeacon lybrary が提供するサンプルの 1 つを使用してアプリを実装しました。それでも、実行java.lang.NullPointerException: Attempt to invoke virtual method 'void android.bluetooth.le.BluetoothLeAdvertiser.startAdvertising(android.bluetooth.le.AdvertiseSettings, android.bluetooth.le.AdvertiseData, android.bluetooth.le.AdvertiseCallback)' on a null object reference した両方のnullチェックで肯定的な結果が得られるとアプリがクラッシュするため、他に何ができるかわかりません。このライブラリで問題が発生した人はいますか?

以下のコードは、ここで入手できる例の 98% です。Android5.0を使用しています。

import android.support.v7.app.AppCompatActivity;
import android.os.Bundle;
import android.widget.Toast;

import org.altbeacon.beacon.Beacon;
import org.altbeacon.beacon.BeaconParser;
import org.altbeacon.beacon.BeaconTransmitter;

import java.util.Arrays;
import java.util.Timer;
import java.util.TimerTask;

public class MainActivity extends AppCompatActivity {

    BeaconTransmitter beaconTransmitter;
    Beacon beacon;

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

        beacon = new Beacon.Builder()
                .setId1("2f234454-cf6d-4a0f-adf2-f4911ba9ffa6")
                .setId2("1")
                .setId3("2")
                .setManufacturer(0x0118)
                .setTxPower(-59)
                .setDataFields(Arrays.asList(new Long[]{0l}))
                .build();

        if(beacon==null)
            Toast.makeText(getApplicationContext(), "NULL beacon", Toast.LENGTH_LONG).show();
        else
            Toast.makeText(getApplicationContext(), "OK beacon", Toast.LENGTH_LONG).show();

        BeaconParser beaconParser = new BeaconParser().setBeaconLayout("m:2-3=beac,i:4-19,i:20-21,i:22-23,p:24-24,d:25-25");
        beaconTransmitter = new BeaconTransmitter(getApplicationContext(), beaconParser);

        if(beaconTransmitter==null)
            Toast.makeText(getApplicationContext(), "NULL beacon trasmitter", Toast.LENGTH_LONG).show();
        else
            Toast.makeText(getApplicationContext(), "OK beacon trasmitter", Toast.LENGTH_LONG).show();

        Timer timer = new Timer();
        timer.schedule(new TimerTask() {
             @Override
            public void run() {
                beaconTransmitter.startAdvertising(beacon);
            }
        }, 5000);


    }
}
4

2 に答える 2

4

まず、デバイスのペリフェラル モードのサポートを確認する必要があります。このコードを使用すると役立ちます

BluetoothManager btManager = (BluetoothManager) getSystemService(BLUETOOTH_SERVICE);
            BluetoothAdapter btAdapter = btManager.getAdapter();
            if (btAdapter.isEnabled()) 
               boolean isSupported = btAdapter.isMultipleAdvertisementSupported()) ;
于 2015-11-21T14:33:23.983 に答える
0

これは古い投稿で、関係ないかもしれませんが、Bluetooth をオンにすることを忘れないでください。それが私にエラーを投げた理由でした!

于 2020-04-05T10:29:25.720 に答える