我創建一個基於選項卡的應用程序,這是在原型階段。我已經創建了顯示基本內容(如在Android文檔描述)所需的標籤。現在,我想幾個按鈕添加到活動之一,然而,實例化一個新的按鈕可創建一個運行時異常:添加一個按鈕到活動導致運行時異常
public class HomeActivity extends Activity {
private Button menuBTN = new Button(this);
@Override
public void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
TextView textview = new TextView(this);
textview.setText("This is the main application entry, and home screen");
this.setContentView(textview);
this.getMenuBTN().setText("Menu");
// this.addContentView(this.getMenuBTN(), new LayoutParams(LayoutParams.WRAP_CONTENT, LayoutParams.WRAP_CONTENT));
}
如果我沒有在所有創建按鈕,基本的應用程序正常啓動。
什麼是你想怎麼辦?將textview和按鈕添加到屏幕?如果是這樣,請使用佈局來適應這兩個視圖。 \ nAnyway,請不要把創建按鈕在上面**的onCreate()之前**。使用**這**只配備後**的onCreate()** – PH7