2013-11-04 57 views
-1

我有我的gamefield.xml,我只想在畫布上用onDraw()在gamefield.xml中的矩形t操縱...我一直在尋找答案但沒有什麼作品...如何連接在Eclipse中查看類與xml android

我能爲此做些什麼。謝謝 。

這是我的gamefield.xmlbu我不認爲它是有用的。

<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android" 
xmlns:tools="http://schemas.android.com/tools" 
android:orientation="vertical" 
android:layout_width="fill_parent" 
android:layout_height="fill_parent" 
> 

<View class= "cruz.jayson.bantumi.Board" 
    android:id="@+id/myBoard" 
    android:layout_width="fill_parent" 
    android:layout_height="match_parent" 
    /> 

</LinearLayout> 
+0

define'does not work' .. http://developer.android.com/training/custom-views/create-view.html – njzk2

回答

0

按照該Creating a Custom View Class documentation,你的XML應該是這樣的:

<cruz.jayson.bantumi.Board 
    android:id="@+id/myBoard" 
    android:layout_width="fill_parent" 
    android:layout_height="match_parent" /> 

您在元素的name指定您的視圖類,而不是在class屬性。