diff --git a/.idea/.gitignore b/.idea/.gitignore new file mode 100644 index 00000000..26d33521 --- /dev/null +++ b/.idea/.gitignore @@ -0,0 +1,3 @@ +# Default ignored files +/shelf/ +/workspace.xml diff --git a/.idea/checkstyle-idea.xml b/.idea/checkstyle-idea.xml new file mode 100644 index 00000000..75470a03 --- /dev/null +++ b/.idea/checkstyle-idea.xml @@ -0,0 +1,15 @@ + + + + 10.17.0 + JavaOnly + + + \ No newline at end of file diff --git a/RaJ/.gitignore b/RaJ/.gitignore new file mode 100644 index 00000000..285c5b7d --- /dev/null +++ b/RaJ/.gitignore @@ -0,0 +1,35 @@ +# Android/IntelliJ +.idea/ +.vscode/ +*.iml +*.hprof + +# Gradle +.gradle/ +/build/ +**/build/ +.gradle/ +gradle-app.setting +gradle.properties + +# Local configuration file (sdk location, etc.) +local.properties + +# Log files +*.log + +# Android Studio Navigation editor temp files +.navigation/ + +# APK, JAR, Bundle files +*.apk +*.ap_ +*.jar +*.aab + +# Kotlin-specific files +*.ktm +*.kts + +# Unit test reports +/test-results/ \ No newline at end of file diff --git a/RaJ/app/.gitignore b/RaJ/app/.gitignore new file mode 100644 index 00000000..42afabfd --- /dev/null +++ b/RaJ/app/.gitignore @@ -0,0 +1 @@ +/build \ No newline at end of file diff --git a/RaJ/app/proguard-rules.pro b/RaJ/app/proguard-rules.pro new file mode 100644 index 00000000..481bb434 --- /dev/null +++ b/RaJ/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/RaJ/app/src/androidTest/java/com/learning/composelearning/ExampleInstrumentedTest.kt b/RaJ/app/src/androidTest/java/com/learning/composelearning/ExampleInstrumentedTest.kt new file mode 100644 index 00000000..d8d0d752 --- /dev/null +++ b/RaJ/app/src/androidTest/java/com/learning/composelearning/ExampleInstrumentedTest.kt @@ -0,0 +1,24 @@ +package com.learning.composelearning + +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.learning.composelearning", appContext.packageName) + } +} \ No newline at end of file diff --git a/RaJ/app/src/main/AndroidManifest.xml b/RaJ/app/src/main/AndroidManifest.xml new file mode 100644 index 00000000..99482f94 --- /dev/null +++ b/RaJ/app/src/main/AndroidManifest.xml @@ -0,0 +1,28 @@ + + + + + + + + + + + + + + \ No newline at end of file diff --git a/RaJ/app/src/main/java/com/learning/composelearning/MainActivity.kt b/RaJ/app/src/main/java/com/learning/composelearning/MainActivity.kt new file mode 100644 index 00000000..e7e61267 --- /dev/null +++ b/RaJ/app/src/main/java/com/learning/composelearning/MainActivity.kt @@ -0,0 +1,247 @@ +package com.learning.composelearning + +import android.os.Bundle +import androidx.activity.ComponentActivity +import androidx.activity.compose.setContent +import androidx.activity.enableEdgeToEdge +import androidx.compose.foundation.layout.Arrangement +import androidx.compose.foundation.layout.Column +import androidx.compose.foundation.layout.Row +import androidx.compose.foundation.layout.fillMaxSize +import androidx.compose.foundation.layout.fillMaxWidth +import androidx.compose.foundation.layout.padding +import androidx.compose.foundation.layout.size +import androidx.compose.foundation.layout.wrapContentSize +import androidx.compose.foundation.shape.CircleShape +import androidx.compose.material3.Button +import androidx.compose.material3.ButtonDefaults +import androidx.compose.material3.Scaffold +import androidx.compose.material3.Text +import androidx.compose.runtime.Composable +import androidx.compose.runtime.mutableStateOf +import androidx.compose.runtime.remember +import androidx.compose.ui.Alignment +import androidx.compose.ui.Modifier +import androidx.compose.ui.graphics.Color +import androidx.compose.ui.text.font.FontFamily +import androidx.compose.ui.text.font.FontWeight +import androidx.compose.ui.tooling.preview.Preview +import androidx.compose.ui.unit.dp +import androidx.compose.ui.unit.sp +import com.learning.composelearning.ui.theme.ComposeLearningTheme + +class MainActivity : ComponentActivity() { + override fun onCreate(savedInstanceState: Bundle?) { + super.onCreate(savedInstanceState) + enableEdgeToEdge() + setContent { + ComposeLearningTheme { + Scaffold(modifier = Modifier.fillMaxSize()) { innerPadding -> + SimpeCalculator( + modifier = Modifier.padding(innerPadding) + ) + } + } + } + } +} + +@Composable +fun SimpeCalculator(modifier: Modifier) { + + val userInput = remember { mutableStateOf("") } + + Column( + modifier = modifier.fillMaxSize(), + verticalArrangement = Arrangement.Center + ) { + + Text( + modifier = modifier + .fillMaxWidth() + .wrapContentSize(Alignment.TopEnd) + .padding(10.dp), + text = userInput.value, + fontFamily = FontFamily.Serif, + fontWeight = FontWeight.Bold, + fontSize = 50.sp, + ) + + + Row( + modifier = modifier + .fillMaxWidth() + .padding(10.dp), + horizontalArrangement = Arrangement.SpaceBetween + ) { + Button( + modifier = modifier.size(50.dp), + shape = CircleShape, + colors = ButtonDefaults.buttonColors(), + onClick = { + userInput.value += 7 + } + ) { + + Text(text = "7") + } + + Button( + modifier = modifier.size(50.dp), + shape = CircleShape, + colors = ButtonDefaults.buttonColors(), + onClick = { + userInput.value += 8 + } + ) { + Text(text = "8") + } + + Button( + modifier = modifier.size(50.dp), + shape = CircleShape, + colors = ButtonDefaults.buttonColors(), + onClick = { + userInput.value += 9 + } + ) { + Text(text = "9") + } + } + + Row( + modifier = modifier + .fillMaxWidth() + .padding(10.dp), + horizontalArrangement = Arrangement.SpaceBetween + ) { + Button( + modifier = modifier.size(50.dp), + shape = CircleShape, + colors = ButtonDefaults.buttonColors(), + onClick = { + userInput.value += 4 + } + ) { + Text(text = "4") + } + + Button( + modifier = modifier.size(50.dp), + shape = CircleShape, + colors = ButtonDefaults.buttonColors(), + onClick = { + userInput.value += 5 + } + ) { + Text(text = "5") + } + + Button( + modifier = modifier.size(50.dp), + shape = CircleShape, + colors = ButtonDefaults.buttonColors(), + onClick = { + userInput.value += 6 + } + ) { + Text(text = "6") + } + } + + Row( + modifier = modifier + .fillMaxWidth() + .padding(10.dp), + horizontalArrangement = Arrangement.SpaceBetween + ) { + Button( + modifier = modifier.size(50.dp), + shape = CircleShape, + colors = ButtonDefaults.buttonColors(), + onClick = { + userInput.value += 1 + } + ) { + Text(text = "1") + } + + Button( + modifier = modifier.size(50.dp), + shape = CircleShape, + colors = ButtonDefaults.buttonColors(), + onClick = { + userInput.value += 2 + } + ) { + Text(text = "2") + } + + Button( + modifier = modifier.size(50.dp), + shape = CircleShape, + colors = ButtonDefaults.buttonColors(), + onClick = { + userInput.value += 3 + } + ) { + Text(text = "3") + } + } + + Row( + modifier = modifier + .fillMaxWidth() + .padding(10.dp), + horizontalArrangement = Arrangement.SpaceBetween + ) { + Button( + modifier = modifier.size(50.dp), + shape = CircleShape, + colors = ButtonDefaults.buttonColors(Color.Green), + onClick = { + userInput.value += "+" + } + ) { + + Text(text = "+") + } + + Button( + modifier = modifier.size(50.dp), + shape = CircleShape, + colors = ButtonDefaults.buttonColors(Color.Red), + onClick = { + userInput.value += "-" + + } + ) { + Text(text = "-") + } + + Button( + modifier = modifier.size(50.dp), + shape = CircleShape, + colors = ButtonDefaults.buttonColors(), + onClick = { + if (userInput.value.contains("+")) { + val pars = userInput.value.split("+") + val num1 = pars[0] + val num2 = pars[1] + val sum = num1.toInt() + num2.toInt() + userInput.value = sum.toString() + } else if (userInput.value.contains("-")) { + val pars = userInput.value.split("-") + val num1 = pars[0] + val num2 = pars[1] + val sub = num2.toInt() - num1.toInt() + userInput.value = sub.toString() + } + } + ) { + Text(text = "=") + } + } + } + +} \ No newline at end of file diff --git a/RaJ/app/src/main/java/com/learning/composelearning/ui/theme/Color.kt b/RaJ/app/src/main/java/com/learning/composelearning/ui/theme/Color.kt new file mode 100644 index 00000000..43cd3022 --- /dev/null +++ b/RaJ/app/src/main/java/com/learning/composelearning/ui/theme/Color.kt @@ -0,0 +1,11 @@ +package com.learning.composelearning.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/RaJ/app/src/main/java/com/learning/composelearning/ui/theme/Theme.kt b/RaJ/app/src/main/java/com/learning/composelearning/ui/theme/Theme.kt new file mode 100644 index 00000000..5370c77a --- /dev/null +++ b/RaJ/app/src/main/java/com/learning/composelearning/ui/theme/Theme.kt @@ -0,0 +1,58 @@ +package com.learning.composelearning.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 ComposeLearningTheme( + 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/RaJ/app/src/main/java/com/learning/composelearning/ui/theme/Type.kt b/RaJ/app/src/main/java/com/learning/composelearning/ui/theme/Type.kt new file mode 100644 index 00000000..f7e3ed95 --- /dev/null +++ b/RaJ/app/src/main/java/com/learning/composelearning/ui/theme/Type.kt @@ -0,0 +1,34 @@ +package com.learning.composelearning.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/RaJ/app/src/main/res/drawable/ic_launcher_background.xml b/RaJ/app/src/main/res/drawable/ic_launcher_background.xml new file mode 100644 index 00000000..07d5da9c --- /dev/null +++ b/RaJ/app/src/main/res/drawable/ic_launcher_background.xml @@ -0,0 +1,170 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/RaJ/app/src/main/res/drawable/ic_launcher_foreground.xml b/RaJ/app/src/main/res/drawable/ic_launcher_foreground.xml new file mode 100644 index 00000000..2b068d11 --- /dev/null +++ b/RaJ/app/src/main/res/drawable/ic_launcher_foreground.xml @@ -0,0 +1,30 @@ + + + + + + + + + + + \ No newline at end of file diff --git a/RaJ/app/src/main/res/mipmap-anydpi-v26/ic_launcher.xml b/RaJ/app/src/main/res/mipmap-anydpi-v26/ic_launcher.xml new file mode 100644 index 00000000..6f3b755b --- /dev/null +++ b/RaJ/app/src/main/res/mipmap-anydpi-v26/ic_launcher.xml @@ -0,0 +1,6 @@ + + + + + + \ No newline at end of file diff --git a/RaJ/app/src/main/res/mipmap-anydpi-v26/ic_launcher_round.xml b/RaJ/app/src/main/res/mipmap-anydpi-v26/ic_launcher_round.xml new file mode 100644 index 00000000..6f3b755b --- /dev/null +++ b/RaJ/app/src/main/res/mipmap-anydpi-v26/ic_launcher_round.xml @@ -0,0 +1,6 @@ + + + + + + \ No newline at end of file diff --git a/RaJ/app/src/main/res/mipmap-hdpi/ic_launcher.webp b/RaJ/app/src/main/res/mipmap-hdpi/ic_launcher.webp new file mode 100644 index 00000000..c209e78e Binary files /dev/null and b/RaJ/app/src/main/res/mipmap-hdpi/ic_launcher.webp differ diff --git a/RaJ/app/src/main/res/mipmap-hdpi/ic_launcher_round.webp b/RaJ/app/src/main/res/mipmap-hdpi/ic_launcher_round.webp new file mode 100644 index 00000000..b2dfe3d1 Binary files /dev/null and b/RaJ/app/src/main/res/mipmap-hdpi/ic_launcher_round.webp differ diff --git a/RaJ/app/src/main/res/mipmap-mdpi/ic_launcher.webp b/RaJ/app/src/main/res/mipmap-mdpi/ic_launcher.webp new file mode 100644 index 00000000..4f0f1d64 Binary files /dev/null and b/RaJ/app/src/main/res/mipmap-mdpi/ic_launcher.webp differ diff --git a/RaJ/app/src/main/res/mipmap-mdpi/ic_launcher_round.webp b/RaJ/app/src/main/res/mipmap-mdpi/ic_launcher_round.webp new file mode 100644 index 00000000..62b611da Binary files /dev/null and b/RaJ/app/src/main/res/mipmap-mdpi/ic_launcher_round.webp differ diff --git a/RaJ/app/src/main/res/mipmap-xhdpi/ic_launcher.webp b/RaJ/app/src/main/res/mipmap-xhdpi/ic_launcher.webp new file mode 100644 index 00000000..948a3070 Binary files /dev/null and b/RaJ/app/src/main/res/mipmap-xhdpi/ic_launcher.webp differ diff --git a/RaJ/app/src/main/res/mipmap-xhdpi/ic_launcher_round.webp b/RaJ/app/src/main/res/mipmap-xhdpi/ic_launcher_round.webp new file mode 100644 index 00000000..1b9a6956 Binary files /dev/null and b/RaJ/app/src/main/res/mipmap-xhdpi/ic_launcher_round.webp differ diff --git a/RaJ/app/src/main/res/mipmap-xxhdpi/ic_launcher.webp b/RaJ/app/src/main/res/mipmap-xxhdpi/ic_launcher.webp new file mode 100644 index 00000000..28d4b77f Binary files /dev/null and b/RaJ/app/src/main/res/mipmap-xxhdpi/ic_launcher.webp differ diff --git a/RaJ/app/src/main/res/mipmap-xxhdpi/ic_launcher_round.webp b/RaJ/app/src/main/res/mipmap-xxhdpi/ic_launcher_round.webp new file mode 100644 index 00000000..9287f508 Binary files /dev/null and b/RaJ/app/src/main/res/mipmap-xxhdpi/ic_launcher_round.webp differ diff --git a/RaJ/app/src/main/res/mipmap-xxxhdpi/ic_launcher.webp b/RaJ/app/src/main/res/mipmap-xxxhdpi/ic_launcher.webp new file mode 100644 index 00000000..aa7d6427 Binary files /dev/null and b/RaJ/app/src/main/res/mipmap-xxxhdpi/ic_launcher.webp differ diff --git a/RaJ/app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.webp b/RaJ/app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.webp new file mode 100644 index 00000000..9126ae37 Binary files /dev/null and b/RaJ/app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.webp differ diff --git a/RaJ/app/src/main/res/values/colors.xml b/RaJ/app/src/main/res/values/colors.xml new file mode 100644 index 00000000..f8c6127d --- /dev/null +++ b/RaJ/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/RaJ/app/src/main/res/values/strings.xml b/RaJ/app/src/main/res/values/strings.xml new file mode 100644 index 00000000..4c0d38e4 --- /dev/null +++ b/RaJ/app/src/main/res/values/strings.xml @@ -0,0 +1,3 @@ + + ComposeLearning + \ No newline at end of file diff --git a/RaJ/app/src/main/res/values/themes.xml b/RaJ/app/src/main/res/values/themes.xml new file mode 100644 index 00000000..0136c8ac --- /dev/null +++ b/RaJ/app/src/main/res/values/themes.xml @@ -0,0 +1,5 @@ + + + +