前提・実現したいこと
現在mbedとandroidをUSBケーブルで接続して、シリアル通信を行うアプリを開発しています。
その前段階として、android端末にusbデバイスが接続されたら"unconnected"の表示を"connected"に変化させるアプリを書いています。
発生している問題
現在問題なのは、どうやらUsbManagerのgetDeviceListが常にnullで返されているらしいということです。
アプリをインスチールした後、アプリを開いて"unconnecred"になっていることが確認できます。
その後再びpcと繋いでみても表示が"connected"になりません。
該当のソースコード
MainActivity.java
java
1package com.example.pilot_display; 2 3import androidx.appcompat.app.AppCompatActivity; 4 5import android.app.PendingIntent; 6import android.content.Intent; 7import android.graphics.Color; 8import android.hardware.usb.UsbDevice; 9import android.hardware.usb.UsbManager; 10import android.os.Bundle; 11import android.util.Log; 12import android.widget.TextView; 13import android.widget.Toast; 14 15import java.util.HashMap; 16 17public class MainActivity extends AppCompatActivity { 18 19 UsbDevice musbdevice; 20 UsbManager musbmanager; 21 @Override 22 protected void onCreate(Bundle savedInstanceState) { 23 super.onCreate(savedInstanceState); 24 setContentView(R.layout.activity_main); 25 } 26 27 public void onResume(){ 28 super.onResume(); 29 musbmanager = (UsbManager)getSystemService(USB_SERVICE); 30 TextView checker = (TextView)findViewById(R.id.check); 31 boolean judge = ConnectCheck(checker); 32 if(judge) { 33 if (!musbmanager.hasPermission(musbdevice)) { 34 musbmanager.requestPermission(musbdevice, PendingIntent.getBroadcast(MainActivity.this, 0, new Intent("com.example.pilot_display.USB_PERMISSION"), 0)); 35 } 36 } 37 38 } 39 40 public void onPause() { 41 super.onPause(); 42 musbdevice = null; 43 } 44 45 private boolean ConnectCheck(TextView checker){ 46 HashMap<String, UsbDevice> deviceList = musbmanager.getDeviceList(); 47 48 if(deviceList.isEmpty()){ 49 Log.d("hello","hello"); 50 Toast toast = Toast.makeText(MainActivity.this,"hello",Toast.LENGTH_LONG); 51 toast.show(); 52 checker.setText("unconnected"); 53 checker.setTextColor(Color.RED); 54 return false; 55 } 56 else{ 57 checker.setText("connected"); 58 Toast toast = Toast.makeText(MainActivity.this,"goodbye",Toast.LENGTH_LONG); 59 toast.show(); 60 checker.setTextColor(Color.GREEN); 61 return true; 62 } 63 } 64}
AndroidManifest.xml
xml
1<?xml version="1.0" encoding="utf-8"?> 2<manifest xmlns:android="http://schemas.android.com/apk/res/android" 3 package="com.example.pilot_display"> 4 5 <application 6 android:allowBackup="true" 7 android:icon="@mipmap/ic_launcher" 8 android:label="@string/app_name" 9 android:roundIcon="@mipmap/ic_launcher_round" 10 android:supportsRtl="true" 11 android:theme="@style/Theme.AppCompat"> 12 <activity android:name=".MainActivity"> 13 <intent-filter> 14 <action android:name="android.intent.action.MAIN" /> 15 16 <category android:name="android.intent.category.LAUNCHER" /> 17 </intent-filter> 18 <intent-filter> 19 <action android:name="android.hardware.usb.action.USB_DEVICE_ATTACHED" /> 20 </intent-filter> 21 </activity> 22 23 </application> 24 <uses-feature android:name="android.hardware.usb.host"/> 25</manifest>
試したこと
MainActivity.java内の関数ConnectCheck内でlogとtoastを試しました(上記ソースコードに残っています)が、間違いなくここまでは動作しています。
elseでもlogを飛ばしましたが、やはりここに条件分岐は来ていないようです。
補足情報(FW/ツールのバージョンなど)
android端末はXperia8、androidバージョンは9です。
###追記(2020/2/14)
他の方からmusbmanagerがnullになっていないかとご指摘を受けましたが、以下のコードを追加したところnullではないことを確認しました。
java
1if(mUsbManager!=null){ 2 Toast toast=Toast.makeText(this,"hello",Toast.LENGTH_LONG); 3 toast.show(); 4}
回答1件
あなたの回答
tips
プレビュー
バッドをするには、ログインかつ
こちらの条件を満たす必要があります。