Posts

Showing posts from July, 2024

Day 18 of Android development

 Hello everyone , this past a few days i was little bit busy in study in future i will also busy i will steal time from my time table , i learnt about ui , ux . TELEGRAM  || GITHUB PROJECT :- 1 (Sign Up) KOTLIN  package com.example.loginapp import android.content.Intent import android.os.Bundle import android.os.Handler import androidx.activity.enableEdgeToEdge import androidx.appcompat.app.AppCompatActivity import androidx.core.view.ViewCompat import androidx.core.view.WindowInsetsCompat class MainActivity : AppCompatActivity() { override fun onCreate ( savedInstanceState : Bundle?) { super .onCreate(savedInstanceState) enableEdgeToEdge() setContentView(R.layout.activity_main) supportActionBar?.hide() Handler().postDelayed({ val intent = Intent( this , SignUp:: class .java) startActivity(intent) finish() } , 700 ) ViewCompat.setOnApplyWindowInsetsListener(findViewById(R.id.mai...

Day 17 of Android Development

 Hello everyone , i just reduce the timming of coding because of studies because it is important and coding is my interest , it doesn't mean that i quit coding, i will code but less today also i code i will upload tommorrow or may be day after tommorrow

Day 16 of Android Development

 Hey, everyone i'm little bit busy in my studies so i apologize your because today didn't code at all olemegyy 

Day 15 of Android Development

 Hello everyone this is day 15 , i'm little bit busy in my studies today i studied all night from 1:30 am till now i also code but too that much i am going to sleep because today is my test from 2pm and now it 9:45 am , okay good night every , then byy see to at night with codes 

Day 14 of Android development

 Hello everyone this day 14 of android development today i figure out the error and try to fix it i prefer google , some tutorial and chat gpt also but none of them were worked so i think moving forward is better option than stucking this thing after a few days may i figure out this problem properly and fix out , So in theroy part i gain knowledge of logcat and debug too , build project on splash screen i will provide code of both project , in this project 1 code have some error. TELEGRAM  || GITHUB Project 1 KOTLIN FILE package com.example.sawanscafe import android.content.Intent import android.os.Bundle import androidx.activity.enableEdgeToEdge import androidx.appcompat.app.AppCompatActivity import androidx.core.view.ViewCompat import androidx.core.view.WindowInsetsCompat import kotlinx.android.synthetic.main.activity_main.btnOrder import kotlinx.android.synthetic.main.activity_main.editTextText import kotlinx.android.synthetic.main.activity_main.editTextText2 import kotlinx...

Day 12 of Android development

 hello everyone today is day 12 and i build one on food order booking but i'm facing one issue after resolving this i will upload it  thank you and good night it's 3:25 am and my classes run at morning.  bye bye!

Day 11 of Android Development

 Hello everyone today is day 11 of my code journey today  i am not felling well . i go through many documents on google developer, but i didn't code from tommorrow onwards i regular to my studies as well my coding journery package com.example.happybirthday import android.os. Bundle import androidx.activity. ComponentActivity import androidx.activity.compose.setContent import androidx.compose.foundation.layout. Arrangement import androidx.compose.foundation.layout.Column import androidx.compose.foundation.layout.fillMaxSize import androidx.compose.foundation.layout.padding import androidx.compose.material3.MaterialTheme import androidx.compose.material3.Surface import androidx.compose.material3.Text import androidx.compose.runtime. Composable import androidx.compose.ui. Alignment import androidx.compose.ui. Modifier import androidx.compose.ui.text.style. TextAlign import androidx.compose.ui.tooling.preview. Preview import androidx.compose.ui.unit.dp import androidx.compose.ui.u...

Day 10 of Android Development

 Hello everyone , today is my day 10 of my code but today i didn't code because today i'm little bit busy i read some documentation from google course.

Day 9 of Android Development

 Hello everyone , this is day 9 of my journey i just completed my projects, but i am not able to put feature to call on default number , i usally code at night. 😊 TELEGRAM  | GITHUB PROJECT KOTLIN CODE package com.example.knowledgehub import android.content. Intent import android.os. Bundle import android.widget. Button import androidx.activity.enableEdgeToEdge import androidx.appcompat.app. AppCompatActivity import androidx.core.view. ViewCompat import androidx.core.view. WindowInsetsCompat class MainActivity : AppCompatActivity() { override fun onCreate ( savedInstanceState : Bundle ?) { super .onCreate( savedInstanceState ) enableEdgeToEdge () setContentView( R . layout . activity_main ) val letsGo = findViewById< Button >( R . id . button ) letsGo .setOnClickListener { intent = Intent( applicationContext , AllCourses :: class . java ) startActivity( intent ) } val letsGoo = findViewB...