当前位置:   article > 正文

一起Talk Android吧(第九十八回:Android中的分隔线(使用TextView实现分隔线))_安卓textview之间用线隔开

安卓textview之间用线隔开

各位看官们,大家好,上一回中咱们说的是Android之排错的例子,这一回咱们说的例子是Android中的分隔线。闲话休提,言归正转。让我们一起Talk Android吧!

看官们,在实际项目中有时候需要在布局中添加分隔线,这时可以使用LinearLayoutdivider属性,具体使用的方法如下:

<LinearLayout
    xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:tools="http://schemas.android.com/tools"
    android:orientation="vertical"
    android:id="@+id/activity_main"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:divider="@color/colorBlue" //给分隔线设置颜色,颜色位于.../res/values/colors.xml文件中
    android:showDividers="beginning"   //设置显示分隔线的位置为布局开头
    tools:context="com.example.talk8.blogapp003.MainActivity">
LinearLayout>
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10
  • 11

上面的代码中关于divider的属性都添加了注释,其它的属性,我们之前介绍过,相信大家都可以看明白。

使用divider属性有一些局限性,那就是它只能在布局开头,中间和末尾三个地方显示分隔线,而且没有办法调节分隔线的宽度。如果我们想在不同UI控件之间添加分隔线时,根本无法使用它。为此,我想出一个办法,使用TextView控件来显示分隔线。具体的方法如下:

    <TextView
        android:background="@color/colorGreen"
        android:layout_width="match_parent"
        android:layout_height="5dp"/>
  • 1
  • 2
  • 3
  • 4

我们给TextView设置了绿色背景,宽度与布局相同,高度为5dp,当然了这个高度可以自己去定义。这样的分隔线是水平的,如果想使用垂直的分隔线,只需要把宽度和高度属性的值互换一下。为了显示它的和具体效果,我们在布局文件中添加了两行文字,在这两行文字之间插入分隔线,具体的代码如下:

<LinearLayout
    xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:tools="http://schemas.android.com/tools"
    android:orientation="vertical"
    android:id="@+id/activity_main"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    tools:context="com.example.talk8.blogapp003.MainActivity">

    <TextView
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:textSize="16sp"
        android:text="This is Line 1"/>

    <TextView
        android:background="@color/colorGreen"
        android:layout_width="match_parent"
        android:layout_height="5dp"/

    <TextView
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:textSize="16sp"
        android:text="This is Line 2"/>

LinearLayout>
  • 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
  • 26
  • 27

把该布局文件保存为divider.xml并且存放到layout目录下,然后在ActivityonCreate()方法中把它添加进来:

setContentView(R.layout.divider)
  • 1

这样就可以了,下面是程序的运行结果,请大家参考:

这里写图片描述

看官们,这只是一个TextView的巧妙应用,实际项目中不推荐这么去实现分隔线。当前实现分隔线的办法也有多种,至于哪种好,也没有统一的定论,因此不再介绍其它实现方法了。我介绍的这种方法,只是一个引子,它用来引出主角,那么主角是什么呢?请大家继续关注下一回的内容。

各位看官,关于Android中的分隔线的例子咱们就介绍到这里,欲知后面还有什么例子,且听下回分解!


声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/Gausst松鼠会/article/detail/242760
推荐阅读
相关标签
  

闽ICP备14008679号