Android draw a Horizontal line between views

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

I have My Layout like below:




        
15条回答
  •  渐次进展
    2020-12-12 13:23

    You should use the new lightweight View Space to draw dividers. Your layout will load faster if you will use Space instead of View.

    Horizontal divider:

     
    

    Vertical divider:

    
    

    You can also add a background:

    
    

    Usage example:

    ....
    
    
    
    
    
    
    
    
    
    ....
    

    In order to use Space you should add the dependency in your build.gradle:

    dependencies {
        compile 'com.android.support:support-v4:22.1.+'
    }
    

    Documentation https://developer.android.com/reference/android/support/v4/widget/Space.html

提交回复
热议问题