Android学习技巧

Android实用函数

一些Android实用函数收集,不断更新中。

1:获得屏幕的密度,用于屏幕适配

public static float getDensity(Context ctx) {

DisplayMetrics metrics = new DisplayMetrics();

WindowManager wm = (WindowManager) ctx.getSystemService(Context.WINDOW_SERVICE);

wm.getDefaultDisplay().getMetrics(metrics);

return metrics.density;

}

2:获得版本的名字

public static String getVersionName(Context context, String packageName) {

PackageInfo pInfo = null;

String rs = "";

try {

pInfo = context.getPackageManager().getPackageInfo(packageName, PackageManager.GET_META_DATA);

rs = pInfo.versionName;

}

    catch (Exception e) {

e.printStackTrace();

}

return rs;

}

3:获得图片的倒影,同时倒影渐变效果

public static Bitmap createMirro(Bitmap srcbitmap) {

int width = srcbitmap.getWidth();

int height = srcbitmap.getHeight();

int shadow_height = 15;

int[] pixels = new int[width * height];

srcbitmap.getPixels(pixels, 0, width, 0, 0, width, height);

// shadow effect

int alpha = 0x;

for (int y = 0; y < height; y++) {

        for (int x = 0; x < width; x++) {

            int index = y * width + x;

            int r = (pixels[index] >> 16) & 0xff;

            int g = (pixels[index] >> 8) & 0xff;

            int b = pixels[index] & 0xff;

            pixels[index] = alpha | (r << 16) | (g << 8) | b;

        }

        if (y >= (height - shadow_height)) {

            alpha = alpha + 0x1F;

        }

}

    

// invert effect

Bitmap bm = Bitmap.createBitmap(width, height, Bitmap.Config.ARGB_8888);

for (int y = 0; y < height; y++) {

bm.setPixels(pixels, y * width, width, 0, height - y - 1, width, 1);

}

return Bitmap.createBitmap(bm, 0, 0, width, shadow_height);

}

本文出自互动无限科技有限公司www.hudongwx.com。转载请说明出处


文章题目:Android学习技巧
标题来源:http://bzwzjz.com/article/jddpgo.html

其他资讯

Copyright © 2007-2020 广东宝晨空调科技有限公司 All Rights Reserved 粤ICP备2022107769号
友情链接: 成都网站建设 网站制作 定制网站设计 成都网站设计制作公司 响应式网站设计 成都定制网站建设 企业网站设计 成都网站设计公司 成都品牌网站设计 重庆网站建设 手机网站制作 网站建设 盐亭网站设计 网站建设开发 成都网站制作 成都网站建设 成都网站制作 成都网站设计 上市集团网站建设 成都定制网站建设 成都网站建设 网站建设方案