会员
周边
众包
新闻
博问
闪存
赞助商
所有博客
当前博客
我的博客
我的园子
账号设置
简洁模式
...
退出登录
注册
登录
米娅的android之旅
android开发群群号:84926730
博客园
首页
博问
闪存
管理
上一页
1
2
3
4
5
6
7
8
···
11
下一页
2012年9月17日
android TextView可滚动
摘要: android:maxLines="5" android:singleLine="false" android:scrollbars="vertical" txt_help.setMovementMethod(ScrollingMovementMethod.getInstance());
阅读全文
posted @ 2012-09-17 11:43 程序缘儿
阅读(3139)
评论(2)
推荐(0)
编辑
2012年9月13日
service数据改变时发广播给前端activity供显示
摘要: 发送定位广播: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 程序缘儿
阅读(4991)
评论(0)
推荐(0)
编辑
2012年9月11日
加载进度条直到线程结束
摘要: 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 程序缘儿
阅读(674)
评论(0)
推荐(0)
编辑
上一页
1
2
3
4
5
6
7
8
···
11
下一页