android绘制多个黑竖线条

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

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

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

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

1.xml代码

代码语言:javascript

<?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代码

代码语言:javascript

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.布局代码

代码语言:javascript

<?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  

运行效果:

img

以上就是本文的全部内容,希望对大家的学习有所帮助。

更多Android进阶指南 可以扫码 解锁 《Android十大板块文档》

1.Android车载应用开发系统学习指南(附项目实战)

2.Android Framework学习指南,助力成为系统级开发高手

3.2024最新Android中高级面试题汇总+解析,告别零offer

4.企业级Android音视频开发学习路线+项目实战(附源码)

5.Android Jetpack从入门到精通,构建高质量UI界面

6.Flutter技术解析与实战,跨平台首要之选

7.Kotlin从入门到实战,全方面提升架构基础

8.高级Android插件化与组件化(含实战教程和源码)

9.Android 性能优化实战+360°全方面性能调优

10.Android零基础入门到精通,高手进阶之路

敲代码不易,关注一下吧。ღ( ´・ᴗ・` ) 🤔

  • 6
    点赞
  • 1
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值