2014年8月6日

安卓学习-其他-保存图片

摘要: /** 保存方法 */ public void saveBitmap(Bitmap bm, String picName) { //获取SD卡的目录,不建议直接写sdcard File f = new File(Environment.getExternal... 阅读全文

posted @ 2014-08-06 15:14 weijj 阅读(125) 评论(0) 推荐(0) 编辑

安卓学习-其他-Bitmap.Config

摘要: 枚举变量public static final Bitmap.Config ALPHA_8public static final Bitmap.Config ARGB_4444public static final Bitmap.Config ARGB_8888public static final... 阅读全文

posted @ 2014-08-06 15:10 weijj 阅读(132) 评论(0) 推荐(0) 编辑

安卓学习-界面-View和GroupView

摘要: 所有的界面元素都是继承与View(如:ImageView 、Button等),布局继承于GroupView(如:LinearLayout等)view的主要属性,这里直接是xml配置里写了,当然直接通过代码也是可以的XML属性相关方法说明android:alphasetAlpha(float alph... 阅读全文

posted @ 2014-08-06 13:46 weijj 阅读(640) 评论(0) 推荐(0) 编辑

导航