您好我正在使用android.I我试图在导航抽屉页面开始之前添加我的个性化登录页面。但它看起来强制关闭。我刚刚将oncreate set content view更改为我的页面。然后通过单击页面上的按钮,其设置的内容视图像以前一样正常,它强制关闭。我无法找到错误。请帮助我,我是android的新手
这是我的代码
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);
}
});
答案 0 :(得分:0)
你可以像这样调用Intent来开始新的活动
Intent intent = new Intent(LoginActivity.this, MainActivity.class);
startActivity(intent);
有关详细信息,请参阅this tutotial