我如何实现这一目标(或类似的东西)? 寻找一些“下划线”,它将是元素的宽度。 正在思考一个可绘制但我不太确定如何适应拉伸和什么不适用。感谢。
修改
制作了一个新的XML文件并将其包含在每个标题下,效果很好。
<merge xmlns:android="http://schemas.android.com/apk/res/android" >
<View
android:id="@+id/layout_underline"
android:layout_width="match_parent"
android:layout_height="3dip"
android:background="@color/layout_underline" />
</merge>
答案 0 :(得分:1)
创建9补丁图像并将其设置为TextViews的背景。
这是9补丁资源页面:http://developer.android.com/guide/topics/graphics/2d-graphics.html#nine-patch
答案 1 :(得分:1)
您可以通过XML创建视图来获取它,如下所示:
<View
android:layout_width="fill_parent"
android:layout_height="2dp" />
您可以根据需要自定义
希望能帮助你