学习Android界面开发: Shape Drawable

用于绘制几何形状(geometric shape)
支持以下属性:

形状 android:shape

  • rectangle 长方形
  • ring 圆形
  • oval 椭圆形
  • line 直线

内边框填充

当Shape用作View的android:background时,Shape的属性将应用于View。但是,当View显式设置了时,Shape 的无效。

填充颜色

填充渐变色

  • android:startColor 起始色
  • android:endColor 结束色
  • android:centerColor 中间色
  • android:centerX 横向中间位置
  • android:centerY 纵向中间位置

注意会覆盖属性

笔划

  • android:width 粗细
  • android:color 颜色
  • android:dashGap 虚线间的间隔
  • android:dashWidth 虚线的宽度

笔划可以是实线或者虚线。
同时设置android:dashWidth和android:dashGap时,笔划为虚线。

你可能感兴趣的:(学习Android界面开发: Shape Drawable)