javax.* 无法导入到我的安卓应用中?
2022-09-01 09:44:44
我正在尝试在我的Android应用程序中导入一些类,但我不断在Android Studio中遇到编译器错误。我使用的是 Ubuntu Linux 13.04。javax.*
这是我的进口:
import android.os.Bundle;
import android.app.Activity;
import android.view.Menu;
// Here are the imports I am having trouble with:
import javax.sound.sampled.AudioFormat;
import javax.sound.sampled.AudioSystem;
import javax.sound.sampled.SourceDataLine;
当我尝试运行应用程序甚至编译活动java文件时,我收到以下错误:
Gradle: error: package javax.sound.sampled does not exist
Gradle: error: package javax.sound.sampled does not exist
Gradle: error: package javax.sound.sampled does not exist
我只是无法弄清楚这个问题。任何帮助都会很棒!