我正在尝试javax.*
在我的 android 应用程序中导入一些类,但我在 Android Studio 中不断收到编译器错误。我正在使用 Ubuntu Linux 13.04。
这是我的进口:
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
我就是想不通这个问题。任何帮助都是极好的!