Android - 水平线上的形状

Posted

技术标签:

【中文标题】Android - 水平线上的形状【英文标题】:Android - shape on horizontal line 【发布时间】:2015-04-08 10:34:25 【问题描述】:

我有一个xml,在这个xml 中,我在TextViews 之间添加了Horizontal Line。 我在分隔符中添加了Shape,但看不到更改。

main_activity.xml :

<TextView
    android:id="@+id/title"
    android:layout_
    android:layout_
    android:text="HELLO"
    android:textColor="@android:color/black" />

<View
    android:id="@+id/vVerticalLine"
    android:background="@drawable/horizontal_shape"
    android:layout_
    android:layout_marginLeft="50dp"
    android:layout_marginRight="20dp"
    android:layout_below="@+id/title"
    android:layout_ />

<TextView
    android:id="@+id/txt"
    android:layout_
    android:layout_
    android:text="HELLO"
    android:textColor="@android:color/black" />

还有我的horizontal_shape.xml

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

    <corners
        android:bottomLeftRadius="5dp"
        android:bottomRightRadius="5dp"
        android:topLeftRadius="5dp"
        android:topRightRadius="5dp" />

    <stroke
        android:color="#000000" />

</shape>

例如我需要:

【问题讨论】:

main_activity.xml的背景是白色的。 使用 而不是描边。 @哈利。你的帮助是真的。投票的回答问题。谢谢。 【参考方案1】:
<shape xmlns:android="http://schemas.android.com/apk/res/android">

    <corners
        android:bottomLeftRadius="5dp"
        android:bottomRightRadius="5dp"
        android:topLeftRadius="5dp"
        android:topRightRadius="5dp" />
    <size
        android: />
    <solid
        android:color="#daa520" />

</shape>

【讨论】:

这对我有用,而在 SO 上没有其他解决方案有帮助。谢谢!

以上是关于Android - 水平线上的形状的主要内容,如果未能解决你的问题,请参考以下文章

怎么在android上面做出根据形状来渐变的效果

具有透明背景的形状上的涟漪

具有不同角半径的可绘制形状背景的布局上的标高

如何设置宽度等于android上的另一个小部件

在android中对图像进行手绘裁剪

标签编号 3 与轴 1 上的形状不匹配