如何制作一个包含两个可绘制对象的可绘制对象:一个在 y 轴上重复,另一个在右端“完成”它?
在我的应用程序中,我这样使用它:
<bitmap xmlns:android="http://schemas.android.com/apk/res/android"
android:src="@drawable/logo_pattern_file"
android:tileMode="repeat"
android:antialias="true"
android:dither="false"
android:filter="false">
</bitmap>
旁边是带有“结束部分”的 ImageView。问题是,平铺部分从左到右绘制表格并且“裁剪”不在正确的位置,弄乱了整个标志。
这是我得到的:
(新用户不能发图片,图片链接:http: //i.imgur.com/HLqTx.jpg)
我应该如何以正确的方式做到这一点?