您好我是Android应用开发项目的新手,我创建了一个打算用于仪表板活动的登录屏幕。我已经在仪表板中创建了一个按钮以意图进行另一个活动但是当我点击按钮而不是switchid时。它会崩溃并发送回登录界面。任何帮助都将得到赞赏。 这是我的意图代码。
public class Dashboard extends AppCompatActivity {
Button button;
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_dashboard);
button = (Button) findViewById(R.id.cv_btn);
button.setOnClickListener(new View.OnClickListener() {
@Override
public void onClick(View v) {
Toast.makeText(Dashboard.this, "Make your CV easy", Toast.LENGTH_LONG).show();
Intent cvintent;
cvintent= new Intent(Dashboard.this, CV.class);
startActivity(cvintent);
}
});
}
}
按钮的 xml
文件
<Button
android:id="@+id/cv_btn"
android:layout_width="150dp"
android:layout_height="wrap_content"
android:text="Make Your CV"
android:textColor="@android:color/white"
android:background="@color/colorPrimaryDark"
android:layout_margin="15dp"
android:textSize="16sp"
/>