我试图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
我只是想不通这个问题。任何帮助都是极好的!
qq_笑_17