[ADD] packages and rafactored ui classes

This commit is contained in:
Sem van der Hoeven
2020-12-14 10:42:33 +01:00
parent 4e5eea1d9f
commit 3b6faf0672
19 changed files with 37 additions and 19 deletions

View File

@@ -1,18 +0,0 @@
package com.a1.nextlocation;
import androidx.appcompat.app.AppCompatActivity;
import android.os.Bundle;
public class MainActivity extends AppCompatActivity {
/**
* onCreate method that creates the main activity
* @param savedInstanceState the saved instance state of the app
*/
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_main);
}
}