forked from zcweng/SwitchButton
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
1 changed file
with
24 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,24 @@ | ||
# SwitchButton | ||
具有与IOS开关控件相似样式的Android控件 | ||
|
||
|
||
``` | ||
<attr name="sb_shadow_radius" format="reference|dimension"/> 阴影半径 | ||
<attr name="sb_shadow_offset" format="reference|dimension"/> 阴影偏移 | ||
<attr name="sb_shadow_color" format="reference|color"/> 阴影颜色 | ||
<attr name="sb_uncheck_color" format="reference|color"/> 关闭颜色 | ||
<attr name="sb_checked_color" format="reference|color"/> 开启颜色 | ||
<attr name="sb_border_width" format="reference|dimension"/> 边框宽度 | ||
<attr name="sb_checkline_color" format="reference|color"/> 开启指示器颜色 | ||
<attr name="sb_checkline_width" format="reference|dimension"/>开启指示器线宽 | ||
<attr name="sb_uncheckcircle_color" format="reference|color"/>关闭指示器颜色 | ||
<attr name="sb_uncheckcircle_width" format="reference|dimension"/>关闭指示器线宽 | ||
<attr name="sb_uncheckcircle_radius" format="reference|dimension"/>关闭指示器半径 | ||
<attr name="sb_checked" format="reference|boolean"/> 是否选中 | ||
<attr name="sb_shadow_effect" format="reference|boolean"/> 是否启用阴影 | ||
<attr name="sb_effect_duration" format="reference|integer"/> 动画时间,默认300ms | ||
<attr name="sb_button_color" format="reference|color"/> 按钮颜色 | ||
<attr name="sb_show_indicator" format="reference|boolean"/> 是否显示指示器,默认true:显示 | ||
<attr name="sb_background" format="reference|color"/> 背景色,默认白色 | ||
<attr name="sb_enable_effect" format="reference|boolean"/> 是否启用特效,默认true | ||
``` |