commit e8cfc96fd0622e9e655ee6c31b25eb259c0a39ad Author: Sultan Ahmad Rizki Badani Date: Thu Jan 9 23:03:25 2025 +0700 Sultan Ahmad Rizki Badani (202210715237) 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/.name b/.idea/.name new file mode 100644 index 0000000..7671904 --- /dev/null +++ b/.idea/.name @@ -0,0 +1 @@ +SIA Mobile \ No newline at end of file diff --git a/.idea/compiler.xml b/.idea/compiler.xml new file mode 100644 index 0000000..b589d56 --- /dev/null +++ b/.idea/compiler.xml @@ -0,0 +1,6 @@ + + + + + + \ No newline at end of file diff --git a/.idea/deploymentTargetSelector.xml b/.idea/deploymentTargetSelector.xml new file mode 100644 index 0000000..b268ef3 --- /dev/null +++ b/.idea/deploymentTargetSelector.xml @@ -0,0 +1,10 @@ + + + + + + + + + \ No newline at end of file diff --git a/.idea/gradle.xml b/.idea/gradle.xml new file mode 100644 index 0000000..0897082 --- /dev/null +++ b/.idea/gradle.xml @@ -0,0 +1,19 @@ + + + + + + + \ No newline at end of file diff --git a/.idea/inspectionProfiles/Project_Default.xml b/.idea/inspectionProfiles/Project_Default.xml new file mode 100644 index 0000000..6806f5a --- /dev/null +++ b/.idea/inspectionProfiles/Project_Default.xml @@ -0,0 +1,53 @@ + + + + \ No newline at end of file diff --git a/.idea/kotlinc.xml b/.idea/kotlinc.xml new file mode 100644 index 0000000..6d0ee1c --- /dev/null +++ b/.idea/kotlinc.xml @@ -0,0 +1,6 @@ + + + + + \ No newline at end of file diff --git a/.idea/migrations.xml b/.idea/migrations.xml new file mode 100644 index 0000000..f8051a6 --- /dev/null +++ b/.idea/migrations.xml @@ -0,0 +1,10 @@ + + + + + + \ No newline at end of file diff --git a/.idea/misc.xml b/.idea/misc.xml new file mode 100644 index 0000000..0ad17cb --- /dev/null +++ b/.idea/misc.xml @@ -0,0 +1,10 @@ + + + + + + + + + \ No newline at end of file diff --git a/.idea/vcs.xml b/.idea/vcs.xml new file mode 100644 index 0000000..94a25f7 --- /dev/null +++ b/.idea/vcs.xml @@ -0,0 +1,6 @@ + + + + + + \ 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.kts b/app/build.gradle.kts new file mode 100644 index 0000000..8009364 --- /dev/null +++ b/app/build.gradle.kts @@ -0,0 +1,63 @@ +plugins { + alias(libs.plugins.android.application) + alias(libs.plugins.kotlin.android) + alias(libs.plugins.kotlin.compose) +} + +android { + namespace = "com.example.siamobile" + compileSdk = 35 + + defaultConfig { + applicationId = "com.example.siamobile" + minSdk = 24 + targetSdk = 35 + versionCode = 1 + versionName = "1.0" + + testInstrumentationRunner = "androidx.test.runner.AndroidJUnitRunner" + } + + buildTypes { + release { + isMinifyEnabled = false + proguardFiles( + getDefaultProguardFile("proguard-android-optimize.txt"), + "proguard-rules.pro" + ) + } + } + compileOptions { + sourceCompatibility = JavaVersion.VERSION_11 + targetCompatibility = JavaVersion.VERSION_11 + } + kotlinOptions { + jvmTarget = "11" + } + buildFeatures { + compose = true + } +} + +dependencies { + + implementation(libs.androidx.core.ktx) + implementation(libs.androidx.lifecycle.runtime.ktx) + implementation(libs.androidx.activity.compose) + implementation(platform(libs.androidx.compose.bom)) + implementation(libs.androidx.ui) + implementation(libs.androidx.ui.graphics) + implementation(libs.androidx.ui.tooling.preview) + implementation(libs.androidx.material3) + implementation(libs.androidx.appcompat) + implementation(libs.material) + implementation(libs.androidx.activity) + implementation(libs.androidx.constraintlayout) + testImplementation(libs.junit) + androidTestImplementation(libs.androidx.junit) + androidTestImplementation(libs.androidx.espresso.core) + androidTestImplementation(platform(libs.androidx.compose.bom)) + androidTestImplementation(libs.androidx.ui.test.junit4) + debugImplementation(libs.androidx.ui.tooling) + debugImplementation(libs.androidx.ui.test.manifest) +} \ 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/siamobile/ExampleInstrumentedTest.kt b/app/src/androidTest/java/com/example/siamobile/ExampleInstrumentedTest.kt new file mode 100644 index 0000000..f041d2e --- /dev/null +++ b/app/src/androidTest/java/com/example/siamobile/ExampleInstrumentedTest.kt @@ -0,0 +1,24 @@ +package com.example.siamobile + +import androidx.test.platform.app.InstrumentationRegistry +import androidx.test.ext.junit.runners.AndroidJUnit4 + +import org.junit.Test +import org.junit.runner.RunWith + +import org.junit.Assert.* + +/** + * Instrumented test, which will execute on an Android device. + * + * See [testing documentation](http://d.android.com/tools/testing). + */ +@RunWith(AndroidJUnit4::class) +class ExampleInstrumentedTest { + @Test + fun useAppContext() { + // Context of the app under test. + val appContext = InstrumentationRegistry.getInstrumentation().targetContext + assertEquals("com.example.siamobile", appContext.packageName) + } +} \ No newline at end of file diff --git a/app/src/main/AndroidManifest.xml b/app/src/main/AndroidManifest.xml new file mode 100644 index 0000000..8d05e87 --- /dev/null +++ b/app/src/main/AndroidManifest.xml @@ -0,0 +1,37 @@ + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/app/src/main/java/com/example/siamobile/KHSActivity.kt b/app/src/main/java/com/example/siamobile/KHSActivity.kt new file mode 100644 index 0000000..4efaa39 --- /dev/null +++ b/app/src/main/java/com/example/siamobile/KHSActivity.kt @@ -0,0 +1,140 @@ +package com.example.siamobile + +import android.os.Bundle +import androidx.activity.ComponentActivity +import androidx.activity.compose.setContent +import androidx.compose.foundation.layout.* +import androidx.compose.foundation.rememberScrollState +import androidx.compose.foundation.verticalScroll +import androidx.compose.foundation.shape.RoundedCornerShape +import androidx.compose.material3.* +import androidx.compose.runtime.Composable +import androidx.compose.ui.Alignment +import androidx.compose.ui.Modifier +import androidx.compose.ui.platform.LocalContext +import androidx.compose.ui.text.font.FontWeight +import androidx.compose.ui.unit.dp +import com.example.siamobile.ui.theme.SIAMobileTheme +import androidx.compose.foundation.clickable + +class KHSActivity : ComponentActivity() { + override fun onCreate(savedInstanceState: Bundle?) { + super.onCreate(savedInstanceState) + setContent { + SIAMobileTheme { + KHSScreen() + } + } + } +} + +@Composable +fun KHSScreen() { + val context = LocalContext.current + + // Data mahasiswa + val mahasiswaList = listOf( + "000000000000 EXAMPLE", + "202210715185 AHMAD DIMAS RAMADHAN", + "202210715139 ANDRE SAPUTRA GINTING", + "202210715292 BAGAS WAHYU PERMANA", + "202210715175 CHRISTIAN NOAH SIPAHUTAR", + "202210715232 DANIEL EXAUDI GULTOM", + "202210715131 DANIEL FERNANDO S LAIA", + "202110715255 FADEN PRAWIRA BUDIHARJA", + "202210715124 FAIZ DIANDRA SETIAWAN", + "202210715340 FAJAR TRI JULLIA SIEN", + "202210715291 HANIFAH ADHIYA", + "202210715287 IMANUEL RODERICUS PARLINDUNGAN TEMPO", + "202210715298 ISMA RAUDHATUL JANAH", + "202210715160 KRISPINUS NATHANIEL INDARTO", + "202210715118 MOHAMAD DIANDRA FERDIANSYAH", + "202210715197 MUHAMAD HABIBALLAH", + "202210715136 MUHAMAD RAJWA ATHORIQ", + "202210715240 MUHAMMAD FATHAN ZULKARNAIN", + "202210715290 NAJWA MIMA SALSABILA", + "202210715145 RASYID DARUSMAN", + "202210715311 REFLON ARNOLDI SIAGIAN", + "202210715334 REHAN SURYA ARDHANA", + "202210715088 RISKY PUJIANTO", + "202210715237 SULTAN AHMAD RIZKI BADANI" + ) + + Column( + modifier = Modifier + .fillMaxSize() + .padding(16.dp) + ) { + // Header + Text( + text = "Kartu Hasil Studi", + style = MaterialTheme.typography.headlineMedium, + fontWeight = FontWeight.Bold + ) + Spacer(modifier = Modifier.height(8.dp)) + Text( + text = "Daftar Mahasiswa:", + style = MaterialTheme.typography.bodyLarge + ) + Spacer(modifier = Modifier.height(16.dp)) + + // Daftar mahasiswa dengan scrolling + Column( + modifier = Modifier + .weight(1f) + .verticalScroll(rememberScrollState()), + verticalArrangement = Arrangement.spacedBy(8.dp) + ) { + mahasiswaList.forEach { mahasiswa -> + KHSItem(mahasiswaName = mahasiswa) + } + } + + // Tombol Kembali + Spacer(modifier = Modifier.height(16.dp)) + Button( + onClick = { (context as? ComponentActivity)?.finish() }, + modifier = Modifier.align(Alignment.CenterHorizontally) + ) { + Text(text = "Kembali") + } + } +} + +@Composable +fun KHSItem(mahasiswaName: String) { + val context = LocalContext.current + val mahasiswaActivityMap = mapOf( + "000000000000 EXAMPLE" to Mhs000000000000::class.java, + "202210715237 SULTAN AHMAD RIZKI BADANI" to Mhs202210715237::class.java + //"202210715185 AHMAD DIMAS RAMADHAN" to Mhs202210715185::class.java, + // silahkan ditambahkan di sini untuk NPM yang lain + ) + + Card( + shape = RoundedCornerShape(12.dp), + modifier = Modifier + .fillMaxWidth() + .clickable { + val targetActivity = mahasiswaActivityMap[mahasiswaName] + if (targetActivity != null) { + val intent = android.content.Intent(context, targetActivity) + context.startActivity(intent) + } + }, + elevation = CardDefaults.cardElevation(defaultElevation = 4.dp) + ) { + Box( + modifier = Modifier + .padding(16.dp) + .fillMaxWidth(), + contentAlignment = Alignment.CenterStart + ) { + Text( + text = mahasiswaName, + style = MaterialTheme.typography.bodyLarge, + fontWeight = FontWeight.Medium + ) + } + } +} \ No newline at end of file diff --git a/app/src/main/java/com/example/siamobile/MainActivity.kt b/app/src/main/java/com/example/siamobile/MainActivity.kt new file mode 100644 index 0000000..7d26f7c --- /dev/null +++ b/app/src/main/java/com/example/siamobile/MainActivity.kt @@ -0,0 +1,292 @@ +package com.example.siamobile + +import android.os.Bundle +import androidx.activity.ComponentActivity +import androidx.activity.compose.setContent +import androidx.compose.foundation.clickable +import androidx.compose.foundation.layout.* +import androidx.compose.foundation.shape.RoundedCornerShape +import androidx.compose.material3.* +import androidx.compose.runtime.* +import androidx.compose.ui.Alignment +import androidx.compose.ui.Modifier +import androidx.compose.ui.text.font.FontWeight +import androidx.compose.ui.text.style.TextAlign +import androidx.compose.ui.tooling.preview.Preview +import androidx.compose.ui.unit.dp +import com.example.siamobile.ui.theme.SIAMobileTheme +import android.content.Intent +import androidx.compose.ui.platform.LocalContext + +class MainActivity : ComponentActivity() { + override fun onCreate(savedInstanceState: Bundle?) { + super.onCreate(savedInstanceState) + setContent { + SIAMobileTheme { + AppNavigator() + } + } + } +} + +@Composable +fun AppNavigator() { + var currentScreen by remember { mutableStateOf("MainMenu") } + + when (currentScreen) { + "MainMenu" -> MainMenuScreen( + onMenuClick = { selectedMenu -> + when (selectedMenu) { + "About" -> currentScreen = "AboutScreen" + "Pengaturan" -> currentScreen = "SettingsScreen" + "Bantuan" -> currentScreen = "HelpScreen" + } + } + ) + "AboutScreen" -> AboutScreen(onBackClick = { currentScreen = "MainMenu" }) + "SettingsScreen" -> SettingsScreen(onBackClick = { currentScreen = "MainMenu" }) + "HelpScreen" -> HelpScreen(onBackClick = { currentScreen = "MainMenu" }) + } +} + + +@Composable +fun MainMenuScreen(onMenuClick: (String) -> Unit, modifier: Modifier = Modifier) { + val context = LocalContext.current + + Column( + modifier = modifier + .fillMaxSize() + .padding(16.dp), + verticalArrangement = Arrangement.SpaceBetween + ) { + Column(verticalArrangement = Arrangement.spacedBy(12.dp)) { + Text( + text = "Selamat Datang di Aplikasi Akademik", + style = MaterialTheme.typography.headlineMedium, + fontWeight = FontWeight.Bold + ) + Text( + text = "Pilih menu di bawah untuk melanjutkan:", + style = MaterialTheme.typography.bodyMedium + ) + Spacer(modifier = Modifier.height(8.dp)) + + val menuItems = listOf( + "Kartu Hasil Studi", + "Jadwal Kuliah", + "Pengaturan", + "Bantuan", + "About" + ) + + menuItems.forEach { menu -> + MenuCard(menuTitle = menu) { + when (menu) { + "Kartu Hasil Studi" -> { + // Membuka KHSActivity + context.startActivity(Intent(context, KHSActivity::class.java)) + } + else -> { + // Menu lainnya menggunakan handler onMenuClick + onMenuClick(menu) + } + } + } + } + } + + Footer(version = "1.0.0", copyright = "© 2025") + } +} + +@Composable +fun MenuCard(menuTitle: String, onClick: () -> Unit) { + Card( + shape = RoundedCornerShape(12.dp), + modifier = Modifier + .fillMaxWidth() + .clickable { onClick() }, + elevation = CardDefaults.cardElevation(defaultElevation = 4.dp) + ) { + Box( + modifier = Modifier + .padding(16.dp) + .fillMaxWidth(), + contentAlignment = Alignment.CenterStart + ) { + Text( + text = menuTitle, + style = MaterialTheme.typography.bodyLarge, + fontWeight = FontWeight.Medium + ) + } + } +} + +@Composable +fun AboutScreen(onBackClick: () -> Unit) { + Column( + modifier = Modifier + .fillMaxSize() + .padding(16.dp), + verticalArrangement = Arrangement.SpaceBetween + ) { + Column( + modifier = Modifier.fillMaxWidth(), + horizontalAlignment = Alignment.CenterHorizontally + ) { + Text( + text = "Tentang Aplikasi", + style = MaterialTheme.typography.headlineMedium, + fontWeight = FontWeight.Bold + ) + Spacer(modifier = Modifier.height(8.dp)) + Text( + text = "Aplikasi Akademik ini dibuat untuk membantu mahasiswa mengakses informasi akademik seperti jadwal, presensi, dan berita kampus. Dikembangkan oleh Fasilkom Ubharajaya.", + style = MaterialTheme.typography.bodyMedium, + textAlign = TextAlign.Center + ) + Spacer(modifier = Modifier.height(16.dp)) + Text( + text = "Versi 1.0.0", + style = MaterialTheme.typography.bodySmall, + fontWeight = FontWeight.Light, + textAlign = TextAlign.Center + ) + Spacer(modifier = Modifier.height(8.dp)) + Text( + text = "© 2025 Fasilkom Ubharajaya", + style = MaterialTheme.typography.bodySmall, + fontWeight = FontWeight.Light, + textAlign = TextAlign.Center + ) + } + + Button( + onClick = onBackClick, + modifier = Modifier.align(Alignment.CenterHorizontally) + ) { + Text(text = "Kembali ke Menu Utama") + } + } +} + +@Composable +fun SettingsScreen(onBackClick: () -> Unit) { + Column( + modifier = Modifier + .fillMaxSize() + .padding(16.dp), + verticalArrangement = Arrangement.SpaceBetween + ) { + Column( + modifier = Modifier.fillMaxWidth(), + horizontalAlignment = Alignment.CenterHorizontally + ) { + Text( + text = "Pengaturan", + style = MaterialTheme.typography.headlineMedium, + fontWeight = FontWeight.Bold + ) + Spacer(modifier = Modifier.height(8.dp)) + Text( + text = "Atur preferensi aplikasi Anda di sini.", + style = MaterialTheme.typography.bodyMedium, + textAlign = TextAlign.Center + ) + } + + Button( + onClick = onBackClick, + modifier = Modifier.align(Alignment.CenterHorizontally) + ) { + Text(text = "Kembali ke Menu Utama") + } + } +} + +@Composable +fun HelpScreen(onBackClick: () -> Unit) { + Column( + modifier = Modifier + .fillMaxSize() + .padding(16.dp), + verticalArrangement = Arrangement.SpaceBetween + ) { + Column( + modifier = Modifier.fillMaxWidth(), + horizontalAlignment = Alignment.CenterHorizontally + ) { + Text( + text = "Bantuan", + style = MaterialTheme.typography.headlineMedium, + fontWeight = FontWeight.Bold + ) + Spacer(modifier = Modifier.height(8.dp)) + Text( + text = "Jika Anda membutuhkan bantuan, silakan hubungi tim IT kampus Anda atau lihat panduan pengguna.", + style = MaterialTheme.typography.bodyMedium, + textAlign = TextAlign.Center + ) + } + + Button( + onClick = onBackClick, + modifier = Modifier.align(Alignment.CenterHorizontally) + ) { + Text(text = "Kembali ke Menu Utama") + } + } +} + +@Composable +fun Footer(version: String, copyright: String) { + Column( + modifier = Modifier.fillMaxWidth(), + horizontalAlignment = Alignment.CenterHorizontally + ) { + Text( + text = "Versi $version", + style = MaterialTheme.typography.bodySmall, + textAlign = TextAlign.Center + ) + Text( + text = copyright, + style = MaterialTheme.typography.bodySmall, + textAlign = TextAlign.Center + ) + } +} + +@Preview(showBackground = true) +@Composable +fun MainMenuScreenPreview() { + SIAMobileTheme { + MainMenuScreen(onMenuClick = {}) + } +} + +@Preview(showBackground = true) +@Composable +fun AboutScreenPreview() { + SIAMobileTheme { + AboutScreen(onBackClick = {}) + } +} + +@Preview(showBackground = true) +@Composable +fun SettingsScreenPreview() { + SIAMobileTheme { + SettingsScreen(onBackClick = {}) + } +} + +@Preview(showBackground = true) +@Composable +fun HelpScreenPreview() { + SIAMobileTheme { + HelpScreen(onBackClick = {}) + } +} diff --git a/app/src/main/java/com/example/siamobile/Mhs000000000000.kt b/app/src/main/java/com/example/siamobile/Mhs000000000000.kt new file mode 100644 index 0000000..bc1da88 --- /dev/null +++ b/app/src/main/java/com/example/siamobile/Mhs000000000000.kt @@ -0,0 +1,58 @@ +package com.example.siamobile + +import android.os.Bundle +import androidx.activity.ComponentActivity +import androidx.activity.compose.setContent +import androidx.compose.foundation.layout.* +import androidx.compose.material3.* +import androidx.compose.runtime.Composable +import androidx.compose.ui.Alignment +import androidx.compose.ui.Modifier +import androidx.compose.ui.platform.LocalContext +import androidx.compose.ui.text.font.FontWeight +import androidx.compose.ui.unit.dp +import com.example.siamobile.ui.theme.SIAMobileTheme + +class Mhs000000000000 : ComponentActivity() { + override fun onCreate(savedInstanceState: Bundle?) { + super.onCreate(savedInstanceState) + val mahasiswaName = intent.getStringExtra("mahasiswaName") ?: "NPM: xx Nama:Example" + setContent { + SIAMobileTheme { + DetailMahasiswaScreen(mahasiswaName) + } + } + } +} + +@Composable +fun DetailMahasiswaScreen(mahasiswaName: String) { + val context = LocalContext.current + + Column( + modifier = Modifier + .fillMaxSize() + .padding(16.dp), + verticalArrangement = Arrangement.SpaceBetween + ) { + Column { + Text( + text = "KHS Mahasiswa", + style = MaterialTheme.typography.headlineMedium, + fontWeight = FontWeight.Bold + ) + Spacer(modifier = Modifier.height(8.dp)) + Text( + text = mahasiswaName, + style = MaterialTheme.typography.bodyLarge, + fontWeight = FontWeight.Medium + ) + } + Button( + onClick = { (context as? ComponentActivity)?.finish() }, + modifier = Modifier.align(Alignment.CenterHorizontally) + ) { + Text(text = "Kembali") + } + } +} diff --git a/app/src/main/java/com/example/siamobile/Mhs202210715237.kt b/app/src/main/java/com/example/siamobile/Mhs202210715237.kt new file mode 100644 index 0000000..90fd569 --- /dev/null +++ b/app/src/main/java/com/example/siamobile/Mhs202210715237.kt @@ -0,0 +1,129 @@ +package com.example.siamobile + +import android.os.Bundle +import androidx.activity.ComponentActivity +import androidx.activity.compose.setContent +import androidx.compose.foundation.background +import androidx.compose.foundation.layout.* +import androidx.compose.foundation.lazy.LazyColumn +import androidx.compose.foundation.lazy.items +import androidx.compose.material3.* +import androidx.compose.runtime.Composable +import androidx.compose.ui.Alignment +import androidx.compose.ui.Modifier +import androidx.compose.ui.graphics.Color +import androidx.compose.ui.platform.LocalContext +import androidx.compose.ui.text.font.FontWeight +import androidx.compose.ui.unit.dp +import com.example.siamobile.ui.theme.SIAMobileTheme + +data class MataKuliah( + val no: Int, + val namaMK: String, + val sem: Int, + val sks: Int, +) + +class Mhs202210715237 : ComponentActivity() { + override fun onCreate(savedInstanceState: Bundle?) { + super.onCreate(savedInstanceState) + val mahasiswaName = intent.getStringExtra("mahasiswaName") ?: "Nama: Sultan Ahmad Rizki Badani\nNPM: 202210715237" + setContent { + SIAMobileTheme { + DetailMahasiswaScreen2(mahasiswaName) + } + } + } +} + +@Composable +fun DetailMahasiswaScreen2(mahasiswaName: String) { + val context = LocalContext.current + + Column( + modifier = Modifier + .fillMaxSize() + .padding(16.dp), + verticalArrangement = Arrangement.SpaceBetween + ) { + Column { + Text( + text = "KHS Mahasiswa", + style = MaterialTheme.typography.headlineMedium, + fontWeight = FontWeight.Bold + ) + Spacer(modifier = Modifier.height(8.dp)) + Text( + text = mahasiswaName, + style = MaterialTheme.typography.bodyLarge, + fontWeight = FontWeight.Medium + ) + Spacer(modifier = Modifier.height(16.dp)) + TabelMataKuliah() // Menambahkan tabel mata kuliah + } + + Button( + onClick = { (context as? ComponentActivity)?.finish() }, + modifier = Modifier + .align(Alignment.CenterHorizontally) + .padding(top = 16.dp) + .fillMaxWidth() + ) { + Text(text = "Kembali") + } + } +} + +@Composable +fun TabelMataKuliah() { + val mataKuliahList = listOf( + MataKuliah(1, "Aljabar Linear", 1, 3), + MataKuliah(2, "Character Building", 1, 2), + MataKuliah(3, "Dasar Pemrograman", 1, 2), + MataKuliah(4, "Fisika", 1, 3), + MataKuliah(5, "Kalkulus 1", 1, 3), + MataKuliah(6, "Kewarganegaraan", 1, 2), + MataKuliah(7, "Pendidikan Agama", 1, 2), + MataKuliah(8, "Pengantar Teknologi Informasi", 1, 2), + MataKuliah(9, "Struktur Data dan Algoritma", 1, 3), + MataKuliah(10, "Bahasa Indonesia", 2, 2), + MataKuliah(11, "Desain dan Analisis Algoritma", 2, 2), + MataKuliah(12, "Kalkulus II", 2, 3), + MataKuliah(13, "Logika Matematika", 2, 3), + MataKuliah(14, "Matematika Diskrit", 2, 3), + MataKuliah(15, "Sistem Basis Data", 2, 3), + ) + + Column(modifier = Modifier.fillMaxWidth()) { + // Header Tabel + Row( + modifier = Modifier + .fillMaxWidth() + .padding(8.dp) + .background(MaterialTheme.colorScheme.primary), // Menggunakan warna dari tema Material + verticalAlignment = Alignment.CenterVertically + ) { + Text("No", modifier = Modifier.weight(0.1f), fontWeight = FontWeight.Bold, color = Color.White) + Text("Mata Kuliah", modifier = Modifier.weight(0.4f), fontWeight = FontWeight.Bold, color = Color.White) + Text("Sem", modifier = Modifier.weight(0.1f), fontWeight = FontWeight.Bold, color = Color.White) + Text("SKS", modifier = Modifier.weight(0.1f), fontWeight = FontWeight.Bold, color = Color.White) + } + + // Data Tabel + LazyColumn { + items(mataKuliahList) { mataKuliah -> + Row( + modifier = Modifier + .fillMaxWidth() + .padding(8.dp), + verticalAlignment = Alignment.CenterVertically + ) { + Text(mataKuliah.no.toString(), modifier = Modifier.weight(0.1f)) + Text(mataKuliah.namaMK, modifier = Modifier.weight(0.4f)) + Text(mataKuliah.sem.toString(), modifier = Modifier.weight(0.1f)) + Text(mataKuliah.sks.toString(), modifier = Modifier.weight(0.1f)) + } + } + } + } +} diff --git a/app/src/main/java/com/example/siamobile/ui/theme/Color.kt b/app/src/main/java/com/example/siamobile/ui/theme/Color.kt new file mode 100644 index 0000000..05f4f58 --- /dev/null +++ b/app/src/main/java/com/example/siamobile/ui/theme/Color.kt @@ -0,0 +1,11 @@ +package com.example.siamobile.ui.theme + +import androidx.compose.ui.graphics.Color + +val Purple80 = Color(0xFFD0BCFF) +val PurpleGrey80 = Color(0xFFCCC2DC) +val Pink80 = Color(0xFFEFB8C8) + +val Purple40 = Color(0xFF6650a4) +val PurpleGrey40 = Color(0xFF625b71) +val Pink40 = Color(0xFF7D5260) \ No newline at end of file diff --git a/app/src/main/java/com/example/siamobile/ui/theme/Theme.kt b/app/src/main/java/com/example/siamobile/ui/theme/Theme.kt new file mode 100644 index 0000000..9b165f1 --- /dev/null +++ b/app/src/main/java/com/example/siamobile/ui/theme/Theme.kt @@ -0,0 +1,58 @@ +package com.example.siamobile.ui.theme + +import android.app.Activity +import android.os.Build +import androidx.compose.foundation.isSystemInDarkTheme +import androidx.compose.material3.MaterialTheme +import androidx.compose.material3.darkColorScheme +import androidx.compose.material3.dynamicDarkColorScheme +import androidx.compose.material3.dynamicLightColorScheme +import androidx.compose.material3.lightColorScheme +import androidx.compose.runtime.Composable +import androidx.compose.ui.platform.LocalContext + +private val DarkColorScheme = darkColorScheme( + primary = Purple80, + secondary = PurpleGrey80, + tertiary = Pink80 +) + +private val LightColorScheme = lightColorScheme( + primary = Purple40, + secondary = PurpleGrey40, + tertiary = Pink40 + + /* Other default colors to override + background = Color(0xFFFFFBFE), + surface = Color(0xFFFFFBFE), + onPrimary = Color.White, + onSecondary = Color.White, + onTertiary = Color.White, + onBackground = Color(0xFF1C1B1F), + onSurface = Color(0xFF1C1B1F), + */ +) + +@Composable +fun SIAMobileTheme( + darkTheme: Boolean = isSystemInDarkTheme(), + // Dynamic color is available on Android 12+ + dynamicColor: Boolean = true, + content: @Composable () -> Unit +) { + val colorScheme = when { + dynamicColor && Build.VERSION.SDK_INT >= Build.VERSION_CODES.S -> { + val context = LocalContext.current + if (darkTheme) dynamicDarkColorScheme(context) else dynamicLightColorScheme(context) + } + + darkTheme -> DarkColorScheme + else -> LightColorScheme + } + + MaterialTheme( + colorScheme = colorScheme, + typography = Typography, + content = content + ) +} \ No newline at end of file diff --git a/app/src/main/java/com/example/siamobile/ui/theme/Type.kt b/app/src/main/java/com/example/siamobile/ui/theme/Type.kt new file mode 100644 index 0000000..9587a79 --- /dev/null +++ b/app/src/main/java/com/example/siamobile/ui/theme/Type.kt @@ -0,0 +1,34 @@ +package com.example.siamobile.ui.theme + +import androidx.compose.material3.Typography +import androidx.compose.ui.text.TextStyle +import androidx.compose.ui.text.font.FontFamily +import androidx.compose.ui.text.font.FontWeight +import androidx.compose.ui.unit.sp + +// Set of Material typography styles to start with +val Typography = Typography( + bodyLarge = TextStyle( + fontFamily = FontFamily.Default, + fontWeight = FontWeight.Normal, + fontSize = 16.sp, + lineHeight = 24.sp, + letterSpacing = 0.5.sp + ) + /* Other default text styles to override + titleLarge = TextStyle( + fontFamily = FontFamily.Default, + fontWeight = FontWeight.Normal, + fontSize = 22.sp, + lineHeight = 28.sp, + letterSpacing = 0.sp + ), + labelSmall = TextStyle( + fontFamily = FontFamily.Default, + fontWeight = FontWeight.Medium, + fontSize = 11.sp, + lineHeight = 16.sp, + letterSpacing = 0.5.sp + ) + */ +) \ No newline at end of file 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/ic_launcher_foreground.xml b/app/src/main/res/drawable/ic_launcher_foreground.xml new file mode 100644 index 0000000..2b068d1 --- /dev/null +++ b/app/src/main/res/drawable/ic_launcher_foreground.xml @@ -0,0 +1,30 @@ + + + + + + + + + + + \ No newline at end of file diff --git a/app/src/main/res/layout/activity_khsactivity.xml b/app/src/main/res/layout/activity_khsactivity.xml new file mode 100644 index 0000000..9f73856 --- /dev/null +++ b/app/src/main/res/layout/activity_khsactivity.xml @@ -0,0 +1,10 @@ + + + + \ No newline at end of file diff --git a/app/src/main/res/layout/activity_mhs000000000000.xml b/app/src/main/res/layout/activity_mhs000000000000.xml new file mode 100644 index 0000000..f1b3538 --- /dev/null +++ b/app/src/main/res/layout/activity_mhs000000000000.xml @@ -0,0 +1,10 @@ + + + + \ No newline at end of file diff --git a/app/src/main/res/mipmap-anydpi-v26/ic_launcher.xml b/app/src/main/res/mipmap-anydpi-v26/ic_launcher.xml new file mode 100644 index 0000000..6f3b755 --- /dev/null +++ b/app/src/main/res/mipmap-anydpi-v26/ic_launcher.xml @@ -0,0 +1,6 @@ + + + + + + \ No newline at end of file diff --git a/app/src/main/res/mipmap-anydpi-v26/ic_launcher_round.xml b/app/src/main/res/mipmap-anydpi-v26/ic_launcher_round.xml new file mode 100644 index 0000000..6f3b755 --- /dev/null +++ b/app/src/main/res/mipmap-anydpi-v26/ic_launcher_round.xml @@ -0,0 +1,6 @@ + + + + + + \ No newline at end of file diff --git a/app/src/main/res/mipmap-hdpi/ic_launcher.webp b/app/src/main/res/mipmap-hdpi/ic_launcher.webp new file mode 100644 index 0000000..c209e78 Binary files /dev/null and b/app/src/main/res/mipmap-hdpi/ic_launcher.webp differ diff --git a/app/src/main/res/mipmap-hdpi/ic_launcher_round.webp b/app/src/main/res/mipmap-hdpi/ic_launcher_round.webp new file mode 100644 index 0000000..b2dfe3d Binary files /dev/null and b/app/src/main/res/mipmap-hdpi/ic_launcher_round.webp differ diff --git a/app/src/main/res/mipmap-mdpi/ic_launcher.webp b/app/src/main/res/mipmap-mdpi/ic_launcher.webp new file mode 100644 index 0000000..4f0f1d6 Binary files /dev/null and b/app/src/main/res/mipmap-mdpi/ic_launcher.webp differ diff --git a/app/src/main/res/mipmap-mdpi/ic_launcher_round.webp b/app/src/main/res/mipmap-mdpi/ic_launcher_round.webp new file mode 100644 index 0000000..62b611d Binary files /dev/null and b/app/src/main/res/mipmap-mdpi/ic_launcher_round.webp differ diff --git a/app/src/main/res/mipmap-xhdpi/ic_launcher.webp b/app/src/main/res/mipmap-xhdpi/ic_launcher.webp new file mode 100644 index 0000000..948a307 Binary files /dev/null and b/app/src/main/res/mipmap-xhdpi/ic_launcher.webp differ diff --git a/app/src/main/res/mipmap-xhdpi/ic_launcher_round.webp b/app/src/main/res/mipmap-xhdpi/ic_launcher_round.webp new file mode 100644 index 0000000..1b9a695 Binary files /dev/null and b/app/src/main/res/mipmap-xhdpi/ic_launcher_round.webp differ diff --git a/app/src/main/res/mipmap-xxhdpi/ic_launcher.webp b/app/src/main/res/mipmap-xxhdpi/ic_launcher.webp new file mode 100644 index 0000000..28d4b77 Binary files /dev/null and b/app/src/main/res/mipmap-xxhdpi/ic_launcher.webp differ diff --git a/app/src/main/res/mipmap-xxhdpi/ic_launcher_round.webp b/app/src/main/res/mipmap-xxhdpi/ic_launcher_round.webp new file mode 100644 index 0000000..9287f50 Binary files /dev/null and b/app/src/main/res/mipmap-xxhdpi/ic_launcher_round.webp differ diff --git a/app/src/main/res/mipmap-xxxhdpi/ic_launcher.webp b/app/src/main/res/mipmap-xxxhdpi/ic_launcher.webp new file mode 100644 index 0000000..aa7d642 Binary files /dev/null and b/app/src/main/res/mipmap-xxxhdpi/ic_launcher.webp differ diff --git a/app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.webp b/app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.webp new file mode 100644 index 0000000..9126ae3 Binary files /dev/null and b/app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.webp differ diff --git a/app/src/main/res/values/colors.xml b/app/src/main/res/values/colors.xml new file mode 100644 index 0000000..f8c6127 --- /dev/null +++ b/app/src/main/res/values/colors.xml @@ -0,0 +1,10 @@ + + + #FFBB86FC + #FF6200EE + #FF3700B3 + #FF03DAC5 + #FF018786 + #FF000000 + #FFFFFFFF + \ No newline at end of file diff --git a/app/src/main/res/values/strings.xml b/app/src/main/res/values/strings.xml new file mode 100644 index 0000000..54131a4 --- /dev/null +++ b/app/src/main/res/values/strings.xml @@ -0,0 +1,3 @@ + + SIA Mobile + \ No newline at end of file diff --git a/app/src/main/res/values/themes.xml b/app/src/main/res/values/themes.xml new file mode 100644 index 0000000..a7a732d --- /dev/null +++ b/app/src/main/res/values/themes.xml @@ -0,0 +1,5 @@ + + + +