摘要: 1 public class Producer implements Runnable 2 { 3 GeoPointStack geoPointStack = new GeoPointStack(); 4 GeoPoint geoPoint; 5 6 public Producer(GeoPointStack geoPointStack, GeoPoint geoPoint) { 7 super(); 8 this.geoPointStack = geoPointStack; 9 this.geoPoint =... 阅读全文
posted @ 2013-05-25 15:02 highfly2012 阅读(120) 评论(0) 推荐(0)
摘要: 在AlertDialog中加入EditView后,无法触发软键盘进行输入,加入下面代码可解决:checkinDialog.getWindow().clearFlags(WindowManager.LayoutParams.FLAG_ALT_FOCUSABLE_IM); 阅读全文
posted @ 2013-05-25 14:56 highfly2012 阅读(214) 评论(0) 推荐(0)