我是靠谱客的博主 犹豫盼望,最近开发中收集的这篇文章主要介绍android layout 分割线,LinearLayout分割线,觉得挺不错的,现在分享给大家,希望可以做个参考。

概述

LinearLayout

原来LinearLayout还有设置分割线功能

知识点

android:divider设置作为分割线的图片

android:showDividers设置分割线的位置,none(无),beginning(开始),end(结束),middle(每两个组件间)

dividerPadding设置分割线的Padding

应用场景

一般设置界面,关于我们界面

效果图

4e5ac4f09f20

LinearLayout.png

关键代码

activity_ll

xmlns:app="http://schemas.android.com/apk/res-auto"

xmlns:tools="http://schemas.android.com/tools"

android:layout_width="match_parent"

android:layout_height="match_parent"

tools:context="com.cong.androidlearn.LLActivity"

android:orientation="vertical"

android:showDividers="middle|end"

android:divider="@drawable/divider_line"

>

android:id="@+id/tv_01"

android:layout_width="wrap_content"

android:layout_height="wrap_content"

android:text="233"/>

android:id="@+id/tv_02"

android:layout_width="wrap_content"

android:layout_height="wrap_content"

android:text="666"/>

android:id="@+id/tv_03"

android:layout_width="wrap_content"

android:layout_height="wrap_content"

android:text="999"/>

divider_line.xml

android:left="15dp"

android:right="15dp"

android:top="15dp"

android:bottom="15dp">

如果把上面黄色换成白色,是不是就是你想要的呢

最后

以上就是犹豫盼望为你收集整理的android layout 分割线,LinearLayout分割线的全部内容,希望文章能够帮你解决android layout 分割线,LinearLayout分割线所遇到的程序开发问题。

如果觉得靠谱客网站的内容还不错,欢迎将靠谱客网站推荐给程序员好友。

本图文内容来源于网友提供,作为学习参考使用,或来自网络收集整理,版权属于原作者所有。
点赞(46)

评论列表共有 0 条评论

立即
投稿
返回
顶部