Android Day 17 How to change and make button have more selection functionality?
Android Day 17 How to change and make button have more selection functionality? package com.williamjiamin.ourowncomposable import android.os.Bundle import android.widget.Toast import androidx.activity.ComponentActivity import androidx.activity.compose.setContent import androidx.compose.foundation.Image import androidx.compose.foundation.background import androidx.compose.foundation.layout.Arrangement import…
Android Day 16 Let’s talk about icons!
Android Day 16 Let's talk about icons! 1.https://fonts.google.com/icons 2.Android Studio: If you're using Android Studio, you can use the built-in Vector Asset Studio to browse and import Material icons directly…
Android Day 15 How to make a customised logo text?
Android Day 15 How to make a customised logo text? Today, we are going to make some customised text at the top of our app to serve as a logo:…
Android Day 14 How to add custimized image as your app logo?
Android Day 14 How to add custimized image as your app logo? Very simple one this day, you just need to add an image drag and drop to drawable. package…
Android Day 13 When to choose spacer and when to choose padding, in my experience.
Android Day 13 When to choose spacer and when to choose padding, in my experience. Some of you guys may think that padding is good and convinent to use than…
Android Day 12 Clean Our Project and make a Translation App Demo
Android Day 12 Clean Our Project and make a Translation App Demo Today we are going to do a complete overhaul of our project and make a mock translation app:…
Android Day 11 Add Toast to the button
Android Day 11 Add Toast to the button OK, the user can click the button, but they are not getting any respond, what to do next? Let's add some Toast…
Android Day 10 Add interaction to the Textfield !
Android Day 10 Add interaction to the Textfield ! Let's add some interaction to the text field so user can actually achive something! The best and the most simple way…
Android Day 9 How to make customised Preview?
Android Day 9 How to make customised Preview? Realy simple, just comment the default preview and add our own , but add @Preview(showBackground = true) @Composable at the top. //@Preview(showBackground…
Android Day 8 How to get user Input?
Android Day 8 How to get user Input? Well , let me demostrate some of the user input, you can use all sorts of textfield to do this: package com.williamjiamin.ourowncomposable…