将数据传递给自定义View类

时间:2016-05-18 12:16:05

标签: android android-view

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

  

自定义视图LinePlot缺少工具使用的构造函数:(上下文)   或(Context,AttributeSet)或(Context,AttributeSet,int)

然而,我运行代码,似乎一切顺利。

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

谢谢!

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
}  


}

4 个答案:

答案 0 :(得分:1)

所以必须遵循以下几个步骤 -

(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文件中调用自定义视图。对于例如 -

<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 =&#34; http://schemas.android.com/apk/res-auto")

(iii)在自定义视图的课程中,您必须添加一些内容。示例 -

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);
    }
}

答案 1 :(得分:0)

警告意味着您将无法在任何xml布局中使用自定义视图。

如果您不打算这样做,那么为您的自定义视图实现这些构造函数仍然很好:

CustomView(Context ctx) {
   super(ctx)
}

任何其他属性通常作为自定义属性传递,而不是作为构造函数参数传递。请阅读文档或其他地方http://www.tutorialspoint.com/android/create_custom_attributes_for_custom_component.htm

中的自定义视图属性

答案 2 :(得分:0)

在LinePlot类中添加构造函数:

public LinePlot(Context context) {
  super(context);
}
public LinePlot(Context context, AttributeSet attrs) {
  super(context, attrs);
}

答案 3 :(得分:0)

您需要添加带参数的构造函数 (Context),(Context,AttributeSet)和(Context,AttributeSet,int)