使用浮动或分数样式资源的自定义视图崩溃

Posted

技术标签:

【中文标题】使用浮动或分数样式资源的自定义视图崩溃【英文标题】:Custom view crash with float or fraction styleable resources 【发布时间】:2021-01-04 17:33:12 【问题描述】:

自定义视图:

class BarView : View 

    private var mBarPaint = Paint(ANTI_ALIAS_FLAG)
    private var mBarWidthRatio = 0f
    private var mBarColor = Color.BLACK

    var barWidthRatio
        get() = mBarWidthRatio
        set(value) 
            mBarWidthRatio = value
            invalidate()
        

    var barColor
        get() = mBarColor
        set(value) 
            mBarColor = value
            invalidate()
        

    constructor(context: Context) : super(context)

    constructor(context: Context, attrs: AttributeSet) : super(context, attrs) 
        context.obtainStyledAttributes(attrs, R.styleable.BarView).apply 
            mBarWidthRatio = getFloat(R.styleable.BarView_barColor, 0f)
            mBarColor = getColor(R.styleable.BarView_barWidthRatio, 0)
            recycle()
        
    

    override fun onDraw(canvas: Canvas) 
        mBarPaint.color = mBarColor
        canvas.drawRect(0f, 0f, width * mBarWidthRatio, height.toFloat(), mBarPaint)
    


样式化资源:

<resources>
    <declare-styleable name="BarView">
        <attr name="barColor" format="color" />
        <attr name="barWidthRatio" format="float" />
    </declare-styleable>
</resources>

活动 XML:

<?xml version="1.0" encoding="utf-8"?>
<androidx.constraintlayout.widget.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:app="http://schemas.android.com/apk/res-auto"
    xmlns:tools="http://schemas.android.com/tools"
    android:id="@+id/myLayout"
    android:layout_
    android:layout_
    tools:context=".MainActivity">

    <androidx.constraintlayout.widget.Guideline
        android:id="@+id/guideline"
        android:layout_
        android:layout_
        android:orientation="vertical"
        app:layout_constraintGuide_begin="134dp" />


    <Button
        android:id="@+id/button"
        android:layout_
        android:layout_
        android:text="Button"
        app:layout_constraintBottom_toBottomOf="parent"
        app:layout_constraintEnd_toStartOf="@+id/guideline"
        app:layout_constraintStart_toStartOf="parent"
        app:layout_constraintTop_toTopOf="parent" />

    <com.example.barchart2.BarView
        android:id="@+id/bar"
        android:layout_
        android:layout_
        app:layout_constraintBottom_toBottomOf="parent"
        app:layout_constraintEnd_toEndOf="parent"
        app:layout_constraintStart_toStartOf="@+id/guideline"
        app:layout_constraintTop_toTopOf="parent"
        app:barWidthRatio="0.75" />


</androidx.constraintlayout.widget.ConstraintLayout>

活动类:

class MainActivity : AppCompatActivity() 
    override fun onCreate(savedInstanceState: Bundle?) 
        super.onCreate(savedInstanceState)
        setContentView(R.layout.activity_main)

        bar.setBackgroundColor(-10000)

        button.setOnClickListener() 
            println("Width: " + bar.width)
            println("Height: " + bar.height)
            println("Left: " + bar.left)
            println("Top: " + bar.top)
            println("Right: " + bar.right)
            println("Bottom: " + bar.bottom)
        
    

我收到以下错误:

“无法启动活动 ComponentInfocom.example.barchart2/com.example.barchart2.MainActivity:android.view.InflateException:二进制 XML 文件第 28 行:二进制 XML 文件第 28 行:膨胀类 com 时出错。 example.barchart2.BarView"

它使用整数或字符串资源,但不是浮点数或分数。

【问题讨论】:

【参考方案1】:

发现我的错误: mBarWidthRatio = getFloat(R.styleable.BarView_barColor, 0f) mBarColor = getColor(R.styleable.BarView_barWidthRatio, 0) 混合了颜色和比例。

【讨论】:

以上是关于使用浮动或分数样式资源的自定义视图崩溃的主要内容,如果未能解决你的问题,请参考以下文章

使用自定义视图的自定义属性传入布局资源

当按下 menuItem 以在 android 中显示用于列表视图的自定义适配器时,应用程序崩溃

tools:listitem 用于扩展 RecyclerView 的自定义视图

UITableViewCell Swift 中的自定义视图

创建自定义视图的步骤

不使用 Storyboard segues 的自定义视图转换 (Swift)