Exam AND-401 All QuestionsBrowse all questions from this exam
Question 84

Method onDraw() of class android.view.View has the following signature:

    Correct Answer: B

    The correct signature of the onDraw() method in the android.view.View class is public void onDraw(Canvas). This method is called when the view should render its content, and it takes a Canvas object as a parameter to draw on.

Discussion
MmadiOption: B

B. public void onDraw(Canvas)