1

我正在尝试onDraw()在我的EditText. onDraw被调用 - 我可以看到日志消息,但它没有绘制任何东西。

谁能告诉我我做错了什么?

这是我的布局的摘录:

    <view xmlns:android="http://schemas.android.com/apk/res/android"
          class ="my.package.NotePadEditView"
            android:inputType="textMultiLine"
            android:id="@+id/edit_text"
            android:layout_width="match_parent"
            android:layout_height="wrap_content"
            android:gravity="top"
            android:background="@android:color/transparent"
            android:singleLine="false"
            >
        <requestFocus/>
    </view>
</ScrollView>

这是类(现在只是一些测试代码):

public class NotePadEditView extends EditText {
Paint paint = new Paint();
public NotePadEditView(Context context, AttributeSet attrs, int defStyle) {
   super(context, attrs, defStyle);
   paint.setStyle(Paint.Style.STROKE);
   paint.setStrokeWidth(3);
   paint.setColor(0xFF0000);
 }
 @Override
 protected void onDraw(Canvas canvas) {
   Log.d("NotePadEditView", "Calling onDraw()"); // These log messages are displaying
   canvas.drawLine(0, 0, 50, 50, paint); // just some random stuff so we know when we are done. (Note: these are not displaying - what's up with that???)
   canvas.drawText("Hello, World", 30, 30, paint);
   super.onDraw(canvas);
  }

// more constructors, etc
4

2 回答 2

2

我认为您应该尝试在 android 布局的 xml 中使用自定义 EditText。

这是我在您的班级中所做的一些更改。

public class NotePadEditView extends EditText{
@Override
protected void onDraw(Canvas canvas) {

    Log.d("NotePadEditView", "Calling onDraw()"); // These log messages are displaying
       canvas.drawLine(0, 0, 50, 50, paint); // just some random stuff so we know when we are done. (Note: these are not displaying - what's up with that???)
       canvas.drawText("Hello, World", 30, 30, paint);
       super.onDraw(canvas);

}
Paint paint;

public NotePadEditView(Context context, AttributeSet attrs){
    super(context, attrs);
    //this Contructure required when you are using this view in xml 
    paint = new Paint();
    paint.setStyle(Paint.Style.STROKE);
    paint.setStrokeWidth(3);
    paint.setColor(Color.BLUE);
}

public NotePadEditView(Context context, AttributeSet attrs, int defStyle) {
    super(context, attrs, defStyle);
    paint = new Paint();
    paint.setStyle(Paint.Style.STROKE);
    paint.setStrokeWidth(3);
    paint.setColor(0xFF0000);

   }

}

像这样在你的xml中使用,

   <my.package.NotePadEditView 
            android:id="@+id/edit_text"
            android:layout_width="fill_parent"
            android:layout_height="wrap_content"
            android:background="@android:color/transparent"
            android:gravity="top"
            android:inputType="textMultiLine"
            android:singleLine="false" />

希望这会让你的工作。

于 2012-04-11T05:16:02.600 回答
2

好的,终于想通了。看起来您需要在颜色分配上设置 alpha 字节:

paint.setColor(0x80FF0000); 

不是

paint.setColor(0xFF0000);

显然,通过排除 alpha 字节,您隐式传入零,这意味着颜色是完全透明的。Java AWT 不是这样工作的——谁认为这是个好主意?!

于 2012-04-12T11:42:17.523 回答