效果:

Android 圆角矩形


corner.xml

[html] view plaincopy

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

  2. <shape xmlns:android="http://schemas.android.com/apk/res/android" >  

  3.   

  4.     <solid android:color="#ffffff" />  

  5.   

  6.     <corners  

  7.         android:bottomLeftRadius="20dp"  

  8.         android:bottomRightRadius="20dp"  

  9.         android:topLeftRadius="20dp"  

  10.         android:topRightRadius="20dp" />  

  11.   

  12. </shape>  


android:background="@drawable/corner" 


转载于:https://my.oschina.net/bv10000/blog/187579

相关文章:

  • 2022-12-23
  • 2022-12-23
  • 2022-12-23
  • 2021-07-07
  • 2021-07-11
  • 2021-09-13
  • 2022-12-23
猜你喜欢
  • 2022-12-23
  • 2022-12-23
  • 2022-12-23
  • 2021-04-24
  • 2022-12-23
  • 2021-09-22
  • 2022-12-23
相关资源
相似解决方案