android 圖片水平重複平鋪(repeat x)

來源:互聯網
上載者:User

標籤:android   style   blog   http   io   color   ar   使用   java   

《=用來重複顯示的圖

1.最簡單方式
建立wave_repeat.xml<?xml version="1.0" encoding="utf-8"?>
<bitmap xmlns:android="http://schemas.android.com/apk/res/android"
    android:src="@drawable/wave"
    android:tileMode="repeat" />
在layout中使用<View
    android:layout_width="match_parent"
    android:layout_height="wrap_content"
    android:background="@drawable/wave_repeat" />
這種方式有一個問題,最後一張重複圖片不一定是完整的圖片可能只是一部分
:(左右兩條豎線是後來加的)

2.可確保最後一張重複圖片是完整的,就是幾個完整的一樣的圖片X軸重複Resources res = context.getResources();
Bitmap bitmap = BitmapFactory.decodeResource(res, R.drawable.wave);
holder.viewWave.setImageBitmap(BitmapHelper.createRepeater(screenWidth, bitmap));//screenWidth為螢幕寬度(或顯示圖片的imageview寬度)

BitmapHelper.java 中的方法public static Bitmap createRepeater(int width, Bitmap src) {
     int count = (width + src.getWidth() - 1) / src.getWidth(); //計算出平鋪填滿所給width(寬度)最少需要的重複次數
     Bitmap bitmap = Bitmap.createBitmap(src.getWidth()*count, src.getHeight(), Config.ARGB_8888);
     Canvas canvas = new Canvas(bitmap);
     for (int idx = 0; idx < count; ++idx) {
          canvas.drawBitmap(src, idx * src.getWidth(), 0, null);
     }
     return bitmap;
}

在layout中設定imageview的scaleType為fitXY < ImageView
     android:id="@+id/view_wave"
     android:layout_width="match_parent"
     android:layout_height="wrap_content"
     android:scaleType="fitXY" />



android 圖片水平重複平鋪(repeat x)

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.