這個我創建的視圖類:
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報出了log的錯誤:
AndroidManifest: Ignoring unknown 'com.hitziger.barcode.MyView' XML element
在布局中怎麼使用自定義的視圖?
檢查包是否正確,clear一下,看你View頂部有個 package pack.myTestPack;
布局文件中用 <pack.myTestPack.MyView ....
activity調用中,正常setContentView(R.layout.main);即可
還有另一種自繪View方法,方式更直接
MyView mv = new MyView(this,...);
setContentView(mv);
詳例參考:
http://blog.csdn.net/tts_kevin/article/details/7456776