-
Notifications
You must be signed in to change notification settings - Fork 1.2k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #99 from hannesa2/CodeFormat
Common code format
- Loading branch information
Showing
22 changed files
with
343 additions
and
153 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
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
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 |
---|---|---|
@@ -1,3 +1,4 @@ | ||
<manifest package="com.dd.circular.progress.button"> | ||
<application/> | ||
|
||
<application /> | ||
</manifest> |
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
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
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
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 |
---|---|---|
@@ -1,11 +1,7 @@ | ||
<?xml version="1.0" encoding="utf-8"?> | ||
<selector xmlns:android="http://schemas.android.com/apk/res/android"> | ||
<item android:state_pressed="true" | ||
android:color="@color/cpb_green_dark"/> | ||
<item android:state_focused="true" | ||
android:color="@color/cpb_green_dark"/> | ||
<item android:state_enabled="false" | ||
android:color="@color/cpb_grey"/> | ||
<item android:state_enabled="true" | ||
android:color="@color/cpb_green"/> | ||
<item android:state_pressed="true" android:color="@color/cpb_green_dark" /> | ||
<item android:state_focused="true" android:color="@color/cpb_green_dark" /> | ||
<item android:state_enabled="false" android:color="@color/cpb_grey" /> | ||
<item android:state_enabled="true" android:color="@color/cpb_green" /> | ||
</selector> |
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 |
---|---|---|
@@ -1,11 +1,7 @@ | ||
<?xml version="1.0" encoding="utf-8"?> | ||
<selector xmlns:android="http://schemas.android.com/apk/res/android"> | ||
<item android:state_pressed="true" | ||
android:color="@color/cpb_red_dark"/> | ||
<item android:state_focused="true" | ||
android:color="@color/cpb_red_dark"/> | ||
<item android:state_enabled="false" | ||
android:color="@color/cpb_grey"/> | ||
<item android:state_enabled="true" | ||
android:color="@color/cpb_red"/> | ||
<item android:state_pressed="true" android:color="@color/cpb_red_dark" /> | ||
<item android:state_focused="true" android:color="@color/cpb_red_dark" /> | ||
<item android:state_enabled="false" android:color="@color/cpb_grey" /> | ||
<item android:state_enabled="true" android:color="@color/cpb_red" /> | ||
</selector> |
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 |
---|---|---|
@@ -1,11 +1,7 @@ | ||
<?xml version="1.0" encoding="utf-8"?> | ||
<selector xmlns:android="http://schemas.android.com/apk/res/android"> | ||
<item android:state_pressed="true" | ||
android:color="@color/cpb_blue_dark"/> | ||
<item android:state_focused="true" | ||
android:color="@color/cpb_blue_dark"/> | ||
<item android:state_enabled="false" | ||
android:color="@color/cpb_grey"/> | ||
<item android:state_enabled="true" | ||
android:color="@color/cpb_blue"/> | ||
<item android:state_pressed="true" android:color="@color/cpb_blue_dark" /> | ||
<item android:state_focused="true" android:color="@color/cpb_blue_dark" /> | ||
<item android:state_enabled="false" android:color="@color/cpb_grey" /> | ||
<item android:state_enabled="true" android:color="@color/cpb_blue" /> | ||
</selector> |
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 |
---|---|---|
@@ -1,9 +1,9 @@ | ||
<?xml version="1.0" encoding="utf-8"?> | ||
|
||
<shape xmlns:android="http://schemas.android.com/apk/res/android" | ||
android:shape="rectangle"> | ||
android:shape="rectangle"> | ||
<stroke | ||
android:width="@dimen/cpb_stroke_width" | ||
android:color="@color/cpb_blue"/> | ||
<solid android:color="@color/cpb_blue"/> | ||
android:width="@dimen/cpb_stroke_width" | ||
android:color="@color/cpb_blue" /> | ||
<solid android:color="@color/cpb_blue" /> | ||
</shape> |
Oops, something went wrong.