米娅的android之旅
android开发群群号:84926730
上一页 1 2 3 4 5 6 7 8 ··· 11 下一页
摘要: android:maxLines="5" android:singleLine="false" android:scrollbars="vertical" txt_help.setMovementMethod(ScrollingMovementMethod.getInstance()); 阅读全文
posted @ 2012-09-17 11:43 程序缘儿 阅读(3138) 评论(2) 推荐(0) 编辑
摘要: 发送定位广播:Intent intent = new Intent();intent.putExtra("GpsIsAvailable", GPS_IS_AVAILABLE);intent.setAction("cn.com.miya.action.service");sendBroadcast(intent)注册广播接收者:private GpsStatusReceiver receiver = new GpsStatusReceiver();IntentFilter filter = new IntentFilter("cn.com.miy 阅读全文
posted @ 2012-09-13 15:27 程序缘儿 阅读(4988) 评论(0) 推荐(0) 编辑
摘要: private ProgressDialog progressDialog;String tip = getBaseContext().getResources().getString( R.string.str_thread_progressing); progressDialog = ProgressDialog.show(context, "thread is progressing.....", tip, true);new Threas(){private void run(){//surround with ... 阅读全文
posted @ 2012-09-11 09:59 程序缘儿 阅读(673) 评论(0) 推荐(0) 编辑
上一页 1 2 3 4 5 6 7 8 ··· 11 下一页