-
Notifications
You must be signed in to change notification settings - Fork 37
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
2 additions
and
1 deletion.
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 |
---|---|---|
|
@@ -29,11 +29,12 @@ | |
* @author nekocode ([email protected]) | ||
*/ | ||
public class DividerDrawable extends Drawable { | ||
public static final int DEFAULT_STORKE_WIDTH = 1; | ||
public static final int DEFAULT_COLOR = 0xFFCCCCCC; | ||
|
||
private final Paint paint; | ||
private DividerLayout layout; | ||
private int strokeWidth; | ||
private int strokeWidth = DEFAULT_STORKE_WIDTH; | ||
private int wh[] = new int[2]; | ||
private int layouted[]; | ||
|
||
|