当前位置: 编程技术>移动开发
本页文章导读:
▪有用的学识链接 有用的知识链接
有用的知识链接【布局架构】Android 动态加载布局http://www.mobpub.net/viewthread.php?tid=5817在线源码:http://hi-android.info/src/
......
▪ 记要来电 记录来电
public class MyCLass extends BroadcastReceiver {
// functions here
}
<receiver android:name="MyClass">
<intent-filter>
<action android:name="android.intent.a.........
▪ 判断是不是有sdcard 判断是否有sdcard
判断是否有sdcard插入:
Java代码
public boolean avaiableMedia(){
String status=Environment.getExternalStorageState();
if(status.equals(Environmen.........
[1]有用的学识链接
来源: 互联网 发布时间: 2014-02-18
有用的知识链接
【布局架构】Android 动态加载布局
http://www.mobpub.net/viewthread.php?tid=5817
在线源码:http://hi-android.info/src/
有用的知识链接
【布局架构】Android 动态加载布局
http://www.mobpub.net/viewthread.php?tid=5817
在线源码:http://hi-android.info/src/
[2] 记要来电
来源: 互联网 发布时间: 2014-02-18
记录来电
public class MyCLass extends BroadcastReceiver { // functions here }
<receiver android:name="MyClass"> <intent-filter> <action android:name="android.intent.action.ANSWER">/action> </intent-filter> </receiver>
[3] 判断是不是有sdcard
来源: 互联网 发布时间: 2014-02-18
判断是否有sdcard
public boolean avaiableMedia(){
String status=Environment.getExternalStorageState();
if(status.equals(Environment.MEDIA_MOUNTED)){
return true;
}
else {
return false;
}
}
判断是否有sdcard插入:
Java代码
true: 有
false: 无
最新技术文章: