本文介绍了Android中的虚线的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
我正在使用android应用程序,在其中我要使用虚线xml作为布局中的分隔线.为此,我使用了不同的可绘制对象,但是制作了一条虚线,而是制作了一条线.我的图片在下面给出
I am working on android application in which I want to use dotted line xml as a divider in my layout. For this I have used different drawables but instead to make a dashed dotted line, it is making a line. My image is given below
推荐答案
在您的ListView中放置
in your ListView put
android:divider="@drawable/dash"
然后在drawable文件夹中创建dash.xml并放入以下代码
And in drawable folder create dash.xml and put following code
<?xml version="1.0" encoding="utf-8"?>
<shape
xmlns:android="http://schemas.android.com/apk/res/android"
android:shape="line">
<stroke
android:color="#fdfdfd"
android:width="1dp"
android:dashGap="3dp"
android:dashWidth="1dp"
/>
<size
android:height="3dp"
/>
</shape>
您还可以更改点的颜色
这篇关于Android中的虚线的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!