8

まず、英語が下手で申し訳ありません。私はスペイン語です(Android開発は初めてです)。私は単純なBluetoothファイル送信機を開発しています。BluetoothChatandroidの例に段階的に基づいています。

これで、ユーザーへのBluetoothアクティベーション要求があり、[はい]または[いいえ]オプションを選択すると、アプリケーションがクラッシュします。

マニフェストで宣言された権限があります。

つまり、ユーザーが[はい]を選択してBluetoothをアクティブにすると、Bluetoothは実際にアクティブになりますが、その後もアプリがクラッシュします。

ACRAがこれと競合しているかどうかはわかりませんが、miデバイスがhuawei u8650であり、Eclipseからデバイスで直接アプリを実行するusbドライバーが見つからないため、使用しています。そのため、.apkファイルを毎回移動します。 SDカードへの時間。

マニフェストは次のとおりです。

<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
    package="com.BTSender"
    android:versionCode="1"
    android:versionName="1.0" >
    <uses-sdk android:minSdkVersion="10" />    
    <uses-permission android:name="android.permission.BLUETOOTH"/>
    <uses-permission android:name="android.permission.INTERNET"/>
    <uses-permission android:name="android.permission.BLUETOOTH_ADMIN"/>
    <application
        android:icon="@drawable/ic_launcher"
        android:label="@string/app_name" android:name="MyApplication">
        <activity
            android:name=".BluetoothSenderActivity"
            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>

そしてここに主な(そして唯一の)活動があります:

package com.BTSender;

import android.app.Activity;
import android.bluetooth.BluetoothAdapter;
import android.content.Intent;
import android.os.Bundle;
import android.util.Log;
import android.widget.Toast;

public class BluetoothSenderActivity extends Activity {

    private BluetoothAdapter BTAdapter;
    private String TAG = "BTSender";
    private final int REQUEST_ENABLE_BT = 2;

    @Override
    public void onCreate(Bundle savedInstanceState) {
        // Creating window layout
        Log.v(TAG, "**Creating window**");
        super.onCreate(savedInstanceState);
        setContentView(R.layout.main);
        Log.v(TAG, "**Window created");
        // Get the bluetooth adapter
        BTAdapter = BluetoothAdapter.getDefaultAdapter();
        // If null, that means bluetooth is not supported on the device
        if (BTAdapter == null) {
            Toast.makeText(this, R.string.BluetoothNotSupported,
                Toast.LENGTH_LONG).show();
            finish();
            return;
        }
    }

    @Override
    public void onStart() {
        // Check if Bluetooth is enabled, otherwise request user to enable it
        if (!BTAdapter.isEnabled()) {
            // IT NEEDS BLUETOOTH PERMISSION
            // Intent to enable bluetooth, it will show the enable bluetooth
            // dialog
            Intent enableIntent = new Intent(
                    BluetoothAdapter.ACTION_REQUEST_ENABLE);
            // this is to get a result if bluetooth was enabled or not
            startActivityForResult(enableIntent, REQUEST_ENABLE_BT);
            // It will call onActivityResult method to determine if Bluetooth
            // was enabled or not
        } else {
            // Bluetooth is enabled
        }
    }

    // this will be called when in onStart method startActivityForResult is
    // executed
    public void onActivityResult(int requestCode, int resultCode, Intent data) {
        Log.v(TAG, "** onActivityResult **");
        // determine from which activity
        switch (requestCode) {
        // if it was the request to enable Bluetooth:
        case REQUEST_ENABLE_BT:
            if (resultCode == Activity.RESULT_OK) {
                // Bluetooth is enabled now
                Log.v(TAG, "** Bluetooth is now enabled**");
            } else {
                // user decided not to enable Bluetooth so exit application
                Log.v(TAG, "** Bluetooth is NOT enabled**");
                Toast.makeText(this, R.string.BluetoothNotEnabled,
                    Toast.LENGTH_LONG).show();
                finish();
            }
        }
    }
}

最近Stackoverflowで回答を読みましたが、これが私の最初の質問です。どんな答えでもいただければ幸いです。また、私の開発を改善するためのヒント。前もって感謝します!

