开发者

ADT import of android.media cannot be resolved

i try create my first android application for android 2.1 api level 7 in ADT. I wrote the following line to the default view and eclipse says, that android.media cannot be resolved:

import android.media;

how开发者_JS百科 come, that this doesn't work?

thanks a lot


you cannot import android.media; because it is a package, try using:

import android.media.*;

or

import android.media.MediaPlayer; // if you want to import MediaPlayer
import android.media.Ringtone;    // if you want to import Ringtone
0

上一篇:

下一篇:

精彩评论

暂无评论...
验证码 换一张
取 消

最新问答

问答排行榜