0
嗨,大家好我有一個類extends RelativeLayout
,我想用RelativeLayout
作爲父視圖組來擴充xml文件,然後將它分配給變量。Android RelativeLayout類拋出異常
public class MyLayout extends RelativeLayout {
....
}
在活動onCreate()
方法:
MyLayout佈局;
layout = (MyLayout) inflater.inflate(R.layout.layout_page_one, null);
這導致了類別轉換異常。也許有人可以點亮一些光。
Caused by: java.lang.ClassCastException: android.widget.RelativeLayout cannot be cast to com.example.test.MyLayout
發佈您的代碼.. – PankajAndroid
在你的layout_page_one.xml中,你是指定一個RelativeLayout還是你的MyLayout? –