虚线

<?xml version="1.0" encoding="utf-8"?>
<shape xmlns:android="http://schemas.android.com/apk/res/android"
android:shape="line">
<stroke
android:width="1dp"
android:color="#f3f3f3"
android:dashWidth="3dp"
android:dashGap="3dp"
</shape>

虚线框

<?xml version="1.0" encoding="utf-8"?>
<shape xmlns:android="http://schemas.android.com/apk/res/android"
android:shape="rectangle">
<stroke
android:width="1dp"
android:color="#f3f3f3"
android:dashWidth="3dp"
android:dashGap="3dp"
</shape>

虚线圆

<?xml version="1.0" encoding="utf-8"?>
<shape xmlns:android="http://schemas.android.com/apk/res/android"
android:shape="oval">
<stroke
android:width="1dp"
android:color="#f3f3f3"
android:dashWidth="3dp"
android:dashGap="3dp"
</shape>

顶部虚线

<?xml version="1.0" encoding="utf-8"?>
<layer-list xmlns:android="http://schemas.android.com/apk/res/android">
<item
android:left="-2dp"
android:right="-2dp"
android:bottom="-2dp">
<shape>
<stroke
android:width="1dp"
android:color="#f3f3f3"
android:dashWidth="3dp"
android:dashGap="3dp"
</shape>
</item>
</layer-list>

底部虚线

<?xml version="1.0" encoding="utf-8"?>
<layer-list xmlns:android="http://schemas.android.com/apk/res/android">
<item
android:left="-2dp"
android:right="-2dp"
android:top="-2dp">
<shape>
<stroke
android:width="1dp"
android:color="#f3f3f3"
android:dashWidth="3dp"
android:dashGap="3dp"
</shape>
</item>
</layer-list>

使用

android:background="@drawable/shape_dash_line"


python关闭进程和相关窗口 python关闭gui窗口代码

python对第3方软件进行操作,可以采用下面的方式。1 win32,PyAutoGUI安装 pip install pypiwin32 pip install PyAutoGUI 2 操作方式打开软件(如果软件已打开,需要先关闭)进行操作关闭软件代码如下: #!/usr/bin/env python3 # -*- coding: utf-8 -*- import psutil impor

Java实现依次过桥 java过河问题

问题描述:一个农夫带着一只狼、一只羊、一只白菜,身处河南岸,要把全部东西带到北岸。问题是只有一条小船,船只能容纳他和一件东西,且狼吃羊,羊吃白菜。问:农夫怎样才能将所有东西安全带到河对岸。代码实现:package com.my.courseDesign; public class CourseDesign { * 1. 首先分为A岸,和B岸,A岸用0来表示,