开发者

ADT import of android.media cannot be resolved

开发者 https://www.devze.com 2023-02-16 16:01 出处:网络
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:

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

精彩评论

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