如何制作一个由两个drawable组成的drawable:一个在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)
我该如何正确地做到这一点?
答案 0 :(得分:0)
可以通过将重复位图(左侧到右侧,反之亦然)旋转到rotate
标记中来实现此目的,就像这样:
<?xml version="1.0" encoding="utf-8"?>
<rotate xmlns:android="http://schemas.android.com/apk/res/android"
android:fromDegrees="180"
android:pivotX="50%"
android:pivotY="50%" >
<bitmap
android:src="@drawable/core"
android:tileMode="repeat" />
</rotate>
你的布局可能是这样的:
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="wrap_content"
tools:context=".MainActivity" >
<LinearLayout
android:layout_width="0dp"
android:layout_height="wrap_content"
android:layout_weight="1"
android:background="@drawable/repeat_core" />
<ImageView
android:layout_width="95px"
android:layout_height="match_parent"
android:src="@drawable/end" />
</LinearLayout>