我正在尝试模仿这种效果:
但是我一直做不到,
<?xml version="1.0" encoding="utf-8"?>
<ripple xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:color="#fff"
tools:targetApi="lollipop">
<item android:id="@android:id/mask">
<shape android:shape="oval">
<solid android:color="?android:colorAccent" />
</shape>
</item>
</ripple>
答案 0 :(得分:0)
您不需要任何自定义背景,只需使用如下所示的ImageButton:
func number(for cof: UInt8, limit: UInt64) -> UInt64 {
var decimalResult = (1 + Decimal(cof)/255) * Decimal(limit) / 1000
var roundedResult = Decimal()
NSDecimalRound(&roundedResult, &decimalResult, 0, NSDecimalNumber.RoundingMode.plain)
return NSDecimalNumber(decimal: roundedResult).uint64Value
}
print(number(for: 128, limit: 21000)) //->32
您可能还需要添加填充。