android PopupWindow实现从底部弹出或滑出选择菜单或窗口
摘要:import android.app.Activity; import android.content.Context; import android.graphics.drawable.ColorDrawable; import android.view...
阅读全文
posted @
2016-06-17 15:19
—落落—
阅读(7137)
推荐(0)
Android中对图像进行Base64编码
摘要:1 public String bitmaptoString(Bitmap bitmap) { 2 3 4 5 // 将Bitmap转换成字符串 6 7 String string = null; 8 9 ByteArrayOutputStream bStream = new ByteAr...
阅读全文
posted @
2016-06-17 09:43
—落落—
阅读(1568)
推荐(0)
调用系统相机和相册
摘要://调用相机public void takephoto(View view){ Intent it = new Intent(); it.setAction("android.media.action.IMAGE_CAPTURE"); it.addCategory("android.intent.category.DEFAULT"); ...
阅读全文
posted @
2016-06-16 19:48
—落落—
阅读(343)
推荐(0)