0

如何将 libgdx 渲染视图添加到当前的 android xml 布局中

例如

线性布局>

        <com.libgdxView.obj
            android:id="@+id/sheet"
            android:layout_width="1152dp"
            android:layout_height="576dp"
            android:layout_centerInParent="true" 
            />

/线性布局>

谢谢。

4

2 回答 2

0
<com.libgdxView.obj.**YourClassName**
        android:id="@+id/sheet"
        android:layout_width="1152dp"
        android:layout_height="576dp"
        android:layout_centerInParent="true" 
        />

尝试这个

于 2012-04-06T11:33:54.350 回答
0

终于找到解决办法了...

// 创建布局 RelativeLayout layout = new RelativeLayout(this);

    // Do the stuff that initialize() would do for you
    requestWindowFeature(Window.FEATURE_NO_TITLE);
    getWindow().setFlags(WindowManager.LayoutParams.FLAG_FULLSCREEN, 
                    WindowManager.LayoutParams.FLAG_FULLSCREEN);
    getWindow().clearFlags(WindowManager.LayoutParams.FLAG_FORCE_NOT_FULLSCREEN);

    // Create the libgdx View
    View gameView = initializeForView(new YouSpinMeRound(), false);
    // Add the libgdx view
    layout.addView(gameView);
于 2012-04-07T10:14:44.990 回答