How can I make a drawable that consist of two drawables: one repeats on y-axis and other "finishes" it on the right end?In my app I use it like this:\[code\]<bitmap xmlns:android="http://schemas.android.com/apk/res/android" android:src="http://stackoverflow.com/questions/14032337/@drawable/logo_pattern_file" android:tileMode="repeat" android:antialias="true" android:dither="false" android:filter="false"> </bitmap>\[/code\]And next to it stands ImageView with the "end part". The problem is, tiling part draws form left to right and "crops" not on the right place, messing up the whole logo.Here's what I am gettingNew users are not allowed to post images, here's a link to image: http://i.imgur.com/HLqTx.jpg)How should I make it the right way?