diff --git a/app/src/main/AndroidManifest.xml b/app/src/main/AndroidManifest.xml index 020df0a..fecd7f0 100644 --- a/app/src/main/AndroidManifest.xml +++ b/app/src/main/AndroidManifest.xml @@ -54,22 +54,22 @@ - - + + - - + + - - + + - - + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/autofill/src/main/java/com/asemlab/samples/autofill/ui/MainActivity.kt b/autofill/src/main/java/com/asemlab/samples/autofill/ui/MainActivity.kt new file mode 100644 index 0000000..e17a2e0 --- /dev/null +++ b/autofill/src/main/java/com/asemlab/samples/autofill/ui/MainActivity.kt @@ -0,0 +1,29 @@ +package com.asemlab.samples.autofill.ui + +import android.os.Bundle +import androidx.activity.enableEdgeToEdge +import androidx.appcompat.app.AppCompatActivity +import androidx.core.view.ViewCompat +import androidx.core.view.WindowInsetsCompat +import androidx.databinding.DataBindingUtil +import com.asemlab.samples.autofill.R +import com.asemlab.samples.autofill.databinding.ActivityMainBinding + + +class MainActivity : AppCompatActivity() { + + private lateinit var binding: ActivityMainBinding + + override fun onCreate(savedInstanceState: Bundle?) { + super.onCreate(savedInstanceState) + binding = DataBindingUtil.setContentView(this, R.layout.activity_main) + + enableEdgeToEdge() + ViewCompat.setOnApplyWindowInsetsListener(findViewById(R.id.main)) { v, insets -> + val systemBars = insets.getInsets(WindowInsetsCompat.Type.systemBars()) + v.setPadding(systemBars.left, systemBars.top, systemBars.right, systemBars.bottom) + insets + } + + } +} \ No newline at end of file diff --git a/autofill/src/main/res/drawable/ic_launcher_background.xml b/autofill/src/main/res/drawable/ic_launcher_background.xml new file mode 100644 index 0000000..07d5da9 --- /dev/null +++ b/autofill/src/main/res/drawable/ic_launcher_background.xml @@ -0,0 +1,170 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/autofill/src/main/res/drawable/ic_launcher_foreground.xml b/autofill/src/main/res/drawable/ic_launcher_foreground.xml new file mode 100644 index 0000000..2b068d1 --- /dev/null +++ b/autofill/src/main/res/drawable/ic_launcher_foreground.xml @@ -0,0 +1,30 @@ + + + + + + + + + + + \ No newline at end of file diff --git a/autofill/src/main/res/layout/activity_main.xml b/autofill/src/main/res/layout/activity_main.xml new file mode 100644 index 0000000..49c8976 --- /dev/null +++ b/autofill/src/main/res/layout/activity_main.xml @@ -0,0 +1,22 @@ + + + + + + + + \ No newline at end of file diff --git a/autofill/src/main/res/mipmap-anydpi-v26/ic_launcher.xml b/autofill/src/main/res/mipmap-anydpi-v26/ic_launcher.xml new file mode 100644 index 0000000..6f3b755 --- /dev/null +++ b/autofill/src/main/res/mipmap-anydpi-v26/ic_launcher.xml @@ -0,0 +1,6 @@ + + + + + + \ No newline at end of file diff --git a/autofill/src/main/res/mipmap-anydpi-v26/ic_launcher_round.xml b/autofill/src/main/res/mipmap-anydpi-v26/ic_launcher_round.xml new file mode 100644 index 0000000..6f3b755 --- /dev/null +++ b/autofill/src/main/res/mipmap-anydpi-v26/ic_launcher_round.xml @@ -0,0 +1,6 @@ + + + + + + \ No newline at end of file diff --git a/autofill/src/main/res/mipmap-hdpi/ic_launcher.webp b/autofill/src/main/res/mipmap-hdpi/ic_launcher.webp new file mode 100644 index 0000000..c209e78 Binary files /dev/null and b/autofill/src/main/res/mipmap-hdpi/ic_launcher.webp differ diff --git a/autofill/src/main/res/mipmap-hdpi/ic_launcher_round.webp b/autofill/src/main/res/mipmap-hdpi/ic_launcher_round.webp new file mode 100644 index 0000000..b2dfe3d Binary files /dev/null and b/autofill/src/main/res/mipmap-hdpi/ic_launcher_round.webp differ diff --git a/autofill/src/main/res/mipmap-mdpi/ic_launcher.webp b/autofill/src/main/res/mipmap-mdpi/ic_launcher.webp new file mode 100644 index 0000000..4f0f1d6 Binary files /dev/null and b/autofill/src/main/res/mipmap-mdpi/ic_launcher.webp differ diff --git a/autofill/src/main/res/mipmap-mdpi/ic_launcher_round.webp b/autofill/src/main/res/mipmap-mdpi/ic_launcher_round.webp new file mode 100644 index 0000000..62b611d Binary files /dev/null and b/autofill/src/main/res/mipmap-mdpi/ic_launcher_round.webp differ diff --git a/autofill/src/main/res/mipmap-xhdpi/ic_launcher.webp b/autofill/src/main/res/mipmap-xhdpi/ic_launcher.webp new file mode 100644 index 0000000..948a307 Binary files /dev/null and b/autofill/src/main/res/mipmap-xhdpi/ic_launcher.webp differ diff --git a/autofill/src/main/res/mipmap-xhdpi/ic_launcher_round.webp b/autofill/src/main/res/mipmap-xhdpi/ic_launcher_round.webp new file mode 100644 index 0000000..1b9a695 Binary files /dev/null and b/autofill/src/main/res/mipmap-xhdpi/ic_launcher_round.webp differ diff --git a/autofill/src/main/res/mipmap-xxhdpi/ic_launcher.webp b/autofill/src/main/res/mipmap-xxhdpi/ic_launcher.webp new file mode 100644 index 0000000..28d4b77 Binary files /dev/null and b/autofill/src/main/res/mipmap-xxhdpi/ic_launcher.webp differ diff --git a/autofill/src/main/res/mipmap-xxhdpi/ic_launcher_round.webp b/autofill/src/main/res/mipmap-xxhdpi/ic_launcher_round.webp new file mode 100644 index 0000000..9287f50 Binary files /dev/null and b/autofill/src/main/res/mipmap-xxhdpi/ic_launcher_round.webp differ diff --git a/autofill/src/main/res/mipmap-xxxhdpi/ic_launcher.webp b/autofill/src/main/res/mipmap-xxxhdpi/ic_launcher.webp new file mode 100644 index 0000000..aa7d642 Binary files /dev/null and b/autofill/src/main/res/mipmap-xxxhdpi/ic_launcher.webp differ diff --git a/autofill/src/main/res/mipmap-xxxhdpi/ic_launcher_round.webp b/autofill/src/main/res/mipmap-xxxhdpi/ic_launcher_round.webp new file mode 100644 index 0000000..9126ae3 Binary files /dev/null and b/autofill/src/main/res/mipmap-xxxhdpi/ic_launcher_round.webp differ diff --git a/autofill/src/main/res/values-night/themes.xml b/autofill/src/main/res/values-night/themes.xml new file mode 100644 index 0000000..f3a1a1c --- /dev/null +++ b/autofill/src/main/res/values-night/themes.xml @@ -0,0 +1,7 @@ + + + + \ No newline at end of file diff --git a/autofill/src/main/res/values/colors.xml b/autofill/src/main/res/values/colors.xml new file mode 100644 index 0000000..c8524cd --- /dev/null +++ b/autofill/src/main/res/values/colors.xml @@ -0,0 +1,5 @@ + + + #FF000000 + #FFFFFFFF + \ No newline at end of file diff --git a/autofill/src/main/res/values/strings.xml b/autofill/src/main/res/values/strings.xml new file mode 100644 index 0000000..ca9cc2d --- /dev/null +++ b/autofill/src/main/res/values/strings.xml @@ -0,0 +1,3 @@ + + AutoFill + \ No newline at end of file diff --git a/autofill/src/main/res/values/themes.xml b/autofill/src/main/res/values/themes.xml new file mode 100644 index 0000000..b26dfd3 --- /dev/null +++ b/autofill/src/main/res/values/themes.xml @@ -0,0 +1,9 @@ + + + + +