tt_mc

导航

上一页 1 ··· 4 5 6 7 8 9 10 11 12 ··· 18 下一页

2010年10月27日 #

android Manifest.xml选项

摘要: Manifest.xml下的一些属性定义和用法:----------------------------------------------------------------------------------------------------------------------------------android:allowTaskReparenting 用法<application... 阅读全文

posted @ 2010-10-27 20:26 tt_mc 阅读(38139) 评论(3) 推荐(4) 编辑

2010年10月7日 #

Android: 自定义Tab样式

摘要: [代码] 阅读全文

posted @ 2010-10-07 13:56 tt_mc 阅读(8462) 评论(1) 推荐(0) 编辑

2010年10月6日 #

APN 开关实现原理

摘要: 关闭APN的原理是在APN信息表(content://telephony/carriers/current)的apn, type字段添加自定义的后缀(参考自APNDroid)[代码] 阅读全文

posted @ 2010-10-06 20:30 tt_mc 阅读(2316) 评论(0) 推荐(0) 编辑

软键盘挡住控件的问题

摘要: 在manifest的activity节点使用<activity android:windowSoftInputMode="adjustResize" . . . >当点击EditText控件弹出软键盘的时候,系统会自动调整控件的位置。 阅读全文

posted @ 2010-10-06 20:26 tt_mc 阅读(756) 评论(0) 推荐(0) 编辑

2010年9月27日 #

自定义 textview上LINK的点击事件

摘要: 代码Code highlighting produced by Actipro CodeHighlighter (freeware)http://www.CodeHighlighter.com/--packagecom.TextHtml;importandroid.app.Activity;importandroid.content.Context;importandroid.os.Bundle... 阅读全文

posted @ 2010-09-27 13:46 tt_mc 阅读(2180) 评论(0) 推荐(1) 编辑

Android TextView(EditView)文字底部或者中间 加横线

摘要: promotionLinkText = (TextView) this .findViewById(R.id. text_promotion_link ); 中间加横线 promotionLinkText .getPaint().setFlags(Paint. STRIKE_THRU_TEXT_FLAG ); 底部加横线: promotionLinkText .getPaint().setFl... 阅读全文

posted @ 2010-09-27 13:04 tt_mc 阅读(6679) 评论(0) 推荐(0) 编辑

2010年9月26日 #

去除掉TabHost下面那个边线的小技巧

摘要: 用个巧办法吧。。我去不了,我遮挡住。 tabHost.setPadding(tabHost.getPaddingLeft(), tabHost.getPaddingTop(), tabHost.getPaddingRight(), tabHost.getPaddingBottom()-数字慢慢调); 阅读全文

posted @ 2010-09-26 18:12 tt_mc 阅读(1135) 评论(0) 推荐(0) 编辑

2010年9月13日 #

Android版本检测\自动更新

摘要: [代码] 阅读全文

posted @ 2010-09-13 16:37 tt_mc 阅读(12878) 评论(7) 推荐(1) 编辑

activity横竖屏翻转不重载

摘要: 可以给每个activity加上android:configChanges="keyboardHidden|orientation"属性,就不会重启activity.而是去调用onConfigurationChanged(Configuration newConfig). 这样就可以在这个方法里调整显示方式.比如Java代码 if(newConfig.orientation==Configurati... 阅读全文

posted @ 2010-09-13 15:57 tt_mc 阅读(864) 评论(0) 推荐(0) 编辑

2010年9月5日 #

一句代码过滤字符串中所有tag标签

摘要: private String stripTags(final String pHTMLString) { return pHTMLString.replaceAll("\\<.*?>",""); } 阅读全文

posted @ 2010-09-05 20:18 tt_mc 阅读(354) 评论(0) 推荐(0) 编辑

上一页 1 ··· 4 5 6 7 8 9 10 11 12 ··· 18 下一页