歡迎來到Linux教程網
Linux教程網
Linux教程網
Linux教程網
您现在的位置: Linux教程網 >> UnixLinux >  >> Linux編程 >> Linux編程

Android中設置分割線

在設計Android應用時,設置分隔線的方法一:

在需要設置分隔線的布局文件中加入如下代碼:
<View 
   android:layout_width="fill_parent" 
    android:layout_height="1px"
   android:background="?android:attr/listDivider" 
/> 

運行實際結果如下:

更多Android相關信息見Android 專題頁面 http://www.linuxidc.com/topicnews.aspx?tid=11

Copyright © Linux教程網 All Rights Reserved