Merge pull request #2841 from Philoul/wear/new_custom_watchface
Wear CWF code simplification and improvements
This commit is contained in:
commit
2ccdf71426
|
@ -134,6 +134,7 @@ data class ResData(val value: ByteArray, val format: ResFormat) {
|
||||||
|
|
||||||
typealias CwfResDataMap = MutableMap<String, ResData>
|
typealias CwfResDataMap = MutableMap<String, ResData>
|
||||||
typealias CwfMetadataMap = MutableMap<CwfMetadataKey, String>
|
typealias CwfMetadataMap = MutableMap<CwfMetadataKey, String>
|
||||||
|
fun CwfResDataMap.isEquals(dataMap: CwfResDataMap) = (this.size == dataMap.size) && this.all { (key, resData) -> dataMap[key]?.value.contentEquals(resData.value) == true }
|
||||||
|
|
||||||
@Serializable
|
@Serializable
|
||||||
data class CwfData(val json: String, var metadata: CwfMetadataMap, val resDatas: CwfResDataMap)
|
data class CwfData(val json: String, var metadata: CwfMetadataMap, val resDatas: CwfResDataMap)
|
||||||
|
|
|
@ -32,7 +32,6 @@
|
||||||
android:layout_marginTop="4dp"
|
android:layout_marginTop="4dp"
|
||||||
android:layout_marginEnd="6dp"
|
android:layout_marginEnd="6dp"
|
||||||
android:layout_marginBottom="1dp"
|
android:layout_marginBottom="1dp"
|
||||||
android:src="@drawable/watchface_custom"
|
|
||||||
android:contentDescription="@string/a11y_file" />
|
android:contentDescription="@string/a11y_file" />
|
||||||
|
|
||||||
<LinearLayout
|
<LinearLayout
|
||||||
|
|
|
@ -27,7 +27,6 @@
|
||||||
android:layout_marginEnd="6dp"
|
android:layout_marginEnd="6dp"
|
||||||
android:layout_marginBottom="1dp"
|
android:layout_marginBottom="1dp"
|
||||||
android:layout_gravity="center_horizontal"
|
android:layout_gravity="center_horizontal"
|
||||||
android:src="@drawable/watchface_custom"
|
|
||||||
android:contentDescription="@string/a11y_file" />
|
android:contentDescription="@string/a11y_file" />
|
||||||
|
|
||||||
<TextView
|
<TextView
|
||||||
|
|
|
@ -192,7 +192,6 @@
|
||||||
android:tag="cover_chart"
|
android:tag="cover_chart"
|
||||||
android:layout_width="match_parent"
|
android:layout_width="match_parent"
|
||||||
android:layout_height="match_parent"
|
android:layout_height="match_parent"
|
||||||
android:src="@drawable/watchface_custom"
|
|
||||||
android:visibility="visible"
|
android:visibility="visible"
|
||||||
android:orientation="vertical" />
|
android:orientation="vertical" />
|
||||||
|
|
||||||
|
|
|
@ -44,6 +44,7 @@ import app.aaps.core.interfaces.rx.weardata.ResFileMap
|
||||||
import app.aaps.core.interfaces.rx.weardata.ResFormat
|
import app.aaps.core.interfaces.rx.weardata.ResFormat
|
||||||
import app.aaps.core.interfaces.rx.weardata.ViewKeys
|
import app.aaps.core.interfaces.rx.weardata.ViewKeys
|
||||||
import app.aaps.core.interfaces.rx.weardata.ZipWatchfaceFormat
|
import app.aaps.core.interfaces.rx.weardata.ZipWatchfaceFormat
|
||||||
|
import app.aaps.core.interfaces.rx.weardata.isEquals
|
||||||
import app.aaps.wear.R
|
import app.aaps.wear.R
|
||||||
import app.aaps.wear.databinding.ActivityCustomBinding
|
import app.aaps.wear.databinding.ActivityCustomBinding
|
||||||
import app.aaps.wear.watchfaces.utils.BaseWatchFace
|
import app.aaps.wear.watchfaces.utils.BaseWatchFace
|
||||||
|
@ -77,8 +78,6 @@ class CustomWatchface : BaseWatchFace() {
|
||||||
persistence.store(defaultWatchface(), true)
|
persistence.store(defaultWatchface(), true)
|
||||||
(context.getSystemService(WINDOW_SERVICE) as WindowManager).defaultDisplay.getSize(displaySize)
|
(context.getSystemService(WINDOW_SERVICE) as WindowManager).defaultDisplay.getSize(displaySize)
|
||||||
zoomFactor = (displaySize.x).toDouble() / TEMPLATE_RESOLUTION.toDouble()
|
zoomFactor = (displaySize.x).toDouble() / TEMPLATE_RESOLUTION.toDouble()
|
||||||
FontMap.init(this)
|
|
||||||
ViewMap.init(this)
|
|
||||||
return binding
|
return binding
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -92,7 +91,7 @@ class CustomWatchface : BaseWatchFace() {
|
||||||
|
|
||||||
override fun setDataFields() {
|
override fun setDataFields() {
|
||||||
super.setDataFields()
|
super.setDataFields()
|
||||||
binding.direction2.setImageDrawable(TrendArrowMap.drawable(this))
|
binding.direction2.setImageDrawable(TrendArrowMap.drawable())
|
||||||
// rotate the second hand.
|
// rotate the second hand.
|
||||||
binding.secondHand.rotation = TimeOfDay().secondOfMinute * 6f
|
binding.secondHand.rotation = TimeOfDay().secondOfMinute * 6f
|
||||||
// rotate the minute hand.
|
// rotate the minute hand.
|
||||||
|
@ -148,8 +147,12 @@ class CustomWatchface : BaseWatchFace() {
|
||||||
updatePref(it.customWatchfaceData.metadata)
|
updatePref(it.customWatchfaceData.metadata)
|
||||||
try {
|
try {
|
||||||
val json = JSONObject(it.customWatchfaceData.json)
|
val json = JSONObject(it.customWatchfaceData.json)
|
||||||
|
if (!resDataMap.isEquals(it.customWatchfaceData.resDatas)) {
|
||||||
resDataMap = it.customWatchfaceData.resDatas
|
resDataMap = it.customWatchfaceData.resDatas
|
||||||
FontMap.init(this)
|
FontMap.init(this)
|
||||||
|
ViewMap.init(this)
|
||||||
|
TrendArrowMap.init(this)
|
||||||
|
}
|
||||||
enableSecond = json.optBoolean(ENABLESECOND.key) && sp.getBoolean(R.string.key_show_seconds, true)
|
enableSecond = json.optBoolean(ENABLESECOND.key) && sp.getBoolean(R.string.key_show_seconds, true)
|
||||||
highColor = getColor(json.optString(HIGHCOLOR.key), ContextCompat.getColor(this, R.color.dark_highColor))
|
highColor = getColor(json.optString(HIGHCOLOR.key), ContextCompat.getColor(this, R.color.dark_highColor))
|
||||||
midColor = getColor(json.optString(MIDCOLOR.key), ContextCompat.getColor(this, R.color.inrange))
|
midColor = getColor(json.optString(MIDCOLOR.key), ContextCompat.getColor(this, R.color.inrange))
|
||||||
|
@ -160,27 +163,18 @@ class CustomWatchface : BaseWatchFace() {
|
||||||
basalCenterColor = getColor(json.optString(BASALCENTERCOLOR.key), ContextCompat.getColor(this, R.color.basal_light))
|
basalCenterColor = getColor(json.optString(BASALCENTERCOLOR.key), ContextCompat.getColor(this, R.color.basal_light))
|
||||||
gridColor = getColor(json.optString(GRIDCOLOR.key), Color.WHITE)
|
gridColor = getColor(json.optString(GRIDCOLOR.key), Color.WHITE)
|
||||||
pointSize = json.optInt(POINTSIZE.key, 2)
|
pointSize = json.optInt(POINTSIZE.key, 2)
|
||||||
dayNameFormat = json.optString(DAYNAMEFORMAT.key, "E")
|
dayNameFormat = json.optString(DAYNAMEFORMAT.key, "E").takeIf { it.matches(Regex("E{1,4}")) } ?: "E"
|
||||||
.takeIf { it.matches(Regex("E{1,4}")) } ?: "E"
|
monthFormat = json.optString(MONTHFORMAT.key, "MMM").takeIf { it.matches(Regex("M{1,4}")) } ?: "MMM"
|
||||||
monthFormat = json.optString(MONTHFORMAT.key, "MMM")
|
|
||||||
.takeIf { it.matches(Regex("M{1,4}")) } ?: "MMM"
|
|
||||||
binding.dayName.text = dateUtil.dayNameString(dayNameFormat).substringBeforeLast(".") // Update daynName and month according to format on cwf loading
|
binding.dayName.text = dateUtil.dayNameString(dayNameFormat).substringBeforeLast(".") // Update daynName and month according to format on cwf loading
|
||||||
binding.month.text = dateUtil.monthString(monthFormat).substringBeforeLast(".")
|
binding.month.text = dateUtil.monthString(monthFormat).substringBeforeLast(".")
|
||||||
|
|
||||||
binding.mainLayout.forEach { view ->
|
binding.mainLayout.forEach { view ->
|
||||||
ViewMap.fromId(view.id)?.let { viewMap ->
|
ViewMap.fromId(view.id)?.let { viewMap ->
|
||||||
json.optJSONObject(viewMap.key)?.also { viewJson ->
|
json.optJSONObject(viewMap.key)?.also { viewJson ->
|
||||||
viewMap.viewJson = viewJson
|
|
||||||
viewMap.customizeViewCommon(view)
|
|
||||||
when (view) {
|
when (view) {
|
||||||
is TextView -> {
|
is TextView -> viewMap.customizeTextView(view, viewJson)
|
||||||
viewMap.customizeTextView(view)
|
is ImageView -> viewMap.customizeImageView(view, viewJson)
|
||||||
}
|
else -> viewMap.customizeViewCommon(view, viewJson)
|
||||||
|
|
||||||
is ImageView -> {
|
|
||||||
viewMap.customizeImageView(view)
|
|
||||||
}
|
|
||||||
|
|
||||||
}
|
}
|
||||||
} ?: apply {
|
} ?: apply {
|
||||||
view.visibility = View.GONE
|
view.visibility = View.GONE
|
||||||
|
@ -266,7 +260,7 @@ class CustomWatchface : BaseWatchFace() {
|
||||||
}
|
}
|
||||||
val metadataMap = ZipWatchfaceFormat.loadMetadata(json)
|
val metadataMap = ZipWatchfaceFormat.loadMetadata(json)
|
||||||
val drawableDataMap: CwfResDataMap = mutableMapOf()
|
val drawableDataMap: CwfResDataMap = mutableMapOf()
|
||||||
getResourceByteArray(app.aaps.shared.impl.R.drawable.watchface_custom)?.let {
|
getResourceByteArray(R.drawable.watchface_custom)?.let {
|
||||||
drawableDataMap[ResFileMap.CUSTOM_WATCHFACE.fileName] = ResData(it, ResFormat.PNG)
|
drawableDataMap[ResFileMap.CUSTOM_WATCHFACE.fileName] = ResData(it, ResFormat.PNG)
|
||||||
}
|
}
|
||||||
return EventData.ActionSetCustomWatchface(CwfData(json.toString(4), metadataMap, drawableDataMap))
|
return EventData.ActionSetCustomWatchface(CwfData(json.toString(4), metadataMap, drawableDataMap))
|
||||||
|
@ -342,10 +336,8 @@ class CustomWatchface : BaseWatchFace() {
|
||||||
params.leftMargin = 0
|
params.leftMargin = 0
|
||||||
binding.background.layoutParams = params
|
binding.background.layoutParams = params
|
||||||
binding.background.visibility = View.VISIBLE
|
binding.background.visibility = View.VISIBLE
|
||||||
// Update second visibility
|
|
||||||
updateSecondVisibility()
|
updateSecondVisibility()
|
||||||
setSecond() // Update second visibility for time view
|
setSecond() // Update second visibility for time view
|
||||||
// Update timePeriod visibility
|
|
||||||
binding.timePeriod.visibility = (binding.timePeriod.visibility == View.VISIBLE && android.text.format.DateFormat.is24HourFormat(this).not()).toVisibility()
|
binding.timePeriod.visibility = (binding.timePeriod.visibility == View.VISIBLE && android.text.format.DateFormat.is24HourFormat(this).not()).toVisibility()
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -362,7 +354,7 @@ class CustomWatchface : BaseWatchFace() {
|
||||||
BACKGROUND(
|
BACKGROUND(
|
||||||
key = ViewKeys.BACKGROUND.key,
|
key = ViewKeys.BACKGROUND.key,
|
||||||
id = R.id.background,
|
id = R.id.background,
|
||||||
defaultDrawable = app.aaps.shared.impl.R.drawable.background,
|
defaultDrawable = R.drawable.background,
|
||||||
customDrawable = ResFileMap.BACKGROUND,
|
customDrawable = ResFileMap.BACKGROUND,
|
||||||
customHigh = ResFileMap.BACKGROUND_HIGH,
|
customHigh = ResFileMap.BACKGROUND_HIGH,
|
||||||
customLow = ResFileMap.BACKGROUND_LOW
|
customLow = ResFileMap.BACKGROUND_LOW
|
||||||
|
@ -405,7 +397,7 @@ class CustomWatchface : BaseWatchFace() {
|
||||||
COVER_PLATE(
|
COVER_PLATE(
|
||||||
key = ViewKeys.COVER_PLATE.key,
|
key = ViewKeys.COVER_PLATE.key,
|
||||||
id = R.id.cover_plate,
|
id = R.id.cover_plate,
|
||||||
defaultDrawable = app.aaps.shared.impl.R.drawable.simplified_dial,
|
defaultDrawable = R.drawable.simplified_dial,
|
||||||
customDrawable = ResFileMap.COVER_PLATE,
|
customDrawable = ResFileMap.COVER_PLATE,
|
||||||
customHigh = ResFileMap.COVER_PLATE_HIGH,
|
customHigh = ResFileMap.COVER_PLATE_HIGH,
|
||||||
customLow = ResFileMap.COVER_PLATE_LOW
|
customLow = ResFileMap.COVER_PLATE_LOW
|
||||||
|
@ -413,7 +405,7 @@ class CustomWatchface : BaseWatchFace() {
|
||||||
HOUR_HAND(
|
HOUR_HAND(
|
||||||
key = ViewKeys.HOUR_HAND.key,
|
key = ViewKeys.HOUR_HAND.key,
|
||||||
id = R.id.hour_hand,
|
id = R.id.hour_hand,
|
||||||
defaultDrawable = app.aaps.shared.impl.R.drawable.hour_hand,
|
defaultDrawable = R.drawable.hour_hand,
|
||||||
customDrawable = ResFileMap.HOUR_HAND,
|
customDrawable = ResFileMap.HOUR_HAND,
|
||||||
customHigh = ResFileMap.HOUR_HAND_HIGH,
|
customHigh = ResFileMap.HOUR_HAND_HIGH,
|
||||||
customLow = ResFileMap.HOUR_HAND_LOW
|
customLow = ResFileMap.HOUR_HAND_LOW
|
||||||
|
@ -421,7 +413,7 @@ class CustomWatchface : BaseWatchFace() {
|
||||||
MINUTE_HAND(
|
MINUTE_HAND(
|
||||||
key = ViewKeys.MINUTE_HAND.key,
|
key = ViewKeys.MINUTE_HAND.key,
|
||||||
id = R.id.minute_hand,
|
id = R.id.minute_hand,
|
||||||
defaultDrawable = app.aaps.shared.impl.R.drawable.minute_hand,
|
defaultDrawable = R.drawable.minute_hand,
|
||||||
customDrawable = ResFileMap.MINUTE_HAND,
|
customDrawable = ResFileMap.MINUTE_HAND,
|
||||||
customHigh = ResFileMap.MINUTE_HAND_HIGH,
|
customHigh = ResFileMap.MINUTE_HAND_HIGH,
|
||||||
customLow = ResFileMap.MINUTE_HAND_LOW
|
customLow = ResFileMap.MINUTE_HAND_LOW
|
||||||
|
@ -430,7 +422,7 @@ class CustomWatchface : BaseWatchFace() {
|
||||||
key = ViewKeys.SECOND_HAND.key,
|
key = ViewKeys.SECOND_HAND.key,
|
||||||
id = R.id.second_hand,
|
id = R.id.second_hand,
|
||||||
pref = R.string.key_show_seconds,
|
pref = R.string.key_show_seconds,
|
||||||
defaultDrawable = app.aaps.shared.impl.R.drawable.second_hand,
|
defaultDrawable = R.drawable.second_hand,
|
||||||
customDrawable = ResFileMap.SECOND_HAND,
|
customDrawable = ResFileMap.SECOND_HAND,
|
||||||
customHigh = ResFileMap.SECOND_HAND_HIGH,
|
customHigh = ResFileMap.SECOND_HAND_HIGH,
|
||||||
customLow = ResFileMap.SECOND_HAND_LOW
|
customLow = ResFileMap.SECOND_HAND_LOW
|
||||||
|
@ -438,44 +430,56 @@ class CustomWatchface : BaseWatchFace() {
|
||||||
|
|
||||||
companion object {
|
companion object {
|
||||||
|
|
||||||
fun init(cwf: CustomWatchface) = values().forEach { it.cwf = cwf }
|
fun init(cwf: CustomWatchface) = values().forEach {
|
||||||
|
it.cwf = cwf
|
||||||
|
// reset all customized drawable when new watchface is loaded
|
||||||
|
it.rangeCustom = null
|
||||||
|
it.highCustom = null
|
||||||
|
it.lowCustom = null
|
||||||
|
it.textDrawable = null
|
||||||
|
}
|
||||||
fun fromId(id: Int): ViewMap? = values().firstOrNull { it.id == id }
|
fun fromId(id: Int): ViewMap? = values().firstOrNull { it.id == id }
|
||||||
}
|
}
|
||||||
|
|
||||||
lateinit var cwf: CustomWatchface
|
lateinit var cwf: CustomWatchface
|
||||||
var viewJson = JSONObject()
|
var width = 0
|
||||||
|
var height = 0
|
||||||
|
var left = 0
|
||||||
|
var top = 0
|
||||||
|
var rangeCustom: Drawable? = null
|
||||||
|
get() = field ?: customDrawable?.let { cd -> cwf.resDataMap[cd.fileName]?.toDrawable(cwf.resources).also { rangeCustom = it } }
|
||||||
|
var highCustom: Drawable? = null
|
||||||
|
get() = field ?: customHigh?.let { cd -> cwf.resDataMap[cd.fileName]?.toDrawable(cwf.resources).also { highCustom = it } }
|
||||||
|
var lowCustom: Drawable? = null
|
||||||
|
get() = field ?: customLow?.let { cd -> cwf.resDataMap[cd.fileName]?.toDrawable(cwf.resources).also { lowCustom = it } }
|
||||||
|
var textDrawable: Drawable? = null
|
||||||
|
val drawable: Drawable?
|
||||||
|
get() = when (cwf.singleBg.sgvLevel) {
|
||||||
|
1L -> highCustom ?: rangeCustom
|
||||||
|
0L -> rangeCustom
|
||||||
|
-1L -> lowCustom ?: rangeCustom
|
||||||
|
else -> rangeCustom
|
||||||
|
}
|
||||||
fun visibility(): Boolean = this.pref?.let { cwf.sp.getBoolean(it, true) }
|
fun visibility(): Boolean = this.pref?.let { cwf.sp.getBoolean(it, true) }
|
||||||
?: true
|
?: true
|
||||||
|
|
||||||
fun drawable(): Drawable? = customDrawable?.let { cd ->
|
fun textDrawable(viewJson: JSONObject): Drawable? = textDrawable
|
||||||
when (cwf.singleBg.sgvLevel) {
|
?: cwf.resDataMap[viewJson.optString(JsonKeys.BACKGROUND.key)]?.toDrawable(cwf.resources, width, height)?.also { textDrawable = it }
|
||||||
1L -> {
|
|
||||||
customHigh?.let { resFileMap -> cwf.resDataMap[resFileMap.fileName] }?.toDrawable(cwf.resources) ?: cwf.resDataMap[cd.fileName]?.toDrawable(cwf.resources)
|
|
||||||
}
|
|
||||||
|
|
||||||
0L -> {
|
fun customizeViewCommon(view: View, viewJson: JSONObject) {
|
||||||
cwf.resDataMap[cd.fileName]?.toDrawable(cwf.resources)
|
width = (viewJson.optInt(WIDTH.key) * cwf.zoomFactor).toInt()
|
||||||
}
|
height = (viewJson.optInt(HEIGHT.key) * cwf.zoomFactor).toInt()
|
||||||
|
left = (viewJson.optInt(LEFTMARGIN.key) * cwf.zoomFactor).toInt()
|
||||||
-1L -> {
|
top = (viewJson.optInt(TOPMARGIN.key) * cwf.zoomFactor).toInt()
|
||||||
customLow?.let { resFileMap -> cwf.resDataMap[resFileMap.fileName] }?.toDrawable(cwf.resources) ?: cwf.resDataMap[cd.fileName]?.toDrawable(cwf.resources)
|
|
||||||
}
|
|
||||||
|
|
||||||
else -> cwf.resDataMap[cd.fileName]?.toDrawable(cwf.resources)
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
fun customizeViewCommon(view: View) {
|
|
||||||
val width = (viewJson.optInt(WIDTH.key) * cwf.zoomFactor).toInt()
|
|
||||||
val height = (viewJson.optInt(HEIGHT.key) * cwf.zoomFactor).toInt()
|
|
||||||
val params = FrameLayout.LayoutParams(width, height)
|
val params = FrameLayout.LayoutParams(width, height)
|
||||||
params.topMargin = (viewJson.optInt(TOPMARGIN.key) * cwf.zoomFactor).toInt()
|
params.topMargin = top
|
||||||
params.leftMargin = (viewJson.optInt(LEFTMARGIN.key) * cwf.zoomFactor).toInt()
|
params.leftMargin = left
|
||||||
view.layoutParams = params
|
view.layoutParams = params
|
||||||
view.visibility = cwf.setVisibility(viewJson.optString(VISIBILITY.key, JsonKeyValues.GONE.key), visibility())
|
view.visibility = cwf.setVisibility(viewJson.optString(VISIBILITY.key, JsonKeyValues.GONE.key), visibility())
|
||||||
}
|
}
|
||||||
|
|
||||||
fun customizeTextView(view: TextView) {
|
fun customizeTextView(view: TextView, viewJson: JSONObject) {
|
||||||
|
customizeViewCommon(view, viewJson)
|
||||||
view.rotation = viewJson.optInt(ROTATION.key).toFloat()
|
view.rotation = viewJson.optInt(ROTATION.key).toFloat()
|
||||||
view.setTextSize(TypedValue.COMPLEX_UNIT_PX, (viewJson.optInt(TEXTSIZE.key, 22) * cwf.zoomFactor).toFloat())
|
view.setTextSize(TypedValue.COMPLEX_UNIT_PX, (viewJson.optInt(TEXTSIZE.key, 22) * cwf.zoomFactor).toFloat())
|
||||||
view.gravity = GravityMap.gravity(viewJson.optString(GRAVITY.key, GravityMap.CENTER.key))
|
view.gravity = GravityMap.gravity(viewJson.optString(GRAVITY.key, GravityMap.CENTER.key))
|
||||||
|
@ -487,12 +491,13 @@ class CustomWatchface : BaseWatchFace() {
|
||||||
view.isAllCaps = viewJson.optBoolean(ALLCAPS.key)
|
view.isAllCaps = viewJson.optBoolean(ALLCAPS.key)
|
||||||
if (viewJson.has(TEXTVALUE.key))
|
if (viewJson.has(TEXTVALUE.key))
|
||||||
view.text = viewJson.optString(TEXTVALUE.key)
|
view.text = viewJson.optString(TEXTVALUE.key)
|
||||||
view.background = cwf.resDataMap[viewJson.optString(JsonKeys.BACKGROUND.key)]?.toDrawable(cwf.resources, view.width, view.height)
|
view.background = textDrawable(viewJson)
|
||||||
}
|
}
|
||||||
|
|
||||||
fun customizeImageView(view: ImageView) {
|
fun customizeImageView(view: ImageView, viewJson: JSONObject) {
|
||||||
|
customizeViewCommon(view, viewJson)
|
||||||
view.clearColorFilter()
|
view.clearColorFilter()
|
||||||
drawable()?.let {
|
drawable?.let {
|
||||||
if (viewJson.has(COLOR.key)) // Note only works on bitmap (png or jpg) or xml included into res, not for svg files
|
if (viewJson.has(COLOR.key)) // Note only works on bitmap (png or jpg) or xml included into res, not for svg files
|
||||||
it.colorFilter = cwf.changeDrawableColor(cwf.getColor(viewJson.optString(COLOR.key)))
|
it.colorFilter = cwf.changeDrawableColor(cwf.getColor(viewJson.optString(COLOR.key)))
|
||||||
else
|
else
|
||||||
|
@ -522,12 +527,16 @@ class CustomWatchface : BaseWatchFace() {
|
||||||
|
|
||||||
companion object {
|
companion object {
|
||||||
|
|
||||||
fun drawable(cwf: CustomWatchface): Drawable {
|
fun init(cwf: CustomWatchface) = values().forEach {
|
||||||
val arrow = values().firstOrNull { it.symbol == cwf.singleBg.slopeArrow } ?: NONE
|
it.cwf = cwf
|
||||||
return arrow.customDrawable?.let { cwf.resDataMap[it.fileName] }?.toDrawable(cwf.resources) ?: cwf.resources.getDrawable(arrow.icon)
|
it.arrowCustom = null
|
||||||
|
}
|
||||||
|
fun drawable() = values().firstOrNull { it.symbol == it.cwf.singleBg.slopeArrow }?.arrowCustom ?: NONE.arrowCustom
|
||||||
}
|
}
|
||||||
|
|
||||||
}
|
lateinit var cwf: CustomWatchface
|
||||||
|
var arrowCustom: Drawable? = null
|
||||||
|
get() = field ?: customDrawable?.let { cwf.resDataMap[it.fileName]?.toDrawable(cwf.resources)?.also { arrowCustom = it } } ?: cwf.resources.getDrawable(icon)
|
||||||
}
|
}
|
||||||
|
|
||||||
@SuppressLint("RtlHardcoded")
|
@SuppressLint("RtlHardcoded")
|
||||||
|
|
Before Width: | Height: | Size: 41 KiB After Width: | Height: | Size: 41 KiB |
Loading…
Reference in a new issue