在 android usb 附件文档中,有 android manifest 的示例,其中 Activity 通过 intent-filter 捕获 USB_ACCESSORY_ATTACHED。我问自己,是否有可能通过 Service/IntentService 的意图过滤器捕捉到相同的意图?
编辑
我试过这个,但没有成功:
<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="com.entreprise.ws.main"
android:versionCode="1"
android:versionName="1.0" >
<uses-sdk android:minSdkVersion="10" />
<uses-permission android:name="android.permission.INTERNET" />
<uses-permission android:name="android.permission.ACCESS_NETWORK_STATE" />
<uses-permission android:name="android.permission.ACCESS_WIFI_STATE" />
<uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE" />
<application
android:icon="@drawable/ic_launcher"
android:label="@string/app_name"
>
<activity
android:name="com.entreprise.ws.main.WeatherStationClientActivity"
android:exported="true"
android:screenOrientation="portrait"
>
<!-- <intent-filter>
<action android:name="android.intent.action.MAIN" />
<category android:name="android.intent.category.LAUNCHER" />
</intent-filter> -->
</activity>
<activity android:name=".EntryPointActivity"
android:screenOrientation="portrait" >
<intent-filter>
<action android:name="android.intent.action.MAIN" />
<category android:name="android.intent.category.LAUNCHER" />
</intent-filter>
</activity>
<activity
android:name="com.entreprise.ws.main.WiFiListActivity"
android:label="@string/appname_wifilist" >
</activity>
<uses-library android:name="com.android.future.usb.accessory" />
<activity
android:screenOrientation="portrait"
android:name=".WSInstallatorActivity"
android:exported="true"
>
</activity>
<service class="services.MyService" android:name="services.MyService">
<intent-filter>
<action android:name="android.hardware.usb.action.USB_ACCESSORY_ATTACHED" />
<action android:name="android.hardware.usb.action.USB_ACCESSORY_DETACHED" />
</intent-filter>
<meta-data android:name="android.hardware.usb.action.USB_ACCESSORY_ATTACHED"
android:resource="@xml/accessory_filter" />
</service>
</application>
</manifest>
服务:
package services;
import android.app.Service;
import android.content.Intent;
import android.os.IBinder;
import android.util.Log;
import android.widget.Toast;
public class MyService extends Service {
final static String TAG = "MyService";
@Override
public void onCreate() {
super.onCreate();
Log.i("TAG", "onCreate");
Toast.makeText(this, "Service created...", Toast.LENGTH_LONG).show();
}
@Override
public void onDestroy() {
super.onDestroy();
Log.i("TAG", "onDestroy");
Toast.makeText(this, "Service destroyed...", Toast.LENGTH_LONG).show();
}
@Override
public IBinder onBind(Intent intent) {
Log.i("TAG", "onBind");
// TODO Auto-generated method stub
return null;
}
}
PS活动,这很好用
编辑2
我通过将意图过滤器和元数据移动到我的广播接收器来进行试验:我不再收到附加事件。有趣的是,我继续收到分离事件。尽管文档中有“广播动作”分类,但它看起来像 USB_ACCESSORY_ATTACHED 仅适用于活动。
EDIT3:最终结论
它看起来像 USB_ACCESSORY_ATTACHED只能在活动中被捕获(因为可能与用户对话?!)。分离事件可以在接收器中捕获。