Posts

Day 8 of Android Development

 Hello everyone , today is day 8 of android development , actually i'm building one project and it is imcomplete so i will not upload any code today i'm going to study something because tommorrow is monday and my classes too. and its 2 am  now , after half an hour i'm turing off the laptop . and tommorrow i will upload code and next concept too

Day 7 of Android Development

Hello everyone, today is 7th day of my journey it is nice to code because of my laptop it works preety well now learnt many concept and practice too and also build some apps . Text view Scrool view Explicit Intent Implicit Intent Git hub  Web view These are the concepts as i earlier mentioned github means from now i will up all source code on github  source code of entire journey on Android Development  and for apks Telegram WEBVIEW KOTLIN CODE package com.example.webview import android.os. Build import android.os. Bundle import android.webkit. WebView import android.webkit. WebViewClient import androidx.activity.enableEdgeToEdge import androidx.annotation. RequiresApi import androidx.appcompat.app. AppCompatActivity import androidx.core.view. ViewCompat import androidx.core.view. WindowInsetsCompat class MainActivity : AppCompatActivity() { @RequiresApi ( Build . VERSION_CODES . O ) override fun onCreate ( savedInstanceState : Bundle ?) { super .onCreate(...

Day 6 of Android Development

 Hello everyone, Today i learned to make intractive freature in my app basically i can switch in dark mode to reading mode and from reading mode to dark mode, And then about Types of layouts.  Linear layout Relative layout constraint layout and last,  Android app activity lifecycle. TELEGRAM FOR APKS :- https://t.me/+hZu9-FaImzAyYmU1 There are so many code are running but i only kotlin and some XML codes INTRACTIVE APP KOTLIN CODE package com.example.intractiveapp import android.os. Bundle import android.widget. Button import android.widget. LinearLayout import androidx.activity.enableEdgeToEdge import androidx.appcompat.app. AppCompatActivity import androidx.core.view. ViewCompat import androidx.core.view. WindowInsetsCompat import com.example.intractiveapp. R class MainActivity : AppCompatActivity() { override fun onCreate ( savedInstanceState : Bundle ?) { super .onCreate( savedInstanceState ) enableEdgeToEdge () setContentView( R . layout ....

Day 5 of Android Development

 Hello everyone , After too many problems finally i created my first app on Android Studio .  Telegram id for apk: - https://t.me/+hZu9-FaImzAyYmU1 This is the basic app in which there is two button one is download and second one is upload the function of botton is to show pop up it is clicked . Here is code  kotlin code main_activity.xml <? xml version ="1.0" encoding ="utf-8" ?> <LinearLayout xmlns: android ="http://schemas.android.com/apk/res/android" xmlns: app ="http://schemas.android.com/apk/res-auto" xmlns: tools ="http://schemas.android.com/tools" android :id ="@+id/main" android :layout_width ="match_parent" android :layout_height ="match_parent" tools :context =".MainActivity" > <Button android :id ="@+id/btndownload" android :layout_width ="120dp" android :layout_height ="wrap_content" ...

Day 4 of Android development

 Hello everyone this day 4 of android development , today i didn't code much , only setup work and reviewing the IDE , watching video from youtube about this and today i build my first demo app from android studio basically it is not first app , but yes i built it and also run on my tablet. and from tomorrow i will code 

Day 3 of Andoid development

Hello Everybody , this is my 3rd day of coding journey but today i didn't code any thing because of Android Studio . it's packages aren't downloading . 

Day 2 of Android Development

Hello everyone, This is day 2 of Android development with Kotlin language , today i just revised previous concept and practice some of the project. Today is 15th july and i covered 100% of Introduction to Kotlin In this pathway i learnt Basic maths operator Default parameters Now i just completed Introduction to Kotlin and at the end of thid pathway google provided a new for kotlin which is present of the HYPERSKILLS named Kotlin to core PROJECT - 1 Comparision of mobile usage  fun main () {     println ( "Have I spent more time using my phone today: ${compareTime(300, 250)}" )     println ( "Have I spent more time using my phone today: ${compareTime(300, 300)}" )     println ( "Have I spent more time using my phone today: ${compareTime(200, 220)}" ) } fun compareTime ( timeSpentToday : Int , timeSpentYesterday : Int ): Boolean {     return timeSpentToday > timeSpentYesterday } PROJECT - 2 Weather Details of the Cities fun main () ...