java豆子

导航

2011年11月16日 #

TextView属性详解

摘要: android:autoLink设置是否当文本为URL链接/email/电话号码/map时,文本显示为可点击的链接。可选值(none/web/email/phone/map/all)android:autoText如果设置,将自动执行输入值的拼写纠正。此处无效果,在显示输入法并输入的时候起作用。android:bufferType指定getText()方式取得的文本类别。选项editable类似于StringBuilder可追加字符,也就是说getText后可调用append方法设置文本内容,spannable则可在给定的字符区域使用样式。android:capitalize设置英文字母大写类 阅读全文

posted @ 2011-11-16 18:19 java豆子 阅读(2429) 评论(0) 推荐(0) 编辑

解决ADB server didn't ACK问题

摘要: 之前运行eclipse执行android应用都没问题,今天突然出问题了,控制台报错: The connection to adb is down, and a severe error has occured. You must restart adb and Eclipse. Please ensure that adb is correctly located at 'D:\android-2.2-windows\tools\adb.exe' and can be executed. 在命令行下运行 adb start-server errors: * daemon not 阅读全文

posted @ 2011-11-16 16:10 java豆子 阅读(250) 评论(0) 推荐(0) 编辑

调用系统默认浏览器访问网址

摘要: 一、启动android默认浏览器 Intent intent= new Intent(); intent.setAction("android.intent.action.VIEW"); Uri content_url = Uri.parse("http://www.cnblogs.com"); intent.setData(content_url); startActivity(intent);这样子,android就可以调用起手机默认的浏览器访问。二、指定相应的浏览器访问1、指定android自带的浏览器访问( “com.android.browse 阅读全文

posted @ 2011-11-16 12:47 java豆子 阅读(3400) 评论(0) 推荐(0) 编辑