标签:android style blog http color re c html
三、TextView 添加Onclick 无效
给TextView添加Onclick事件还需要配置android:clickable="true",否则点击无效 android:clickable="true" android:onClick="installedSoftTab"
二、设置当TextView中的文字超过TextView的容量时,用省略号代替
只需要下边的设置: textview.setSingleLine(); textview.setEllipsiz(TextUtils.TruncateAt.valueOf("END")); 在xml中设置如下: android:singleLine="true" android:ellipsize="end"
一、ImageView圆角图片
http://www.open-open.com/lib/view/open1391690691535.html
标签:android style blog http color re c html
原文地址:http://www.cnblogs.com/hzm112567/p/3868605.html