DASOU

导航

10 2013 档案

项目总结
摘要:1、去除Activity中的标题条时,需要在AndroidManifest.xml文件中 "2、当拨打某个号码时,手机自动进入该软件的某个界面(广播机制) callPhoneReceiver.javapackage com.example.mobilesafe.receiver;import com.example.mobilesafe.ui.voidPhoneLost;import android.content.BroadcastReceiver;import android.content.Context;import android.content.Intent;public 阅读全文

posted @ 2013-10-31 22:32 DASOU 阅读(273) 评论(0) 推荐(0)

基本技术
摘要:下载时显示进度条在文件下载处理业务类中 1 public File getFile(String path,String filePath,ProgressDialog pd)throws Exception{ 2 URL url=new URL(path); 3 HttpURLConnection conn=(HttpURLConnection) url.openConnection(); 4 conn.setRequestMethod("GET"); 5 conn.setConnectTimeout(2000); 6 ... 阅读全文

posted @ 2013-10-27 22:54 DASOU 阅读(294) 评论(0) 推荐(0)