commit 8912ddad877bc89f16ce3e213eadc6d235f149db Author: AndrewTrieu Date: Mon Nov 28 15:35:55 2022 +0200 First commit diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..aa724b7 --- /dev/null +++ b/.gitignore @@ -0,0 +1,15 @@ +*.iml +.gradle +/local.properties +/.idea/caches +/.idea/libraries +/.idea/modules.xml +/.idea/workspace.xml +/.idea/navEditor.xml +/.idea/assetWizardSettings.xml +.DS_Store +/build +/captures +.externalNativeBuild +.cxx +local.properties diff --git a/.idea/.gitignore b/.idea/.gitignore new file mode 100644 index 0000000..26d3352 --- /dev/null +++ b/.idea/.gitignore @@ -0,0 +1,3 @@ +# Default ignored files +/shelf/ +/workspace.xml diff --git a/.idea/compiler.xml b/.idea/compiler.xml new file mode 100644 index 0000000..fb7f4a8 --- /dev/null +++ b/.idea/compiler.xml @@ -0,0 +1,6 @@ + + + + + + \ No newline at end of file diff --git a/.idea/deploymentTargetDropDown.xml b/.idea/deploymentTargetDropDown.xml new file mode 100644 index 0000000..606e9ab --- /dev/null +++ b/.idea/deploymentTargetDropDown.xml @@ -0,0 +1,17 @@ + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/.idea/gradle.xml b/.idea/gradle.xml new file mode 100644 index 0000000..a2d7c21 --- /dev/null +++ b/.idea/gradle.xml @@ -0,0 +1,19 @@ + + + + + + + \ No newline at end of file diff --git a/.idea/misc.xml b/.idea/misc.xml new file mode 100644 index 0000000..bdd9278 --- /dev/null +++ b/.idea/misc.xml @@ -0,0 +1,10 @@ + + + + + + + + + \ No newline at end of file diff --git a/app/.gitignore b/app/.gitignore new file mode 100644 index 0000000..42afabf --- /dev/null +++ b/app/.gitignore @@ -0,0 +1 @@ +/build \ No newline at end of file diff --git a/app/build.gradle b/app/build.gradle new file mode 100644 index 0000000..5655bc0 --- /dev/null +++ b/app/build.gradle @@ -0,0 +1,41 @@ +plugins { + id 'com.android.application' +} + +android { + namespace 'com.example.electricity' + compileSdk 32 + + defaultConfig { + applicationId "com.example.electricity" + minSdk 21 + targetSdk 32 + versionCode 1 + versionName "1.0" + + testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner" + } + + buildTypes { + release { + minifyEnabled false + proguardFiles getDefaultProguardFile('proguard-android-optimize.txt'), 'proguard-rules.pro' + } + } + compileOptions { + sourceCompatibility JavaVersion.VERSION_1_8 + targetCompatibility JavaVersion.VERSION_1_8 + } +} + +dependencies { + + implementation 'androidx.appcompat:appcompat:1.5.1' + implementation 'com.google.android.material:material:1.6.1' + implementation 'androidx.constraintlayout:constraintlayout:2.1.4' + implementation 'androidx.appcompat:appcompat:1.0.0' + implementation 'androidx.constraintlayout:constraintlayout:1.1.3' + testImplementation 'junit:junit:4.13.2' + androidTestImplementation 'androidx.test.ext:junit:1.1.3' + androidTestImplementation 'androidx.test.espresso:espresso-core:3.4.0' +} \ No newline at end of file diff --git a/app/proguard-rules.pro b/app/proguard-rules.pro new file mode 100644 index 0000000..481bb43 --- /dev/null +++ b/app/proguard-rules.pro @@ -0,0 +1,21 @@ +# Add project specific ProGuard rules here. +# You can control the set of applied configuration files using the +# proguardFiles setting in build.gradle. +# +# For more details, see +# http://developer.android.com/guide/developing/tools/proguard.html + +# If your project uses WebView with JS, uncomment the following +# and specify the fully qualified class name to the JavaScript interface +# class: +#-keepclassmembers class fqcn.of.javascript.interface.for.webview { +# public *; +#} + +# Uncomment this to preserve the line number information for +# debugging stack traces. +#-keepattributes SourceFile,LineNumberTable + +# If you keep the line number information, uncomment this to +# hide the original source file name. +#-renamesourcefileattribute SourceFile \ No newline at end of file diff --git a/app/src/androidTest/java/com/example/electricity/ExampleInstrumentedTest.java b/app/src/androidTest/java/com/example/electricity/ExampleInstrumentedTest.java new file mode 100644 index 0000000..7ff794a --- /dev/null +++ b/app/src/androidTest/java/com/example/electricity/ExampleInstrumentedTest.java @@ -0,0 +1,26 @@ +package com.example.electricity; + +import android.content.Context; + +import androidx.test.platform.app.InstrumentationRegistry; +import androidx.test.ext.junit.runners.AndroidJUnit4; + +import org.junit.Test; +import org.junit.runner.RunWith; + +import static org.junit.Assert.*; + +/** + * Instrumented test, which will execute on an Android device. + * + * @see Testing documentation + */ +@RunWith(AndroidJUnit4.class) +public class ExampleInstrumentedTest { + @Test + public void useAppContext() { + // Context of the app under test. + Context appContext = InstrumentationRegistry.getInstrumentation().getTargetContext(); + assertEquals("com.example.electricity", appContext.getPackageName()); + } +} \ No newline at end of file diff --git a/app/src/debug/ic_launcher-playstore.png b/app/src/debug/ic_launcher-playstore.png new file mode 100644 index 0000000..35de97b Binary files /dev/null and b/app/src/debug/ic_launcher-playstore.png differ diff --git a/app/src/debug/res/drawable/ic_launcher_background.xml b/app/src/debug/res/drawable/ic_launcher_background.xml new file mode 100644 index 0000000..ca3826a --- /dev/null +++ b/app/src/debug/res/drawable/ic_launcher_background.xml @@ -0,0 +1,74 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/app/src/debug/res/mipmap-anydpi-v26/ic_launcher.xml b/app/src/debug/res/mipmap-anydpi-v26/ic_launcher.xml new file mode 100644 index 0000000..c4a603d --- /dev/null +++ b/app/src/debug/res/mipmap-anydpi-v26/ic_launcher.xml @@ -0,0 +1,5 @@ + + + + + \ No newline at end of file diff --git a/app/src/debug/res/mipmap-anydpi-v26/ic_launcher_round.xml b/app/src/debug/res/mipmap-anydpi-v26/ic_launcher_round.xml new file mode 100644 index 0000000..c4a603d --- /dev/null +++ b/app/src/debug/res/mipmap-anydpi-v26/ic_launcher_round.xml @@ -0,0 +1,5 @@ + + + + + \ No newline at end of file diff --git a/app/src/debug/res/mipmap-hdpi/ic_launcher.png b/app/src/debug/res/mipmap-hdpi/ic_launcher.png new file mode 100644 index 0000000..5f2b5d8 Binary files /dev/null and b/app/src/debug/res/mipmap-hdpi/ic_launcher.png differ diff --git a/app/src/debug/res/mipmap-hdpi/ic_launcher_foreground.png b/app/src/debug/res/mipmap-hdpi/ic_launcher_foreground.png new file mode 100644 index 0000000..4a9ea0f Binary files /dev/null and b/app/src/debug/res/mipmap-hdpi/ic_launcher_foreground.png differ diff --git a/app/src/debug/res/mipmap-hdpi/ic_launcher_round.png b/app/src/debug/res/mipmap-hdpi/ic_launcher_round.png new file mode 100644 index 0000000..fc45f44 Binary files /dev/null and b/app/src/debug/res/mipmap-hdpi/ic_launcher_round.png differ diff --git a/app/src/debug/res/mipmap-mdpi/ic_launcher.png b/app/src/debug/res/mipmap-mdpi/ic_launcher.png new file mode 100644 index 0000000..919d9a9 Binary files /dev/null and b/app/src/debug/res/mipmap-mdpi/ic_launcher.png differ diff --git a/app/src/debug/res/mipmap-mdpi/ic_launcher_foreground.png b/app/src/debug/res/mipmap-mdpi/ic_launcher_foreground.png new file mode 100644 index 0000000..f9536ad Binary files /dev/null and b/app/src/debug/res/mipmap-mdpi/ic_launcher_foreground.png differ diff --git a/app/src/debug/res/mipmap-mdpi/ic_launcher_round.png b/app/src/debug/res/mipmap-mdpi/ic_launcher_round.png new file mode 100644 index 0000000..62c4c81 Binary files /dev/null and b/app/src/debug/res/mipmap-mdpi/ic_launcher_round.png differ diff --git a/app/src/debug/res/mipmap-xhdpi/ic_launcher.png b/app/src/debug/res/mipmap-xhdpi/ic_launcher.png new file mode 100644 index 0000000..42c1951 Binary files /dev/null and b/app/src/debug/res/mipmap-xhdpi/ic_launcher.png differ diff --git a/app/src/debug/res/mipmap-xhdpi/ic_launcher_foreground.png b/app/src/debug/res/mipmap-xhdpi/ic_launcher_foreground.png new file mode 100644 index 0000000..c528a94 Binary files /dev/null and b/app/src/debug/res/mipmap-xhdpi/ic_launcher_foreground.png differ diff --git a/app/src/debug/res/mipmap-xhdpi/ic_launcher_round.png b/app/src/debug/res/mipmap-xhdpi/ic_launcher_round.png new file mode 100644 index 0000000..34de286 Binary files /dev/null and b/app/src/debug/res/mipmap-xhdpi/ic_launcher_round.png differ diff --git a/app/src/debug/res/mipmap-xxhdpi/ic_launcher.png b/app/src/debug/res/mipmap-xxhdpi/ic_launcher.png new file mode 100644 index 0000000..df1c2a2 Binary files /dev/null and b/app/src/debug/res/mipmap-xxhdpi/ic_launcher.png differ diff --git a/app/src/debug/res/mipmap-xxhdpi/ic_launcher_foreground.png b/app/src/debug/res/mipmap-xxhdpi/ic_launcher_foreground.png new file mode 100644 index 0000000..c174be8 Binary files /dev/null and b/app/src/debug/res/mipmap-xxhdpi/ic_launcher_foreground.png differ diff --git a/app/src/debug/res/mipmap-xxhdpi/ic_launcher_round.png b/app/src/debug/res/mipmap-xxhdpi/ic_launcher_round.png new file mode 100644 index 0000000..ebfa55b Binary files /dev/null and b/app/src/debug/res/mipmap-xxhdpi/ic_launcher_round.png differ diff --git a/app/src/debug/res/mipmap-xxxhdpi/ic_launcher.png b/app/src/debug/res/mipmap-xxxhdpi/ic_launcher.png new file mode 100644 index 0000000..8530dc1 Binary files /dev/null and b/app/src/debug/res/mipmap-xxxhdpi/ic_launcher.png differ diff --git a/app/src/debug/res/mipmap-xxxhdpi/ic_launcher_foreground.png b/app/src/debug/res/mipmap-xxxhdpi/ic_launcher_foreground.png new file mode 100644 index 0000000..fbba36c Binary files /dev/null and b/app/src/debug/res/mipmap-xxxhdpi/ic_launcher_foreground.png differ diff --git a/app/src/debug/res/mipmap-xxxhdpi/ic_launcher_round.png b/app/src/debug/res/mipmap-xxxhdpi/ic_launcher_round.png new file mode 100644 index 0000000..aceee17 Binary files /dev/null and b/app/src/debug/res/mipmap-xxxhdpi/ic_launcher_round.png differ diff --git a/app/src/main/AndroidManifest.xml b/app/src/main/AndroidManifest.xml new file mode 100644 index 0000000..e27b3a1 --- /dev/null +++ b/app/src/main/AndroidManifest.xml @@ -0,0 +1,44 @@ + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/app/src/main/java/com/example/electricity/DatabaseHelper.java b/app/src/main/java/com/example/electricity/DatabaseHelper.java new file mode 100644 index 0000000..aaf11d7 --- /dev/null +++ b/app/src/main/java/com/example/electricity/DatabaseHelper.java @@ -0,0 +1,73 @@ +package com.example.electricity; + +import android.content.ContentValues; +import android.content.Context; +import android.database.Cursor; +import android.database.sqlite.SQLiteDatabase; +import android.database.sqlite.SQLiteOpenHelper; + + +public class DatabaseHelper extends SQLiteOpenHelper{ + public static final String DATABASE_NAME = "data.db"; + public static final String TABLE_NAME = "data"; + public static final String COL1 = "id"; + public static final String COL2 = "username"; + public static final String COL3 = "password"; + public static final String COL4 = "code"; + + public DatabaseHelper(Context context) { + super(context, DATABASE_NAME, null, 1); + } + + @Override + public void onCreate(SQLiteDatabase db) { + String createTable = "CREATE TABLE " + TABLE_NAME + " (ID INTEGER PRIMARY KEY AUTOINCREMENT, " + + COL2 +" TEXT, " + COL3 + " TEXT, " + COL4 + " TEXT)"; + db.execSQL(createTable); + } + + @Override + public void onUpgrade(SQLiteDatabase db, int oldVersion, int newVersion) { + db.execSQL("DROP TABLE IF EXISTS " + TABLE_NAME); + onCreate(db); + } + + public int checkData(String username, String password) { + if (username.isEmpty() || password.isEmpty()) { + return 2; + } + SQLiteDatabase db = this.getWritableDatabase(); + String query = "SELECT * FROM " + TABLE_NAME + " WHERE " + COL2 + " = '" + username + "' AND " + COL3 + " = '" + password + "'"; + Cursor cursor = db.rawQuery(query, null); + if(cursor.getCount()>0){ + cursor.close(); + return 1; + }else{ + cursor.close(); + return 0; + } + } + + public Boolean checkUsername(String sUsername) { + SQLiteDatabase db = this.getWritableDatabase(); + Cursor cursor = db.rawQuery("SELECT * FROM " + TABLE_NAME + " WHERE " + COL2 + " = '" + sUsername + "'", null); + if (cursor.getCount() > 0) { + return true; + } else { + return false; + } + } + + public Boolean insertData(String sUsername, String sPassword) { + SQLiteDatabase db = this.getWritableDatabase(); + ContentValues contentValues = new ContentValues(); + contentValues.put(COL2, sUsername); + contentValues.put(COL3, sPassword); + long result = db.insert(TABLE_NAME, null, contentValues); + if (result == -1) { + return false; + } else { + return true; + } + } +} diff --git a/app/src/main/java/com/example/electricity/Home.java b/app/src/main/java/com/example/electricity/Home.java new file mode 100644 index 0000000..253f30c --- /dev/null +++ b/app/src/main/java/com/example/electricity/Home.java @@ -0,0 +1,20 @@ +package com.example.electricity; + +import androidx.appcompat.app.AppCompatActivity; + +import android.os.Bundle; +import android.widget.TextView; + +public class Home extends AppCompatActivity { + String username; + TextView name, usage; + @Override + protected void onCreate(Bundle savedInstanceState) { + super.onCreate(savedInstanceState); + setContentView(R.layout.activity_home); + username = getIntent().getStringExtra("username"); + name = findViewById(R.id.textView12); + name.setText(username); + usage = findViewById(R.id.textView11); + } +} \ No newline at end of file diff --git a/app/src/main/java/com/example/electricity/MainActivity.java b/app/src/main/java/com/example/electricity/MainActivity.java new file mode 100644 index 0000000..8ecc44b --- /dev/null +++ b/app/src/main/java/com/example/electricity/MainActivity.java @@ -0,0 +1,61 @@ +package com.example.electricity; + +import static com.example.electricity.DatabaseHelper.TABLE_NAME; + +import androidx.appcompat.app.AppCompatActivity; + +import android.content.Intent; +import android.database.Cursor; +import android.database.sqlite.SQLiteDatabase; +import android.os.Bundle; +import android.view.View; +import android.widget.Button; +import android.widget.EditText; +import android.widget.Toast; + +public class MainActivity extends AppCompatActivity { + DatabaseHelper database; + Button btnLogin, btnSignup; + EditText username, password; + + @Override + protected void onCreate(Bundle savedInstanceState) { + super.onCreate(savedInstanceState); + setContentView(R.layout.activity_main); + + database = new DatabaseHelper(this); + username = findViewById(R.id.username); + password = findViewById(R.id.password); + btnLogin = findViewById(R.id.button2); + btnSignup = findViewById(R.id.button3); + checkUser(); + signUp(); + } + + public void checkUser() { + btnLogin.setOnClickListener(view -> { + String sUsername = username.getText().toString(); + String sPassword = password.getText().toString(); + int checkUser = database.checkData(sUsername, sPassword); + if (checkUser == 1) { + Toast.makeText(MainActivity.this, "Logged in successfully", Toast.LENGTH_LONG).show(); + Intent intent = new Intent(MainActivity.this, Home.class); + intent.putExtra("username", sUsername); + startActivity(intent); + } else if (checkUser == 2){ + Toast.makeText(MainActivity.this, "Username and password cannot be empty", Toast.LENGTH_LONG).show(); + } else { + Toast.makeText(MainActivity.this, "Account does not exist or incorrect user information", Toast.LENGTH_LONG).show(); + } + }); + } + + public void signUp() { + btnSignup.setOnClickListener(view -> { + Intent intent = new Intent(this, SignUp.class); + startActivity(intent); + }); + } + + +} \ No newline at end of file diff --git a/app/src/main/java/com/example/electricity/SignUp.java b/app/src/main/java/com/example/electricity/SignUp.java new file mode 100644 index 0000000..7dd3c12 --- /dev/null +++ b/app/src/main/java/com/example/electricity/SignUp.java @@ -0,0 +1,54 @@ +package com.example.electricity; + +import androidx.appcompat.app.AppCompatActivity; + +import android.os.Bundle; +import android.widget.Button; +import android.widget.EditText; +import android.widget.Toast; + +public class SignUp extends AppCompatActivity { + DatabaseHelper database; + Button btnSignup; + EditText username, password, repass, code; + @Override + protected void onCreate(Bundle savedInstanceState) { + super.onCreate(savedInstanceState); + setContentView(R.layout.activity_sign_up); + database = new DatabaseHelper(this); + username = findViewById(R.id.username); + password = findViewById(R.id.password); + repass = findViewById(R.id.password2); + code = findViewById(R.id.code); + btnSignup = findViewById(R.id.button); + addCustomer(); + } + + public void addCustomer() { + btnSignup.setOnClickListener(view -> { + String sUsername = username.getText().toString(); + String sPassword = password.getText().toString(); + String sRepass = repass.getText().toString(); + String sCode = code.getText().toString(); + if (sUsername.equals("") || sPassword.equals("") || sRepass.equals("") || sCode.equals("")) { + Toast.makeText(SignUp.this, "Please fill in all the fields", Toast.LENGTH_LONG).show(); + } else { + if (sPassword.equals(sRepass)) { + Boolean checkUser = database.checkUsername(sUsername); + if (checkUser == false) { + Boolean insert = database.insertData(sUsername, sPassword); + if (insert == true) { + Toast.makeText(SignUp.this, "Registered successfully", Toast.LENGTH_LONG).show(); + } else { + Toast.makeText(SignUp.this, "Registration failed", Toast.LENGTH_LONG).show(); + } + } else { + Toast.makeText(SignUp.this, "User already exists", Toast.LENGTH_LONG).show(); + } + } else { + Toast.makeText(SignUp.this, "Passwords do not match", Toast.LENGTH_LONG).show(); + } + } + }); + } +} \ No newline at end of file diff --git a/app/src/main/res/drawable-v24/ic_launcher_foreground.xml b/app/src/main/res/drawable-v24/ic_launcher_foreground.xml new file mode 100644 index 0000000..2b068d1 --- /dev/null +++ b/app/src/main/res/drawable-v24/ic_launcher_foreground.xml @@ -0,0 +1,30 @@ + + + + + + + + + + + \ No newline at end of file diff --git a/app/src/main/res/drawable/_3.png b/app/src/main/res/drawable/_3.png new file mode 100644 index 0000000..9c832f5 Binary files /dev/null and b/app/src/main/res/drawable/_3.png differ diff --git a/app/src/main/res/drawable/_62259e2c38dcf93b9346f7be0a4a82_1.png b/app/src/main/res/drawable/_62259e2c38dcf93b9346f7be0a4a82_1.png new file mode 100644 index 0000000..b652b20 Binary files /dev/null and b/app/src/main/res/drawable/_62259e2c38dcf93b9346f7be0a4a82_1.png differ diff --git a/app/src/main/res/drawable/bg.png b/app/src/main/res/drawable/bg.png new file mode 100644 index 0000000..70a1895 Binary files /dev/null and b/app/src/main/res/drawable/bg.png differ diff --git a/app/src/main/res/drawable/ellipse_80.png b/app/src/main/res/drawable/ellipse_80.png new file mode 100644 index 0000000..c687b4c Binary files /dev/null and b/app/src/main/res/drawable/ellipse_80.png differ diff --git a/app/src/main/res/drawable/ic_launcher_background.xml b/app/src/main/res/drawable/ic_launcher_background.xml new file mode 100644 index 0000000..07d5da9 --- /dev/null +++ b/app/src/main/res/drawable/ic_launcher_background.xml @@ -0,0 +1,170 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/app/src/main/res/drawable/image_8__1_.png b/app/src/main/res/drawable/image_8__1_.png new file mode 100644 index 0000000..88895ac Binary files /dev/null and b/app/src/main/res/drawable/image_8__1_.png differ diff --git a/app/src/main/res/drawable/layout_bg.xml b/app/src/main/res/drawable/layout_bg.xml new file mode 100644 index 0000000..dd5fa53 --- /dev/null +++ b/app/src/main/res/drawable/layout_bg.xml @@ -0,0 +1,7 @@ + + + + + + + \ No newline at end of file diff --git a/app/src/main/res/drawable/layout_button.xml b/app/src/main/res/drawable/layout_button.xml new file mode 100644 index 0000000..4da3625 --- /dev/null +++ b/app/src/main/res/drawable/layout_button.xml @@ -0,0 +1,6 @@ + + + + + + \ No newline at end of file diff --git a/app/src/main/res/drawable/pngegg.png b/app/src/main/res/drawable/pngegg.png new file mode 100644 index 0000000..b0cf00e Binary files /dev/null and b/app/src/main/res/drawable/pngegg.png differ diff --git a/app/src/main/res/drawable/pngtree_save_energy_eco_concept_icon_for_green_ecology_environment_prote_png_image_3986055_removebg_preview__2_.png b/app/src/main/res/drawable/pngtree_save_energy_eco_concept_icon_for_green_ecology_environment_prote_png_image_3986055_removebg_preview__2_.png new file mode 100644 index 0000000..3117367 Binary files /dev/null and b/app/src/main/res/drawable/pngtree_save_energy_eco_concept_icon_for_green_ecology_environment_prote_png_image_3986055_removebg_preview__2_.png differ diff --git a/app/src/main/res/drawable/rectangle_223.png b/app/src/main/res/drawable/rectangle_223.png new file mode 100644 index 0000000..c562a82 Binary files /dev/null and b/app/src/main/res/drawable/rectangle_223.png differ diff --git a/app/src/main/res/drawable/rectangle_232.png b/app/src/main/res/drawable/rectangle_232.png new file mode 100644 index 0000000..08790a3 Binary files /dev/null and b/app/src/main/res/drawable/rectangle_232.png differ diff --git a/app/src/main/res/drawable/toppng_com_login_logout_white_icon_512x512.png b/app/src/main/res/drawable/toppng_com_login_logout_white_icon_512x512.png new file mode 100644 index 0000000..917e26b Binary files /dev/null and b/app/src/main/res/drawable/toppng_com_login_logout_white_icon_512x512.png differ diff --git a/app/src/main/res/drawable/union.png b/app/src/main/res/drawable/union.png new file mode 100644 index 0000000..5cf87cc Binary files /dev/null and b/app/src/main/res/drawable/union.png differ diff --git a/app/src/main/res/drawable/union__2_.png b/app/src/main/res/drawable/union__2_.png new file mode 100644 index 0000000..acb572d Binary files /dev/null and b/app/src/main/res/drawable/union__2_.png differ diff --git a/app/src/main/res/drawable/wear.png b/app/src/main/res/drawable/wear.png new file mode 100644 index 0000000..846104c Binary files /dev/null and b/app/src/main/res/drawable/wear.png differ diff --git a/app/src/main/res/layout/activity_home.xml b/app/src/main/res/layout/activity_home.xml new file mode 100644 index 0000000..bbacc90 --- /dev/null +++ b/app/src/main/res/layout/activity_home.xml @@ -0,0 +1,271 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +