Android Linearlayout 添加分割线

来源:互联网 发布:天命西游数据平移 编辑:程序博客网 时间:2024/04/30 09:22

只要在xml 添加 就可以了

<?xml version="1.0" encoding="utf-8"?>

<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:orientation="horizontal"
    android:divider="@drawable/muti_dialog_horizontal_split"
    android:showDividers="middle"

     >
    
    <Button 
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:layout_weight="1"
        android:text="button"
        android:background="@drawable/group_touch_background"
        />
    
    <Button 
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
         android:layout_weight="1"
          android:background="@drawable/group_touch_background"
        android:text="按钮1"
        />
    


</LinearLayout>
原创粉丝点击