gpt4 book ai didi

android - 将数据传递给自定义 View 类

转载 作者:太空狗 更新时间:2023-10-29 13:58:56 26 4
gpt4 key购买 nike

我想将一些数据传递给扩展 android.view.View 的自定义类。但是,我收到一条警告消息:

Custom view LinePlot is missing constructor used by tools: (Context) or (Context,AttributeSet) or (Context,AttributeSet,int)

但是,我运行了代码,一切似乎都很顺利。

  • 发生了什么事?
  • 我应该如何将我的数据传递给我的类(class)?
  • 为什么我不能使用自定义构造函数?

谢谢!

import android.graphics.Canvas;
import android.graphics.Paint;
import android.view.View;

import java.util.ArrayList;

public class LinePlot extends View {

private ArrayList<Float> mPoints;
private int dx;
private int dy;

Paint paint=new Paint();

public LinePlot(Context context,int dx_plot, int dy_plot, ArrayList<Float> points) {

super(context);
mPoints=points;
dx=dx_plot;
dy=dy_plot;
}


@Override
protected void onDraw(Canvas canvas) {
super.onDraw(canvas);

// plotting my data here
}


}

最佳答案

所以这里必须遵循几个步骤 -

(i) 在 values/attrs.xml 中添加以下代码 -

<?xml version="1.0" encoding="utf-8"?>
<resources>
<declare-styleable name="NinjaView">
<attr name="addButtonBackgroundDrawable" format="integer"/>
</declare-styleable>
</resources>

(ii) 在 layout.xml 文件中调用自定义 View 。例如-

<com.example.act.ui.utils.NinjaView
android:id="@+id/ninja_view_product_desc"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
custom:addButtonBackgroundDrawable="@drawable/add_button_back_about_product"/>

(不要忘记声明您的自定义命名空间:xmlns:custom="http://schemas.android.com/apk/res-auto")

(iii) 在您的自定义 View 类中,您必须添加一些内容。示例 -

public class NinjaView extends LinearLayout {

@BindView(R.id.button_add_to_cart_product) Button mAddToCart;

public NinjaView(Context context) {
super(context);
initializeNinjaView(context);
}

public NinjaView(Context context, AttributeSet attrs) {
super(context, attrs);
initializeNinjaView(context);
setAddButtonBack(context, attrs);
}

public NinjaView(Context context, AttributeSet attrs, int defStyleAttr) {
super(context, attrs, defStyleAttr);
initializeNinjaView(context);
setAddButtonBack(context, attrs);
}

private void initializeNinjaView(Context context) {
LayoutInflater inflater = (LayoutInflater) context.getSystemService(Context.LAYOUT_INFLATER_SERVICE);
inflater.inflate(R.layout.ninja_view, this);
}

@Override
protected void onFinishInflate() {
super.onFinishInflate();
ButterKnife.bind(this);
}

private void setAddButtonBack(Context context, AttributeSet attrs) {
TypedArray typedArray = context.getTheme().obtainStyledAttributes(attrs, R.styleable.NinjaView, 0, 0);
Drawable backgroundDrawable;
try {
backgroundDrawable = typedArray.getDrawable(R.styleable.NinjaView_addButtonBackgroundDrawable);
} finally {
typedArray.recycle();
}
if (backgroundDrawable != null) {
(findViewById(R.id.button_add_to_cart_product)).setBackground(backgroundDrawable);
}
}

关于android - 将数据传递给自定义 View 类,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/37299354/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com