Android ViewGroup如果下面有很多子View,绘制的时候,需要开启其子View的绘制缓存功能,从而提高绘制效率。具体的代码如下:
- public void setChildrenDrawingCacheEnabled(boolean enabled) {
- final int count = getChildCount();
- for (int i = 0; i < count; i++) {
- final View view = getChildAt(i);
- view.setDrawingCacheEnabled(true);
-
- // Update the drawing caches
- view.buildDrawingCache(true);
- }
- }
最后结束的时候,需要通过以下代码来清空绘制缓存。
- void clearChildrenCache() {
- final int count = getChildCount();
- for (int i = 0; i < count; i++) {
- final CellLayout layout = (CellLayout) getChildAt(i);
- layout.setChildrenDrawnWithCacheEnabled(false);
- }
- }
Android按指定大小读取图片
在 Android开发中,我们经常遇到 Android读取图片大小超过屏幕显示的图(一般只要显示一定规格的预览图即可),在图片特别多或者图片显示很频繁的时候要特别注意这个问题,下面介绍个按指定大小读取图像的方法。
实现原理:首先获取图片文件的图像高和宽,如果小于指定比例,则直接读取;如果超过比例则按指定比例压缩读取。
捕获OutOfMemoryError时注意点:后面返回的是null,不要马上从别的地方再读图片,包括R文件中的,不然依然会抛出这个异常,一般在初始化的时候缓存默认图片,然后显示缓存中的图片。
- /** 获取图像的宽高**/
- public static int[] getImageWH(String path) {
- int[] wh = {-1, -1};
- if (path == null) {
- return wh;
- }
- File file = new File(path);
- if (file.exists() && !file.isDirectory()) {
- try {
- BitmapFactory.Options options = new BitmapFactory.Options();
- options.inJustDecodeBounds = true;
- InputStream is = new FileInputStream(path);
- BitmapFactory.decodeStream(is, null, options);
- wh[0] = options.outWidth;
- wh[1] = options.outHeight;
- }
- catch (Exception e) {
- Log.w(TAG, "getImageWH Exception.", e);
- }
- }
- return wh;
- }
-
- public static Bitmap createBitmapByScale(String path, int scale) {
- Bitmap bm = null;
- try {
- //获取宽高
- int[] wh = getImageWH(path);
- if (wh[0] == -1 || wh[1] == -1) {
- return null;
- }
-
- //读取图片
- BitmapFactory.Options options = new BitmapFactory.Options();
- options.inSampleSize = Math.max(wh[0]/scale, wh[1]/scale);
- InputStream is = new FileInputStream(path);
- bm = BitmapFactory.decodeStream(is, null, options);
- }
- catch (Exception e) {
- Log.w(TAG, "createBitmapByScale Exception.", e);
- }
- catch (OutOfMemoryError e) {
- Log.w(TAG, "createBitmapByScale OutOfMemoryError.", e);
- //TODO: out of memory deal..
- }
- return bm;
- }
Android按钮颜色设置1.工程目录
a.在 res目录-新建 drawble文件夹放入自定义图片
2.main.xml
- <?xml version="1.0" encoding="utf-8"?>
- <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
- android:orientation="vertical"
- android:layout_width="fill_parent"
- android:layout_height="fill_parent"
- >
- <TextView
- android:layout_width="fill_parent"
- android:layout_height="wrap_content"
- android:text="@string/hello"
- />
- <ImageButton
- android:id="@+id/button"
- android:layout_width="wrap_content"
- android:layout_height="wrap_content"
- android:background="#000000"
- android:src="@drawable/sy"
- />
- </LinearLayout>
- package com.YANSE;
- import android.app.Activity;
- import android.os.Bundle;
- import android.widget.ImageButton;
- public class YANSE extends Activity {
- private ImageButton Image =null;
- @Override
- public void onCreate(Bundle savedInstanceState) {
- super.onCreate(savedInstanceState);
- setContentView(R.layout.main);
- Image=(ImageButton)findViewById(R.id.button);
- }
- }