Android:如何在可绘制的位图资源中多次重复图像?

时间:2015-01-11 14:36:45

标签: android bitmap imageview repeat

我有像这样的RelativeLayout和ImageView小部件

<ImageView android:id="@+id/ImgUp"
    android:layout_width="fill_parent"
    android:layout_height="wrap_content" 
    android:background="@drawable/piggy" />

和像这样的可绘制资源

<bitmap xmlns:android="http://schemas.android.com/apk/res/android"
    android:src="@drawable/sample" />

如何重复相同的图像计算重复次数? (例如4次)

1 个答案:

答案 0 :(得分:3)

android:tileMode="repeat"添加到您的位图可绘制资源。这将导致它在两个轴上重复,直到视图被填满。如果您需要确切的重复次数,最好将其作为自定义视图。