From 8158439cbeaf128e268517064b3d3fac8e256cad Mon Sep 17 00:00:00 2001 From: Hoang Anh Tuan Date: Thu, 12 Dec 2024 11:13:51 +0700 Subject: [PATCH] support dash --- .../coreapp/ui/view/round/RoundViewDelegate.java | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/core/android/src/main/java/com/simple/coreapp/ui/view/round/RoundViewDelegate.java b/core/android/src/main/java/com/simple/coreapp/ui/view/round/RoundViewDelegate.java index 59357381..77826c1c 100644 --- a/core/android/src/main/java/com/simple/coreapp/ui/view/round/RoundViewDelegate.java +++ b/core/android/src/main/java/com/simple/coreapp/ui/view/round/RoundViewDelegate.java @@ -98,6 +98,16 @@ public void setStrokeColor(int strokeColor) { setBgSelector(); } + public void setStrokeDashGap(int strokeDashGap) { + this.strokeDashGap = strokeDashGap; + setBgSelector(); + } + + public void setStrokeDashWidth(int strokeDashWidth) { + this.strokeDashWidth = strokeDashWidth; + setBgSelector(); + } + public void setStrokePressColor(int strokePressColor) { this.strokePressColor = strokePressColor; setBgSelector();