Android教程網
  1. 首頁
  2. Android 技術
  3. Android 手機
  4. Android 系統教程
  5. Android 游戲
 Android教程網 >> Android技術 >> 關於Android編程 >> Android編程之書架效果背景圖處理方法

Android編程之書架效果背景圖處理方法

編輯:關於Android編程

本文實例講述了Android編程之書架效果背景圖處理方法。分享給大家供大家參考,具體如下:

在android應用中,做一個小說閱讀器是很多人的想法,大家一般都是把如何讀取大文件,如果在滾動或是翻頁時,讓用戶感覺不到做為重點。我也在做一個類似一功能,可是在做書架的時候,看了QQ閱讀的書架,感覺很好看,就想做一個,前面一篇《android書架效果實現原理與代碼》對此做了專門介紹,其完整實例代碼可點擊此處本站下載。

上面的例子很不錯,可是有一個問題是他的背景圖的寬必須是手機屏幕的寬,不會改變,這樣感覺對於手機的適配不太好。就自己動手改了一下。

不多說,直接說一下原理上代碼。

在gridView中為一列加背景,沒有別的方法,只能重寫GridView類,在這個類裡,你加載一個背景圖來處理,我的做法就是在加載完背景圖後,重新根據你的手機的寬繪一個新圖,這樣你的背景圖,就可以很好看的顯示出了。

這裡我只放出重寫的GridView類。

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程序設計有所幫助。

  1. 上一頁:
  2. 下一頁:
熱門文章
閱讀排行版
Copyright © Android教程網 All Rights Reserved