Creating horizontal and vertical dotted lines in android

前端 未结 9 2202
臣服心动
臣服心动 2021-01-30 17:14

I want to draw horizontal and vertical dotted lines in android using shapes.

I want to draw like this

\"ent

9条回答
  •  名媛妹妹
    2021-01-30 17:33

    To achieve this, You should create 2 different drawable,

    1. Horizontal Line: res/drawable/bg_horizontal_dotted_line.xml

    
    
      
    
    

    2. Vertical Drawable: res/drawable/bg_dotted_line_vertical.xml

    
    
      
        
      
    
    

    Now, All you need to do is apply the above vertical XML into the view,

    
    

    Complete Code:

    
    
    
          
    
          
    
          
    
          
    
          
        
    

提交回复
热议问题