MobileMESH / ProjectM

MIT License
0 stars 0 forks source link

Implement network view in Android Studio #50

Open meijohana opened 1 year ago

vnuotio commented 1 year ago
VeriHeppi commented 1 year ago

Notifications: https://developer.android.com/develop/ui/views/notifications

vnuotio commented 1 year ago

Switching between screens (activities/intents): https://learntodroid.com/how-to-switch-between-activities-in-android/

Intent switchActivityIntent = new Intent(this, SecondActivity.class); startActivity(switchActivityIntent);