1
嗨我正在使用android.I嘗試在導航抽屜頁面啓動之前添加我的個性化登錄頁面,但它看起來已關閉。我只是改變了設置內容視圖到我的頁面。然後通過點擊頁面上的按鈕,其設置的內容視圖像以前一樣正常,強制關閉。我無法找到錯誤。請幫幫我,我是新到AndroidAndroid導航應用程序部隊已關閉
這裏是我的代碼
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.login);
ImageButton img1=(ImageButton)findViewById(R.id.imageButton1);
//ImageButton img2=(ImageButton)findViewById(R.id.imageButton2);
img1.setOnClickListener(new OnClickListener() {
public void onClick(View v) {
setContentView(R.layout.activity_main);
}
});
它仍然沒有wrking – doubter
什麼是LoginActivity.this這裏你用? – doubter
我用Fragment所以有任何問題? – doubter