如何在布局中使用自己的视图?

时间:2011-04-01 13:47:32

标签: android xml layout view

我创建了一个类似这样的课程

public final class MyView extends View {

    public MyView(Context context, AttributeSet attrs) {
        super(context, attrs);
        [...]
    }
        [...]
}

然后我想在layout.xml中使用它

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

  <com.hitziger.barcode.MyView
      android:id="@+id/my_view"
      android:layout_width="fill_parent"
      android:layout_height="fill_parent"/>

</FrameLayout>

但Eclipse在错误日志中告诉我

  

AndroidManifest:忽略未知   'com.hitziger.barcode.MyView'XML   元件

如何在布局中使MyView可访问?我是否必须在其他地方发布此课程?

2 个答案:

答案 0 :(得分:11)

你应该写它:

<view class="com.hitziger.barcode.MyView"...

答案 1 :(得分:0)

在layout.xml中,使用:

<View 
    android:class="com.hitziger.barcode.MyView"
    android:id="@+id/my_view"
...

而不是:

<com.hitziger.barcode.MyView
    android:id="@+id/my_view"