Rename AbstractDrawingPreview.onDraw to drawPreview

This is because the android lint warns calling a method onDraw(Canvas)
from View.onDraw(Canvas).

Change-Id: I4f54996da5454d9a8c4ef43fbbcaec37724fb20e
main
Tadashi G. Takaoka 2013-01-21 17:00:47 +09:00
parent bde94dd96f
commit 2ecbfe8e93
3 changed files with 3 additions and 3 deletions

View File

@ -39,7 +39,7 @@ public abstract class AbstractDrawingPreview {
* Draws the preview * Draws the preview
* @param canvas The canvas where the preview is drawn. * @param canvas The canvas where the preview is drawn.
*/ */
public abstract void onDraw(final Canvas canvas); public abstract void drawPreview(final Canvas canvas);
/** /**
* Set the position of the preview. * Set the position of the preview.

View File

@ -130,7 +130,7 @@ public class GestureFloatingPreviewText extends AbstractDrawingPreview {
* @param canvas The canvas where preview text is drawn. * @param canvas The canvas where preview text is drawn.
*/ */
@Override @Override
public void onDraw(final Canvas canvas) { public void drawPreview(final Canvas canvas) {
if (!isPreviewEnabled() || mSuggestedWords.isEmpty() if (!isPreviewEnabled() || mSuggestedWords.isEmpty()
|| TextUtils.isEmpty(mSuggestedWords.getWord(0))) { || TextUtils.isEmpty(mSuggestedWords.getWord(0))) {
return; return;

View File

@ -220,7 +220,7 @@ public final class PreviewPlacerView extends RelativeLayout {
// rectangle on the canvas. // rectangle on the canvas.
} }
} }
mGestureFloatingPreviewText.onDraw(canvas); mGestureFloatingPreviewText.drawPreview(canvas);
if (mShowSlidingKeyInputPreview) { if (mShowSlidingKeyInputPreview) {
drawSlidingKeyInputPreview(canvas); drawSlidingKeyInputPreview(canvas);
} }