赞
踩
各位看官们,大家好,上一回中咱们说的是Android之排错的例子,这一回咱们说的例子是Android中的分隔线。闲话休提,言归正转。让我们一起Talk Android吧!
看官们,在实际项目中有时候需要在布局中添加分隔线,这时可以使用LinearLayout
的divider
属性,具体使用的方法如下:
<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>
上面的代码中关于divider
的属性都添加了注释,其它的属性,我们之前介绍过,相信大家都可以看明白。
使用divider
属性有一些局限性,那就是它只能在布局开头,中间和末尾三个地方显示分隔线,而且没有办法调节分隔线的宽度。如果我们想在不同UI控件之间添加分隔线时,根本无法使用它。为此,我想出一个办法,使用TextView
控件来显示分隔线。具体的方法如下:
<TextView
android:background="@color/colorGreen"
android:layout_width="match_parent"
android:layout_height="5dp"/>
我们给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>
把该布局文件保存为divider.xml
并且存放到layout
目录下,然后在Activity
的onCreate()
方法中把它添加进来:
setContentView(R.layout.divider)
这样就可以了,下面是程序的运行结果,请大家参考:
看官们,这只是一个TextView
的巧妙应用,实际项目中不推荐这么去实现分隔线。当前实现分隔线的办法也有多种,至于哪种好,也没有统一的定论,因此不再介绍其它实现方法了。我介绍的这种方法,只是一个引子,它用来引出主角,那么主角是什么呢?请大家继续关注下一回的内容。
各位看官,关于Android中的分隔线的例子咱们就介绍到这里,欲知后面还有什么例子,且听下回分解!
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。