服务器之家:专注于服务器技术及软件下载分享
分类导航

PHP教程|ASP.NET教程|Java教程|ASP教程|编程技术|正则表达式|C/C++|IOS|C#|Swift|Android|VB|R语言|JavaScript|易语言|vb.net|

服务器之家 - 编程语言 - Android - android绘制多个黑竖线条

android绘制多个黑竖线条

2022-02-21 15:49qq_37217804 Android

这篇文章主要为大家详细介绍了android绘制多个黑竖线条,具有一定的参考价值,感兴趣的小伙伴们可以参考一下

本文实例为大家分享了android绘制多个黑竖线条展示的具体代码,供大家参考,具体内容如下

1.写一个LinearLayout的布局,将宽度写成5dp将高度写成match_parent.

2.在写一个类继承LinearLayout,用LayoutInflater实现子布局的在这个LinearLayout类中显示。

3.直接在需要使用的xml文件中调用我们写的这个class,注意路径要写全。

1.xml代码

?
1
2
3
4
5
6
7
8
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
 android:layout_width="5dp"
 android:layout_height="match_parent"
 android:background="#000000"
 >
 
</LinearLayout>

2.java代码

?
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
package com.example.lenovo.myfragmentdemo3;
 
import android.content.Context;
import android.support.annotation.Nullable;
import android.util.AttributeSet;
import android.view.LayoutInflater;
import android.widget.LinearLayout;
 
import com.example.lenovo.myfragmentdemo3.R;
 
/**
 * Created by lenovo on 2018/5/7.
 */
 
public class Linedemo extends LinearLayout {
 public Linedemo(Context context, @Nullable AttributeSet attrs) {
 super(context, attrs);
 LayoutInflater.from(context).inflate(R.layout.line,this);
 }
}

3.布局代码

?
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
 android:orientation="horizontal"
 android:layout_width="match_parent"
 android:layout_height="match_parent"
 android:padding="10dp"
 >
 <com.example.lenovo.myfragmentdemo3.Linedemo
 android:layout_width="20dp"
 android:layout_height="match_parent"
 android:layout_marginRight="100dp"/>
 <com.example.lenovo.myfragmentdemo3.Linedemo
 android:layout_width="20dp"
 android:layout_height="match_parent"
 android:layout_marginRight="100dp"/>
 <com.example.lenovo.myfragmentdemo3.Linedemo
 android:layout_width="20dp"
 android:layout_height="match_parent"
 android:layout_marginRight="100dp"/>
 <com.example.lenovo.myfragmentdemo3.Linedemo
 android:layout_width="20dp"
 android:layout_height="match_parent"
 android:layout_marginRight="100dp"/>
 
</LinearLayout>

运行效果:

android绘制多个黑竖线条

以上就是本文的全部内容,希望对大家的学习有所帮助,也希望大家多多支持服务器之家。

原文链接:https://blog.csdn.net/qq_37217804/article/details/80231821

延伸 · 阅读

精彩推荐