2

USB 経由で Android 4.0 タブレットに接続された USB プリンターにコマンドを送信する簡単なアプリを作成しました。何らかの理由で、インターフェイスを要求して接続を開くためのアクセス許可を取得できません。関連するコードは次のとおりです。

public class TestPrintActivity extends Activity {

private UsbManager mUsbManager;
private UsbDevice mDevice;
private UsbDeviceConnection mConnection;
private UsbInterface mInterface;
private UsbEndpoint mBulkIn;
private UsbEndpoint mBulkOut;
private static final String ACTION_USB_PERMISSION =
        "com.demo.xprinter.USB_PERMISSION";
private PendingIntent mPermissionIntent;
private BroadcastReceiver mUsbReceiver; 

@Override

private static final String ACTION_USB_PERMISSION =
        "com.demo.printerDemo.USB_PERMISSION";



protected void onCreate(Bundle savedInstanceState) {
    super.onCreate(savedInstanceState);
    setContentView(R.layout.activity_test_print);

    mUsbManager = (UsbManager)getSystemService(Context.USB_SERVICE);

    mPermissionIntent = PendingIntent.getBroadcast(this, 0, new Intent(ACTION_USB_PERMISSION), 0);
    IntentFilter filter = new IntentFilter(ACTION_USB_PERMISSION);
    filter.addAction(UsbManager.ACTION_USB_ACCESSORY_DETACHED);
    filter.addAction(UsbManager.ACTION_USB_ACCESSORY_ATTACHED);
    registerReceiver(mUsbReceiver, filter);

    mUsbReceiver = new BroadcastReceiver() {

        public void onReceive(Context context, Intent intent) {

            String action = intent.getAction();
            if (ACTION_USB_PERMISSION.equals(action)) {
                synchronized (this) {
                    UsbDevice device = (UsbDevice)intent.getParcelableExtra(UsbManager.EXTRA_DEVICE);

                    if (intent.getBooleanExtra(UsbManager.EXTRA_PERMISSION_GRANTED, false)) {
                        if(device != null){
                          //call method to set up device communication
                            openPort(device);
                       }
                    } 
                    else {
                        Toast.makeText(getApplicationContext(), "Denied!", Toast.LENGTH_SHORT).show();
                    }
                }
            }
        }
    };

}

public void onResume() {
    super.onResume();

    HashMap<String,UsbDevice> deviceList = mUsbManager.getDeviceList();

    for (HashMap.Entry<String,UsbDevice> entry : deviceList.entrySet()) {
          UsbDevice aDevice = entry.getValue();
          if ((aDevice.getProductId() == 8965) && (aDevice.getVendorId() == 1659) ){

              if (mUsbManager.hasPermission(aDevice))
                openPort(aDevice);
              else
                mUsbManager.requestPermission(aDevice, mPermissionIntent);
              break;
          }
        }


}

マニフェストの関連部分は次のとおりです。

<manifest xmlns:android="http://schemas.android.com/apk/res/android"
    package="com.demo.printerDemo"
    android:versionCode="1"
    android:versionName="1.0" >

<uses-sdk
    android:minSdkVersion="14"
    android:targetSdkVersion="17" />
<uses-feature android:name="android.hardware.usb.host"/>

プリンターが接続されるたびにアプリを起動するようにデバイスを構成し、列挙 (onResume()) 中にデバイスが検出され、許可の要求が呼び出されます。ただし、何らかの理由で、「アクセス許可の要求」ダイアログは表示されず (オンラインでスクリーンショットを見たことがあります)、onReceive() が呼び出されることもありません。なぜこれが起こっているのでしょうか?

4

2 に答える 2

1

そのため、/system/ の SystemUI.apk/SystemUI.odex がそれぞれ SystemUI.apk.backup/SystemUI.odex.backup に変更されていることがわかりました。これはおそらく、システム UI の一部がデバイスの意図した「キオスク」モードを台無しにするのを防ぐためでした。以前のコメントの logcat エントリが大きな手がかりでした。ファイル名が復元されると、[アクセス許可] ダイアログが表示されるようになりました。

于 2013-01-13T06:27:34.253 に答える
1

1) ACTION_USB_PERMISSION が宣言されているメンバーが 2 つあるのはなぜですか?

2) onCreate() で、このようにインテントを登録してみてください。違いがあるかもしれません:

IntentFilter filter = new IntentFilter();
filter.addAction(UsbManager.ACTION_USB_DEVICE_ATTACHED);
filter.addAction(UsbManager.ACTION_USB_DEVICE_DETACHED);
    filter.addAction(ACTION_USB_PERMISSION);
context.registerReceiver(usbReceiver, filter);

3) Android のバグ (http://code.google.com/p/android/issues/detail?id=25703) のため、ACTION_USB_ACCESSORY_ATTACHED アクションが呼び出されるかどうかはわかりません。追加してみるthe below in your AndroidManifest.xml:

    <activity ...>
 <intent-filter >
                <action android:name="android.intent.action.MAIN" />                
                <action android:name="android.hardware.usb.action.USB_DEVICE_ATTACHED" />
                <action android:name="android.hardware.usb.action.USB_DEVICE_DETACHED" />
                <meta-data android:name="android.hardware.usb.action.USB_DEVICE_ATTACHED" android:resource="@xml/device_filter"/>
                <category android:name="android.intent.category.HOME" />
                <category android:name="android.intent.category.LAUNCHER" />
            </intent-filter>
</activity>
于 2013-01-11T22:46:27.413 に答える