Closed mikinty closed 7 years ago
Hacker name(s): Michael You Physical location: Danfourth Conference Room Operating system(s): Windows Programming Langugage: Android Studio
I am trying to make a button that brings me to a new page. Right now, I have
mButtonGoToDash = (Button)findViewById(R.id.goToDash);
android:onClick="activityDashboard"
public void activityDashboard(View v) { Intent intent2 = new Intent(this, DashboardActivity.class); startActivity(intent2); }
I know the on click is being executed but my dashboard file is probably not right
Was this resolved by Mike? If so, I can close it (he's out currently)
I fixed it i'll close now thanks sam
Hacker name(s): Michael You Physical location: Danfourth Conference Room Operating system(s): Windows Programming Langugage: Android Studio
Description
I am trying to make a button that brings me to a new page. Right now, I have
mButtonGoToDash = (Button)findViewById(R.id.goToDash);
android:onClick="activityDashboard"
public void activityDashboard(View v) { Intent intent2 = new Intent(this, DashboardActivity.class); startActivity(intent2); }
I know the on click is being executed but my dashboard file is probably not right