2012-03-20 123 views
0

我正在製作遊戲,我不希望整個畫布佔據屏幕。有沒有辦法讓我的類擴展SurfaceView到XML?我想把它放到xml中,以便我可以在屏幕上調整SurfaceView的位置和大小。自定義查看到xml

回答

1
在SRC

public class MySurView extends SurfaceView { 
    public MySurView(Context context) { 
    super(context); 
    } 
    // you must overide this constructor 
    public MySurView(Context context, AttributeSet attrs) { 
    super(context, attrs); 
    } 
} 
在XML

<package.name.MySurView 
    android:id="@+id/surview" 
    android:layout_width="fill_parent" 
    android:layout_height="fill_parent" > 
</package.name.MySurView> 
+0

謝謝ethan_liou :) – 2012-03-20 16:50:29