gpt4 book ai didi

android - PackageManager 说设备没有 FEATURE_MIDI

转载 作者:行者123 更新时间:2023-11-30 00:08:12 25 4
gpt4 key购买 nike

如何编写一个 Android 应用程序来接收来 self 的 Yamaha YDP-113 电子钢琴的 MIDI 事件?

当我强制执行时,出现运行时错误:

FATAL EXCEPTION: main
Process: com.example.android.miditest, PID: 19022
java.lang.NoClassDefFoundError: android.media.midi.MidiManager

hasSystemFeature() 方法返回 false:

    if (getPackageManager().hasSystemFeature(PackageManager.FEATURE_MIDI)) {
// do MIDI stuff
Log.d("MainActivity-onCreate", "has MIDI feature");

TextView info = (TextView) findViewById(R.id.info_text_view);
info.setText("MIDI found!");

MidiManager m = (MidiManager) getSystemService(Context.MIDI_SERVICE);
}
else {
Log.d("MainActivity-onCreate", "cannot find MIDI feature");

TextView info = (TextView) findViewById(R.id.info_text_view);
info.setText("Sorry, no MIDI");
}

这是我的 list :

<uses-feature android:name="android.software.midi" android:required="true"/>
<uses-feature android:name="android.hardware.usb.host"/>

<application
android:allowBackup="true"
android:icon="@mipmap/ic_launcher"
android:label="@string/app_name"
android:roundIcon="@mipmap/ic_launcher_round"
android:supportsRtl="true"
android:theme="@style/AppTheme">
<activity android:name=".MainActivity">
<intent-filter>
<action android:name="android.intent.action.MAIN" />

<category android:name="android.intent.category.LAUNCHER" />
</intent-filter>
</activity>
</application>

我确信这一定是可能的,因为我安装了 AppsTransport 的“USB Midi 键盘”,它在 Google Play 商店中有 100,000 次下载。当我在 Yamaha YDP-113 上弹奏音符时,该应用程序会显示我按下的钢琴键盘琴键,甚至会发出声音!

其他开发者使用什么,使他们能够制作适用于我的键盘、我的 MIDI-USB 电缆和我的三星平板电脑的应用程序?我需要在手机上安装什么吗?或者我需要告诉 gradle 一些包或下载?

最佳答案

MidiManager仅适用于 Android 6+。类和相关功能在以前的版本中不存在,因此如果您在旧设备上运行该应用程序会出现错误。

如果您想支持 Android 6 之前的旧设备,您将不得不使用某种专有 SDK 或第三方库。

快速网络搜索表明 kshoji/USB-MIDI-Driver可能对你有帮助。

请注意,如果您指定

<uses-feature android:name="android.software.midi" android:required="true"/>

the app will not appear in the Play Store for old devices that do not support the MIDI API.

来源:https://developer.android.com/reference/android/media/midi/package-summary.html

您可能想要删除该行。

关于android - PackageManager 说设备没有 FEATURE_MIDI,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/48609977/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com