Android编程之书架效果背景图处理方法

时间:2022-06-22 07:11:40

本文实例讲述了android编程之书架效果背景图处理方法。分享给大家供大家参考,具体如下:

在android应用中,做一个小说阅读器是很多人的想法,大家一般都是把如何读取大文件,如果在滚动或是翻页时,让用户感觉不到做为重点。我也在做一个类似一功能,可是在做书架的时候,看了qq阅读的书架,感觉很好看,就想做一个,前面一篇《android书架效果实现原理与代码》对此做了专门介绍,其完整实例代码可点击此处本站下载

上面的例子很不错,可是有一个问题是他的背景图的宽必须是手机屏幕的宽,不会改变,这样感觉对于手机的适配不太好。就自己动手改了一下。

不多说,直接说一下原理上代码。

在gridview中为一列加背景,没有别的方法,只能重写gridview类,在这个类里,你加载一个背景图来处理,我的做法就是在加载完背景图后,重新根据你的手机的宽绘一个新图,这样你的背景图,就可以很好看的显示出了。

这里我只放出重写的gridview类。

?
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
public class mygridview extends gridview {
 private bitmap background;
 private bitmap newbackground;
 public mygridview(context context, attributeset attrs) {
  super(context, attrs);
  //加载做为背景的图片
  background = bitmapfactory.decoderesource(getresources(), r.drawable.bookcase_bg);
 }
 protected void dispatchdraw(canvas canvas) {
  //取得加载的背景图片高,宽
  int width = background.getwidth();
  int height = background.getheight();
  //取得手机屏幕的高,宽,这里要注意,不要在构造方法中写,因为那样取到的值是0
  int scwidth = this.getwidth();
  int scheight = this.getheight();
  //计算缩放率,新尺寸除原始尺寸,我这里因为高不用变,所以就是原大小的比例1
  //这里一定要注意,这里的值是比例,不是值。
  float scalewidth = ((float) scwidth) / width;
  float scaleheight = 1;
  //log.v("info", "width:" + width + "height:" + height + "scwidth:" + scwidth + "scalewidth:" + scalewidth + "scaleheight:" + scaleheight);
  // 创建操作图片用的matrix对象
  matrix matrix = new matrix();
  // 缩放图片动作
  matrix.postscale(scalewidth, scaleheight);
  //生成新的图片
  newbackground = bitmap.createbitmap(background, 0, 0,
    width, height, matrix, true);
  int count = getchildcount();
  //log.v("mygridview-count", count + "");
  int top = 185;
  //log.v("getchildat", getchildat(0).gettop() + "");
  int backgroundwidth = newbackground.getwidth();
  int backgroundheight = newbackground.getheight();
  for (int y = top; y<scheight; y += 223){
   //for (int x = 0; x<scwidth; x += backgroundwidth){
    canvas.drawbitmap(newbackground, 0, y, null);
   //}
  }
  super.dispatchdraw(canvas);
 }
 //禁止滚动 条滚动
 public void onmeasure(int widthmeasurespec, int heightmeasurespec) {
   int expandspec = measurespec.makemeasurespec(integer.max_value >> 2,
    measurespec.at_most);
   super.onmeasure(widthmeasurespec, expandspec);
  }
}

希望本文所述对大家android程序设计有所帮助。