过时毛豆

文章
6
资源
0
加入时间
3年0月21天

Setting up a Linux build environment

转:http://source.android.com/source/initializing.htmlSetting up a Linux build environmentThese instructions apply to all branches, including master.The Android build is routinely tested i

android 拨打紧急号码

对应拨打电话只需要调用ACTION_CALL加对应电话号码即可如下:void callPhone(){ Intent intent = new Intent(Intent.ACTION_CALL,Uri.parse("tel:110")); //不能调用呼叫 intent.setFlags(Intent.FLAG_ACTIVITY_N

FFMPEG for android

https://github.com/windsome/ffmpeg-android.git  为了能在android平台上播放全格式的多媒体文件,我们需要自己做一个多媒体播放器。android自带的opencore系统解码格式较少,只支持 mp4和ogg,并且结构不是很好理解。如果要加其他的解码方式实在太费劲。经过考虑,基于ffmpeg实现全功能的播放器比较容易并且成本比较低。(f...