java.lang.RuntimeException: Unable to start activity      
ComponentInfo{com.BTSender/com.BTSender.BluetoothSenderActivity}:  
java.lang.SecurityException: Need BLUETOOTH permission: Neither user 10076 nor current 
process has android.permission.BLUETOOTH.
    at android.app.ActivityThread.performLaunchActivity(ActivityThread.java:1654)
    at android.app.ActivityThread.handleLaunchActivity(ActivityThread.java:1670)
    at android.app.ActivityThread.access$1500(ActivityThread.java:117)
    at android.app.ActivityThread$H.handleMessage(ActivityThread.java:931)
    at android.os.Handler.dispatchMessage(Handler.java:99)
    at android.os.Looper.loop(Looper.java:123)
    at android.app.ActivityThread.main(ActivityThread.java:3695)
    at java.lang.reflect.Method.invokeNative(Native Method)
    at java.lang.reflect.Method.invoke(Method.java:507)
    at com.android.internal.os.ZygoteInit$MethodAndArgsCaller.run(ZygoteInit.java:842)
    at com.android.internal.os.ZygoteInit.main(ZygoteInit.java:600)
    at dalvik.system.NativeStart.main(Native Method)
Caused by: java.lang.SecurityException: Need BLUETOOTH permission: Neither user 10076    
nor current process has android.permission.BLUETOOTH.
    at android.os.Parcel.readException(Parcel.java:1322)
    at android.os.Parcel.readException(Parcel.java:1276)
    at android.bluetooth.IBluetooth$Stub$Proxy.isEnabled(IBluetooth.java:496)
    at android.bluetooth.BluetoothAdapter.isEnabled(BluetoothAdapter.java:351)
    at com.BTSender.BluetoothSenderActivity.onStart(BluetoothSenderActivity.java:51)
    at android.app.Instrumentation.callActivityOnStart(Instrumentation.java:1129)
    at android.app.Activity.performStart(Activity.java:3791)
    at android.app.ActivityThread.performLaunchActivity(ActivityThread.java:1627)
    ... 11 more
java.lang.SecurityException: Need BLUETOOTH permission: Neither user 10076 nor current   
process has android.permission.BLUETOOTH.
    at android.os.Parcel.readException(Parcel.java:1322)
    at android.os.Parcel.readException(Parcel.java:1276)
    at android.bluetooth.IBluetooth$Stub$Proxy.isEnabled(IBluetooth.java:496)
    at android.bluetooth.BluetoothAdapter.isEnabled(BluetoothAdapter.java:351)
    at com.BTSender.BluetoothSenderActivity.onStart(BluetoothSenderActivity.java:51)
    at android.app.Instrumentation.callActivityOnStart(Instrumentation.java:1129)
    at android.app.Activity.performStart(Activity.java:3791)
    at android.app.ActivityThread.performLaunchActivity(ActivityThread.java:1627)
    at android.app.ActivityThread.handleLaunchActivity(ActivityThread.java:1670)
    at android.app.ActivityThread.access$1500(ActivityThread.java:117)
    at android.app.ActivityThread$H.handleMessage(ActivityThread.java:931)
    at android.os.Handler.dispatchMessage(Handler.java:99)
    at android.os.Looper.loop(Looper.java:123)
    at android.app.ActivityThread.main(ActivityThread.java:3695)
    at java.lang.reflect.Method.invokeNative(Native Method)
    at java.lang.reflect.Method.invoke(Method.java:507)
    at com.android.internal.os.ZygoteInit$MethodAndArgsCaller.run(ZygoteInit.java:842)
    at com.android.internal.os.ZygoteInit.main(ZygoteInit.java:600)
    at dalvik.system.NativeStart.main(Native Method)

それが役立つ場合。アプリをインストールすると、インターネット、bluetooth、bluetooth_adminの3つのアクセス許可が表示され、BluetoothAdapter.getDefaultAdapter()が実行されます。問題なく、Bluetoothリクエストのインテントを実行しますが、アプリがクラッシュしたときにonActivityResultが機能するようになると、アプリがBluetooth権限を失ったように見えますが、それは奇妙なことです。

4

2 に答える 2

11

両方が必要です

 <uses-permission android:name="android.permission.BLUETOOTH" />
 <uses-permission android:name="android.permission.BLUETOOTH_ADMIN" />

<permission android:name="android.permission.BLUETOOTH" android:label="BLUETOOTH" />
<permission android:name="android.permission.BLUETOOTH_ADMIN" />

の宣言AndroidManifest.xml

于 2013-08-19T20:49:26.073 に答える
1

OK、問題を見つけました。理由はわかりませんが、ACRAは、アプリにBluetooth権限がなく、アプリにBluetooth権限があると言っていたため、間違ったメッセージを送信していました。

新しいプロジェクトを作成してファイルをコピーすると、ACRAはonStartメソッドにsuper.onStart()がないと言いました。

追加して問題を修正しました!。

于 2013-10-11T12:48:33.560 に答える