您好,登錄后才能下訂單哦!
本文實例講述了Android實現在xml文件中引用自定義View的方法。分享給大家供大家參考,具體如下:
在xml中引用自定義view
方法一:
<view class="com.test.copytext.CopyText" android:layout_width="fill_parent" android:layout_height="wrap_content" />
方法二:
<view class="com.test.copytext.CopyText" android:layout_width="match_parent" android:layout_height="match_parent" android:text="aaaaaaaaaaaa" />
在xml文件中間引用自定義view時遇到了這個錯誤:
Java.lang.RuntimeException: Unable to start activity ComponentInfo{cm.test/cm.test.TestsActivity}: Android.view.InflateException: Binary XML file line #8: Error inflating class com.test.testview
這就需要查看在xml中引用時的包名是否正確
還可能會遇到這個錯:11-24 10:58:38.993: ERROR/AndroidRuntime(323): Caused by: java.lang.NoSuchMethodException: HelloView(Context,AttributeSet)
這是因為自定義View中缺少了一個構造方法
public HelloView(Context context,AttributeSet attrs){ super(context, attrs); }
更多關于Android相關內容感興趣的讀者可查看本站專題:《Android視圖View技巧總結》、《Android布局layout技巧總結》、《Android開發入門與進階教程》、《Android調試技巧與常見問題解決方法匯總》、《Android基本組件用法總結》及《Android控件用法總結》
希望本文所述對大家Android程序設計有所幫助。
免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。