Android如何从另一个类调用方法

时间:2015-06-20 17:53:22

标签: java android main-activity

现在我正在研究将在onClick上划线的应用。我在LineView.java课程中画线并在onClick中执行MainActivity.java方法。为了解决这个问题,我检查了类似的问题。 第一个解决方案:

LineView.onDraw();

它给了我这个错误:

Multiple markers at this line
    - The method onDraw(Canvas) in the type LineView is not applicable for the 
     arguments ()
    - Suspicious method call; should probably call "draw" rather than "onDraw"

我还尝试在MainActivity中写道:

LineView lineView = new LineView(null);
lineView.onDraw();

但它也会出错:

Multiple markers at this line
    - The method onDraw(Canvas) in the type LineView is not applicable for the 
     arguments ()
    - Suspicious method call; should probably call "draw" rather than "onDraw"

这是我的LineView.java:

public class LineView extends View {
Paint paint = new Paint();
Point A;
Point B;
boolean draw = false;

public void onCreate(Bundle savedInstanceState) {

}

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

public LineView(Context context, AttributeSet attrs, int defstyle) {
super(context, attrs, defstyle );
  }


public LineView(Context context) {
super(context);
paint.setColor(Color.BLACK);
}

@Override
public void onDraw(Canvas canvas) {
    draw = MainActivity.draw;
    if(draw){
    //A = (getIntent().getParcelableExtra("PointA"));
    A = MainActivity.A;
    B = MainActivity.B;

    canvas.drawLine(A.x, A.y, B.x, B.y, paint);
    }
}

private Intent getIntent() {
    // TODO Auto-generated method stub
    return null;
}

}

我的MainActivity.java onClick

 @Override
       public void onClick(View v) {
           draw = true;
                       LineView.onDraw();
                     }
   });

提前致谢!

1 个答案:

答案 0 :(得分:0)

您不应该直接在任何View上调用onDraw()。 如果视图在视图层次结构中可见,则视图将自行绘制。 如果你需要视图来绘制自己,因为某些东西已经改变了(比如你的A和B变量),那么你应该做这样的事情:

LineView.invalidate();

invalidate()告诉UI系统视图已经改变,并且应该在不久的将来某个时候调用onDraw()(可能是UI线程的下一次迭代)。

我认为你的'#draw;'变量可能是不必要的。如果您想有时隐藏视图,请改用setVisibility()。