Android draw a Horizontal line between views

前端 未结 15 2269
不知归路
不知归路 2020-12-12 12:28

I have My Layout like below:




        
15条回答
  •  伪装坚强ぢ
    2020-12-12 13:09

    If you does not want to use an extra view just for underlines. Add this style on your textView.

    style="?android:listSeparatorTextViewStyle"
    

    Just down side is it will add extra properties like

    android:textStyle="bold"
    android:textAllCaps="true"
    

    which you can easily override.

提交回复
热议问题