Android的子类按钮:很多错误

时间:2011-12-08 18:51:31

标签: android subclass

我尝试将Button子类化,但在启动项目时遇到了很多错误。你能看看并告诉我如何解决这个问题吗? (我可能会遇到50个错误)

package my.project.name;

import android[...]

public class MyButton extends Button {

    public MyButton(){
        super(null);
    }

    public MyButton(Context context){
        super(context);
    }

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

    public MyButton(Context context, AttributeSet attrs, int defStyle){
        super(context, attrs, defStyle);
    }

    @Override 
    protected void onDraw(Canvas canvasObject) {
        super.onDraw(canvasObject);
        int x = 100;
        int y = 100;
        int width = 80;
        int height = 200;
        Paint thePaint = new Paint();   
        thePaint.setColor(Color.WHITE);
        RectF rectangle1 = new RectF(x,y,x+width,y+height);
        canvasObject.drawRoundRect(rectangle1, 10.0f, 10.0f, thePaint);   
    }

}

主要班级:

package my.project.name;

import android.app.Activity;
import android.os.Bundle;

public class MyProjectActivity extends Activity {
    /** Called when the activity is first created. */
    @Override
    public void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);
        setContentView(R.layout.main);
    }
}

和xml:

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="fill_parent"
    android:layout_height="fill_parent"
    android:orientation="vertical" >

    <TextView
        android:layout_width="fill_parent"
        android:layout_height="wrap_content"
        android:text="@string/hello" />

    <MyButton
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:id="@+id/myb"
        android:tag="tag"
         />

</LinearLayout>
编辑:实际上,矩形没有出现,子类有效,因为我没有错误,但矩形是不可见的,即使背景为“@null”......

非常感谢

2 个答案:

答案 0 :(得分:3)

重命名

<MyButton
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:id="@+id/myb"
    android:tag="tag"
     />

到完全限定的命名空间

<namespace.from.button.MyButton
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:id="@+id/myb"
    android:tag="tag"
     />

答案 1 :(得分:0)

如果Button子类是内部类,则使用XML布局中元素的完全限定名称不起作用。如果是这种情况,则需要添加一个类属性,并使用通用视图作为元素名称。

<view
    class="my.project.name.MyProjectActivity$MyButton"
    ...

http://developer.android.com/guide/topics/ui/custom-components.html