2012年3月5日
摘要: 布局文件:android:selectAllOnFocus="true" //如图"ggg"表示当EditText取得焦点会全选所有内容android:password="true" //表示输入的内容为密码保护形式android:phoneNumber="true" //表示输入的内容为数字形式android:background="@drawable/bg_border" //指示background的内容在drawable文件夹的bg_border.xml文件名中bg_border.xml 阅读全文
posted @ 2012-03-05 11:24 lee0oo0 阅读(370) 评论(0) 推荐(0)
摘要: 布局特别之处://与上一控件底部的距离android:layout_marginTop="10dp"代码阶段分析://返回可画的视图,并用向下转型为Bitmap的可画视图BitmapDrawable bitmapDrawable = (BitmapDrawable) image1.getDrawable();//如果图片还未回收,先强制回收该图片if (!bitmapDrawable.getBitmap().isRecycled()) { bitmapDrawable.getBitmap().recycle(); }//改变ImageView显示的图片 image1.set 阅读全文
posted @ 2012-03-05 10:44 lee0oo0 阅读(1056) 评论(0) 推荐(0)