我有像这样的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次)
答案 0 :(得分:3)
将android:tileMode="repeat"
添加到您的位图可绘制资源。这将导致它在两个轴上重复,直到视图被填满。如果您需要确切的重复次数,最好将其作为自定义视图。