我创建了Login.class和Dashboard.class。在Dashboard.class中添加了4个fragment.class。在提供此代码后,我无法转移到其他活动。请帮我解决一下。
Button button = (Button) findViewById(R.id.login_btn);
button.setOnClickListener(new View.OnClickListener() {
@Override public void onClick(View v) {
Intent i = new Intent(getApplicationContext(),Dashboard.class);
startActivity(i);
}
});
答案 0 :(得分:0)
您是否在展示位置添加了Dashboard活动类?
我建议不要使用getApplicationContext() 在片段中,您可以调用getActivity():
Intent i = new Intent(getActivity(), Dashboard.class);
startActivity(i);