如何单独垂直重复图像?

时间:2012-02-08 07:44:13

标签: android xml repeat

我正在尝试重复使用xml文件,这对于常规背景以及弯曲边缘按钮等都很好。现在我正在尝试使用重复xml的布局概述背景。

我怎样才能在Xaxis或Yaxis中重复一段。

我需要的最后一件事和我所拥有的切片是: corner1

corner2

vertical piece

final

2 个答案:

答案 0 :(得分:2)

我得到了解决方案,我在drawable中使用了这个XML文件,并将其添加为布局背景。

[shape xmlns:android =“http://schemas.android.com/apk/res/android”android:shape =“rectangle”>         

<stroke android:width="3dp"
        android:color="#9B9A9A"/>

<padding android:left="2dp"
         android:top="2dp"
         android:right="2dp"
         android:bottom="2dp"/> 

<corners 
    android:topRightRadius="30dp"
    android:bottomRightRadius="30dp"/> 

答案 1 :(得分:0)

//如果你有PSD文件使这个图像尽可能小,并使其成为draw9patch图像

以便它能自动满足您的要求

enter image description here