不切换到下一个活动

时间:2017-03-02 06:36:02

标签: android android-intent

您好我是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"
    />

1 个答案:

答案 0 :(得分:0)

我运行您发布的代码没有任何问题,一切正常。我认为你的CV活动或者你的清单/构建配置中存在问题。

enter image description here enter image description here