如何在eclipse android中将View类与xml连接起来

时间:2013-11-04 15:01:34

标签: java android xml eclipse

我有我的gamefield.xml,我只想在画布上使用onDraw()在gamefield.xml中操作一个矩形操作...我一直在寻找答案,但没有任何作用......

我能为此做些什么。谢谢。

这是我的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>

1 个答案:

答案 0 :(得分: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" />

您可以在元素名称中指定View类,而不是class属性。