摘要:
[一篮饭特稀原创,转载请注明出自http://www.cnblogs.com/wanghafan/archive/2013/03/07/2948362.html]super(marker); //maker对象的左上角与坐标点重合 super(boundCenter(marker)); //maker对象的中心与坐标点重合super(boundCenterBottom(marker)); //maker对象底部的中心与坐标点重合 阅读全文
摘要:
当出现ADB server didn't ACK无法重启ADB时,只要到任务管理器中对着adb.exe-右键-属性,查看路径,然后卸载掉占用的程序即可 阅读全文
摘要:
打开File Search对话框,选中正则表达式,在搜索文本框输入 \n文件名称输入 *.java在范围里选中Enclosing projects然后就可以统计出整个项目的代码行数。 阅读全文
摘要:
[一篮饭特稀原创,转载请注明出自http://www.cnblogs.com/wanghafan/archive/2013/01/10/2855096.html]1.注册一个广播接收器,监听网络状态1 private void Start()2 {3 IntentFilter filter = new IntentFilter();4 filter.addAction(ConnectivityManager.CONNECTIVITY_ACTION);5 filter.addAction(WifiManager.WIFI_STATE... 阅读全文
摘要:
Java 利用Apache Commons Net 实现 FTP文件上传下载 [转] 1 package woxingwosu; 2 3 import java.io.BufferedInputStream; 4 import java.io.BufferedOutputStream; 5 import java.io.FileInputStream; 6 import java.io.FileOutputStream; 7 import java.io.IOException; 8 import java.text.SimpleDateFormat; 9 import j... 阅读全文
摘要:
[一篮饭特稀原创,转载请注明出自http://www.cnblogs.com/wanghafan/archive/2012/11/30/2796379.html]The connection to adb is down, and a severe error has occured.问题解决方案:1.cmd中adb kill-server,然后adb -startserver2.任务管理器中杀死adb.exe,然后重启Eclipse。3.卸载"腕豆夹"4.关闭"360安全卫士"5.卸载"阿里旺旺"6.在C盘搜索adb.exe文件,卸 阅读全文
摘要:
[一篮饭特稀原创,转载请注明出自http://www.cnblogs.com/wanghafan/archive/2012/10/24/2736652.html]1.出现拖放地图卡顿不刷新、定位卡顿不刷新问题。经过1天的排查,发现:1 <uses-sdk2 android:minSdkVersion="10"3 android:targetSdkVersion="15" />需要改成1 <uses-sdk2 android:minSdkVersion="10"/> 阅读全文
摘要:
[一篮饭特稀原创,转载请注明出自http://www.cnblogs.com/wanghafan/archive/2012/08/24/2654313.html]解决退出依旧返回上一页问题!1.在Common.java中public class Common{ public static List<Activity> activityList = new ArrayList<Activity>(); public static void CloseAllActivity(Context context) { for (int i = 0; i < activit. 阅读全文
摘要:
[一篮饭特稀原创,转载请注明出自http://www.cnblogs.com/wanghafan/archive/2012/08/23/2651922.html]1.AVD模拟器设置SDCard Size和Hardware SDCard Support :yes2.启动AVD后在File Explorer中找到mnt\sdcard目录3.点击File Explorer中Push a file onto the device,选择123.html4.页面建立WebView,输入路径file://sdcard/123.html1 WebView mWebView;2 mWebView = (Web 阅读全文
摘要:
private void SaveBitmap(String bitName, Bitmap mBitmap){ FileHelper fHelper=new FileHelper(GPSActivity.this); fHelper.creatSDDir("WLAN"); File f = new File("/sdcard/WLAN/" + bitName + ".jpg"); try { f.createNewFile(); FileOutputStream fOut = null; fOut = n... 阅读全文