我有一个扩展FrameLayout的类,叫做NoteView。 这是一个顶级公共课。
当我从java代码创建UI时,它工作正常,但我无法弄清楚如何在XML中使用它。我尝试插入完全限定的类名,就像我对自定义视图一样,但是当活动试图膨胀XML时,我得到了异常ClassCastException: android.view.View cannot be cast to android.view.ViewGroup
。
我只能找到自定义视图的教程,而不是自定义视图组。使用NoteView需要做什么,就像在XML Layout中使用FrameLayout一样?
例如:这可行
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:orientation="vertical"
android:layout_width="fill_parent"
android:layout_height="fill_parent">
<test.cjb.sandbox.NoteView
android:id="@+id/noteview"
android:layout_width="fill_parent"
android:layout_height="100dp"
android:background="#FF0000"
android:layout_gravity="right">
</test.cjb.sandbox.NoteView>
<Button
android:id="@+id/button"
android:layout_width="100dp"
android:layout_height="fill_parent"
android:text="Sibling Button"/>
</LinearLayout>
但这引发了上述异常:
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:orientation="vertical"
android:layout_width="fill_parent"
android:layout_height="fill_parent" >
<test.cjb.sandbox.NoteView
android:id="@+id/noteview"
android:layout_width="fill_parent"
android:layout_height="100dp"
android:background="#FF0000"
android:layout_gravity="right">
<Button
android:id="@+id/button"
android:layout_width="100dp"
android:layout_height="fill_parent"
android:text="Child Button"/>
</test.cjb.sandbox.NoteView>
</LinearLayout>
答案 0 :(得分:2)
将来,在抱怨异常时,请考虑包括完整堆栈跟踪,特别是当人们要求完整堆栈跟踪时,因为完整堆栈跟踪可能包含与给出答案相关的信息。您可以通过Eclipse中的adb logcat
,DDMS或DDMS透视图获得完整的堆栈跟踪。
缺乏这一点,我所能做的只是指向this sample project,将LinearLayout
扩展为自定义小部件。