如何添加底部边框的RelativeLayout的边框、RelativeLayout

由网友(Smile、凉城)分享简介:

我想RelativeLayout的设置只有底部边框。我想dispaly列表视图样式,但不使用列表视图。可以说,每一个列表项是relativlayout。我想只设置底边框所以它看起来像一个ListView的分频器。

I want set only bottom border in relativelayout. I want to dispaly listview style but not using listview. Lets say each listitem is relativlayout. I want set only bottom border so its look like a listview's divider.

推荐答案

我希望我理解你所说的话。

I hope I understood what you said.

在资源文件夹中创建一个新的文件夹(如果你还没有拥有它)命名绘制

in the res folder create a new folder (if you don't already have it) named drawable

有创建了一个名为XMLborders.xml

there create an xml named "borders.xml"

  <selector xmlns:android="http://schemas.android.com/apk/res/android">

    <item android:state_pressed="true"><shape xmlns:android="http://schemas.android.com/apk/res/android" android:shape="rectangle">
           <gradient android:angle="90" android:centerColor="#6da23f" android:endColor="#8bc45d" android:startColor="#2f481c" />

            <stroke android:width="2dp" android:color="#999999" />

            <padding android:bottom="4dp" android:left="3dp" android:right="3dp" android:top="6dp" />

             <corners android:radius="10px"/>
        </shape></item>
    <item><shape xmlns:android="http://schemas.android.com/apk/res/android" android:shape="rectangle">
            <gradient android:angle="90" android:centerColor="#6da23f" android:endColor="#8bc45d" android:startColor="#4c8a39" />

            <stroke android:width="1dp" android:color="#FFFFFF" />

            <padding android:bottom="4dp" android:left="3dp" android:right="3dp" android:top="6dp" />

            <corners android:radius="10px"/>
        </shape></item>

</selector>

您可以进一步编辑它,只要你喜欢。 然后,从外形布局,然后单击背景属性,然后选择您创建的边界XML。

You can further edit it as you like. Then select the layout from the Outline and click Background properties, and select the borders xml that you created.

这将为所有4.边框或者,你可以添加一个简单的

This will create borders for all 4. Alternatively, you can add a simple

<View android:layout_width="1dip"
    android:layout_height="fill_parent"
android:background="#FFFFFF" />

行并将其添加到您的布局的底部,并改变颜色/大小根据自己的喜好。

line and add it to the bottom of your layout and change the color/size to your liking.

阅读全文

相关推荐

最新文章