2

我扩展了 ImageView 并从外部类调用 ImageView 的方法,在线程内。在我尝试使用 invalidate postValidate 和所有但它从未调用 onDraw 方法的方法中,它与调用方法有关吗?

public class TestImageView extends ImageView {


    public FacePreviewImageView(Context context) {
        super(context);

    }


    public void process(String strImageFilePath) {
    //doing some operation

            invalidate();


    }


    @SuppressLint("DrawAllocation")
    @Override
    protected void onDraw(Canvas canvas) {
        Log.i("CAME INSIDE ", ""+faces.total());
        if(faces.total()>0){
        Paint paint = new Paint();
        paint.setColor(Color.RED);
        paint.setTextSize(20);

        String s = "Processed Face";
        float textWidth = paint.measureText(s);
        canvas.drawText(s, (getWidth() - textWidth) / 2, 20, paint);
        CvRect r = new CvRect(cvGetSeqElem(faces, 0));
        int x = r.x(), y = r.y(), w = r.width(), h = r.height();
        canvas.drawRect(new Rect(x, y, x+w, y+h), paint);

        }
        super.onDraw(canvas);
    }

}

我的调用方法看起来像 -

new Handler().post(new Runnable() {
                @Override
                public void run() {
                    // Code here will run in UI thread
                    ((TestImageView )imageView).process(pictureFile.getAbsolutePath());
                }
            });

还有一点要补充——

我试图直接在布局文件中添加这个视图-

<FrameLayout
        android:id="@+id/ll2"
        android:layout_width="match_parent"
        android:layout_height="match_parent"
        android:layout_weight="0.5"
        android:orientation="horizontal" >

<com.example.defaultfacetracker.TestImageView
             android:id="@+id/imageView1"             
             android:layout_width="fill_parent"
             android:layout_height="fill_parent" 
             />
</FrameLayout>

但它在启动时抛出异常。所以我终于把代码改成了——

 <ImageView
             android:id="@+id/imageView1"             
             android:layout_width="fill_parent"
             android:layout_height="fill_parent"
             android:src="@android:drawable/toast_frame" />   

在一个类中,我只是创建一个新的 TestImageView 实例来工作。如果这就是在这里做某事的原因。

4

2 回答 2

4

您是否尝试设置:

   setWillNotDraw(false);

在你的构造函数中?

@Override
public FacePreviewImageView(Context context) {
   this(context, null, 0);
}

@Override       
public FacePreviewImageView(Context context, AttributeSet attrs) {
   this(context, attrs, 0);
}

@Override
public FacePreviewImageView(Context context, AttributeSet attrs, int defStyle) {
   super(context, attrs, defStyle);
   setWillNotDraw(false);
}
于 2013-10-17T16:20:15.223 回答
0

setWillNotDraw(false);对我不起作用。

我在这里遇到了同样的问题,我发现检查我的子类是否ImageView具有可见性 VISIBILE而不是GONE.

如果它具有GONE可见性值,onDraw则不会被调用。

于 2017-06-01T08:08:44.230 回答