732003684

导航

2012年10月18日 #

android 字体样式

摘要: http://tank03.iteye.com/blog/1329905 阅读全文

posted @ 2012-10-18 11:50 732003684 阅读(83) 评论(0) 推荐(0) 编辑

2012年10月15日 #

Android的图片叠加

摘要: http://www.cnblogs.com/bill-joy/archive/2012/06/29/2570279.html 阅读全文

posted @ 2012-10-15 16:51 732003684 阅读(110) 评论(0) 推荐(0) 编辑

图片修改

摘要: Android开发经验之在图片上随意点击移动文字http://www.linuxidc.com/Linux/2012-03/55702.htmAndroid怎样修改图片http://jiayanjujyj.iteye.com/blog/1083306 阅读全文

posted @ 2012-10-15 16:16 732003684 阅读(109) 评论(0) 推荐(0) 编辑

写入相册无法显示的问题

摘要: Bitmap bitmap = imageMap.get(url);MediaStore.Images.Media.insertImage(getContentResolver(), bitmap, "myPhoto", ""); 将bitmap保存到系统相册,结果打开相册一直找不到保存的图片。但是重启手机之后发现能在相册中找到。研究之后发现,需要在将照片写入相册之后往相册中刷新下相册环境:[java]sendBroadcast(new Intent(Intent.ACTION_MEDIA_MOUNTED, Uri.parse("file:// 阅读全文

posted @ 2012-10-15 09:08 732003684 阅读(127) 评论(0) 推荐(0) 编辑

2012年10月11日 #

【转】Android开发之SD卡上文件操作

摘要: http://mwga.net.blog.163.com/blog/static/106456728201131321029130/ 阅读全文

posted @ 2012-10-11 17:35 732003684 阅读(118) 评论(0) 推荐(0) 编辑

【转】Android中几种图像特效处理方法小结

摘要: 原文地址:http://www.androidmi.com/Androidkaifa/jinjie/201011/1788.html作者的联系方式:QQ:524509159Email:hoohbood@gmail.comTel:18666294230 阅读全文

posted @ 2012-10-11 15:59 732003684 阅读(93) 评论(0) 推荐(0) 编辑

TabHost

摘要: http://www.cnblogs.com/over140/archive/2011/03/02/1968042.html 阅读全文

posted @ 2012-10-11 14:50 732003684 阅读(86) 评论(0) 推荐(0) 编辑

打开读取相册照片

摘要: //参数声明private final static int PHOTO_REQUEST_GALLERY = 1;private final static int PHOTO_CROP = 2;//启动 IntentIntent intent = new Intent(Intent.ACTION_PICK, null); intent.setDataAndType( MediaStore.Images.Media.EXTERNAL_CONTENT_URI, "image/*"); startActivityForResult(intent, PHOTO_REQUEST_G. 阅读全文

posted @ 2012-10-11 12:18 732003684 阅读(329) 评论(0) 推荐(0) 编辑

拍照程序

摘要: http://menuz.iteye.com/blog/1284436http://www.oschina.net/question/163910_28762 阅读全文

posted @ 2012-10-11 10:36 732003684 阅读(153) 评论(0) 推荐(0) 编辑

设置edittext的hint位置

摘要: <EditText android:id="@+id/edt_content" android:layout_width="fill_parent" android:layout_height="wrap_content" android:hint="@string/suggestion_input" android:gravity="top|left" android:singleLine="false" android:padding=... 阅读全文

posted @ 2012-10-11 10:26 732003684 阅读(20292) 评论(0) 推荐(0) 编辑