0
目前我正在開發一個不包含XML佈局的Android遊戲;相反,我們直接處理Android引擎。如何創建沒有xml佈局的tabhost?
在一個活動中,我需要創建一個包含3個選項卡的選項卡主機。
我使用這個代碼:
public class InventoryActivity extends BaseGameActivity{
public Engine onLoadEngine() {
this.mCamera = new Camera(0, 0, CAMERA_WIDTH, CAMERA_HEIGHT);
return new Engine(new EngineOptions(true, ScreenOrientation.PORTRAIT, new RatioResolutionPolicy(CAMERA_WIDTH, CAMERA_HEIGHT), this.mCamera));
}
public void onLoadResources() {
}
public Scene onLoadScene() {
}
}
我沒有使用findViewById
。
我該如何調用來創建一個tabhost?