Kotlin Programming Full Tutorial with Android Development Project | Android Studio | @SCALER

Kotlin Programming Full Tutorial with Android Development Project | Android Studio | @SCALER

SCALER

1 год назад

110,834 Просмотров

Ссылки и html тэги не поддерживаются


Комментарии:

@tajpuriya_bhim
@tajpuriya_bhim - 30.07.2024 08:00

instead intellij ide , can we use andriod studio or not ??????

Ответить
@deekshasavita8932
@deekshasavita8932 - 26.07.2024 11:45

ma'am I'm getting java lang.null pointer exception whenever i'm starting new project by choosing empty activity anybody can help'

Ответить
@ReduanAhmadRasel
@ReduanAhmadRasel - 12.07.2024 09:28

I started watching this video...in this video very easy to understand...

Ответить
@WaRRioR4u
@WaRRioR4u - 07.07.2024 16:49

why to use init block in primary constructor block ma'am?

Ответить
@RAHULSINGH-zy9pe
@RAHULSINGH-zy9pe - 10.06.2024 19:33

Done hello world.

Ответить
@chuks-yk9tg
@chuks-yk9tg - 02.06.2024 13:21

I don't know any other programming language. I am completely new

Ответить
@SpiritualAI-kg3se
@SpiritualAI-kg3se - 29.05.2024 12:11

mam in music app development 1st part is not runs what can i do

Ответить
@dharmaamler1923
@dharmaamler1923 - 27.05.2024 07:50

Nice, easy to understand.

Ответить
@dharmaamler1923
@dharmaamler1923 - 27.05.2024 05:37

Yes, new this madam

Ответить
@cmon2665
@cmon2665 - 17.05.2024 18:34

Excellent video. Thank you.

Ответить
@davidyttech
@davidyttech - 16.05.2024 10:44

This course is a gold of dusk love from nepal kathmandu love you mam keep going and keep success : Mahadev bless you

Ответить
@chuks-yk9tg
@chuks-yk9tg - 11.05.2024 02:00

hi

Ответить
@baer126
@baer126 - 30.04.2024 12:23

I wanted to learn kotlin, do I need to learn Java?

Ответить
@velmaawuor-hh4yh
@velmaawuor-hh4yh - 21.04.2024 18:20

yes im seeing it for the first time

Ответить
@sathyakumar5350
@sathyakumar5350 - 04.04.2024 05:46

hey...please upload android app development with java full course

Ответить
@srtscmng
@srtscmng - 28.03.2024 07:28

Mam can you provide the ppt of this... So that we can easily read and understand the basic concepts...

Ответить
@user-sj6qi2yu3o
@user-sj6qi2yu3o - 27.03.2024 05:41

It is my two days of attending your class, I am watching your video 1 hour per day. wow I like your free school maam thank you so much

Ответить
@karthikeyankarthikeyan9804
@karthikeyankarthikeyan9804 - 23.03.2024 23:08

why not this way ? to change the image

class MainActivity : ComponentActivity() {
override fun onCreate(savedInstanceState: Bundle?) {
super.onCreate(savedInstanceState)
setContentView(R.layout.activity_main)

val imageArray = arrayOf( R.drawable.imgone,
R.drawable.imgtwo,
R.drawable.imgthree,
R.drawable.imgfour)

val placenames = arrayOf("Taj Mahal", "India Gate", "Gate way of india","Lotus Temple")

var currentindex = 0
var currentindexofplace = 0
val textview = findViewById<TextView>(R.id.nameOfThePlace)
textview.text = placenames[currentindexofplace]
val imageButtonBackward = findViewById<ImageButton>(R.id.imageButtonBackward)
imageButtonBackward.setOnClickListener{
if (currentindex < imageArray.size - 1){
currentindex++
currentindexofplace++
val imagesettter = findViewById<ImageView>(R.id.imgcontainer)
imagesettter.setImageResource(imageArray[currentindex])
textview.text = placenames[currentindexofplace]
}
}
val imageButtonPrevious = findViewById<ImageButton>(R.id.imageButtonPrevious)
imageButtonPrevious.setOnClickListener{
if ( currentindex > 0){
currentindex--
currentindexofplace--
val imagesettter = findViewById<ImageView>(R.id.imgcontainer)
imagesettter.setImageResource(imageArray[currentindex])
textview.text = placenames[currentindexofplace]
}
}
}
}

Ответить
@_karanjohar_6227
@_karanjohar_6227 - 15.03.2024 09:43

For the image in same size format use this line of code in each ImageView.....

android:layout_width="match_parent"
android:layout_height="match_parent"
android:scaleType="centerCrop"

Ответить
@priyankaadhav672
@priyankaadhav672 - 12.03.2024 08:54

Hello mam my android studio facing the AVD problem HAXM file download but AVD not start ....so any solution how to solve this problem

Ответить
@AshutoshSinghakss
@AshutoshSinghakss - 11.03.2024 08:17

these are very high level reading, let me point some improvements
1. during getter setter , please explain that the get() & set() function right below the value acts as getter setter for that value, or else its confugsing
2. lateinit , was just verbally explain in literal terms, please give real world examples like how helpful it is in dependency injection etc

Ответить
@vaibhavshukla5685
@vaibhavshukla5685 - 06.03.2024 13:24

ComponentActivity() and AppCompatActivity() , by default in android studio it is showing ComponentActivity() function but as both are nearly same , can i start with this function?

Ответить
@aravinkug313
@aravinkug313 - 05.03.2024 01:17

I can program VHDL :)

Ответить
@zeeshanali7052
@zeeshanali7052 - 03.03.2024 14:11

Below the header parameter, the required parameter is not showing. What should I do ? I just simply wrote the q that you've written in your main Activity as well

Ответить
@user-qh4xu4hj8j
@user-qh4xu4hj8j - 02.03.2024 18:27

THANKYOU 😀❤

Ответить
@sechura3698
@sechura3698 - 01.03.2024 03:24

2x speed 👌

Ответить
@vamsipinninti7154
@vamsipinninti7154 - 29.02.2024 15:15

yes

Ответить
@zeeshanali7052
@zeeshanali7052 - 27.02.2024 14:18

I am working on a plant identification application and I want the users to upload the image of any plant from around the world and in return they will get the information about that plant like, plant name, common names , its uses and characteristics etc. Now anyone please, tell me that which API should I integrate in my FYP ? so that users can get the accurate information. Please tell me as I have a very short time.

Ответить
@user-tl7qv6td1l
@user-tl7qv6td1l - 26.02.2024 21:18

Done done mam thank you

Ответить
@ahadjutt5215
@ahadjutt5215 - 24.02.2024 04:32

Nice ❤

Ответить
@saimanojify
@saimanojify - 15.02.2024 16:10

var txtNameofPhoto=findViewById<TextView>(R.id.txtNameofthePlace)
val result = when (currentImage){
0->"Taj Mahal"
1->"Red Fort"
2->"Gateway of India"
3->"Golden Temple"
4->"Lord Ganesha Temple"
else->"Invalid Content"
}
txtNameofPhoto.text=result

In Places app development , The example places i have took in my app.

Ответить
@singaravelunagappan832
@singaravelunagappan832 - 11.02.2024 23:56

Thanks

Ответить
@dddtravel
@dddtravel - 10.02.2024 13:42

great thank you

Ответить
@CreativeSamCS
@CreativeSamCS - 31.01.2024 18:18

kotlin is free or paid?

Ответить
@rahimovsTree
@rahimovsTree - 31.01.2024 14:47

Thanks for that hard work and a extremely good quality

Ответить
@mr.cricket2448
@mr.cricket2448 - 29.01.2024 11:00

Theivame 🙏

~Nandrigal pala✨💖

Ответить
@karthikks7898
@karthikks7898 - 26.01.2024 14:55

clear!!

Ответить
@AmanGautam-qj6xy
@AmanGautam-qj6xy - 20.01.2024 12:01

1. Variables and Data Types:
kotlin
Copy code
// Variables
var age: Int = 25
val name: String = "John"

// Data Types
val height: Double = 5.9
val isStudent: Boolean = true
2. Object-Oriented Programming (Classes, Objects, Constructors):
kotlin
Copy code
// Class definition
class Person(var name: String, var age: Int) {
// Constructor

// Member function
fun speak() {
println("Hello, my name is $name and I am $age years old.")
}
}

// Creating an object
val person1 = Person("Alice", 30)

// Accessing properties and calling methods
println(person1.name) // Output: Alice
person1.speak()
3. Control Flow - Decision Making (if-else):
kotlin
Copy code
val number = 15

if (number > 10) {
println("Number is greater than 10.")
} else {
println("Number is not greater than 10.")
}
4. Control Flow - Loops (for, while):
kotlin
Copy code
// For loop
for (i in 1..5) {
println("Count: $i")
}

// While loop
var x = 0
while (x < 5) {
println("Value of x: $x")
x++
}
5. Functions:
kotlin
Copy code
// Function definition
fun greet(name: String): String {
return "Hello, $name!"
}

// Function with default parameter
fun greetWithDefault(name: String = "Guest"): String {
return "Hello, $name!"
}

// Calling functions
val greeting = greet("Alice")
println(greeting) // Output: Hello, Alice!

val defaultGreeting = greetWithDefault()
println(defaultGreeting) // Output: Hello, Guest!
6. Arrays:
kotlin
Copy code
// Array declaration and initialization
val numbers: IntArray = intArrayOf(1, 2, 3, 4, 5)

// Accessing array elements
println("First element: ${numbers[0]}")
println("Array size: ${numbers.size}")

// Iterating through an array
for (number in numbers) {
println("Number: $number")
}

Ответить
@tpttime4897
@tpttime4897 - 18.01.2024 08:15

Thanks, now I can put Kotlin in my resume.

Ответить
@saifulhuqs
@saifulhuqs - 12.01.2024 21:05

XML is old pattern use jetpack compose with features

Ответить
@DHHClip
@DHHClip - 08.01.2024 15:57

Mam humare java ka option hi nhi h only for kotlin language hi aa rhi h and hume java use krni h kya koi solution h😢

Ответить
@imyasharya
@imyasharya - 06.01.2024 19:49

I think the latest version uses the JetPack Compose to build the UI. I cannot see the XML file the design and no drag and drop menus.

Ответить
@jcruz6888
@jcruz6888 - 05.01.2024 03:13

Would be neat if you could mention that you don't start using Android Studio until halfway through the video

Ответить
@surrealsoupuniverse
@surrealsoupuniverse - 29.12.2023 06:54

hi maam i reached the hello world part but in the emulator, the header is not showing

Ответить
@nikhild79143
@nikhild79143 - 21.12.2023 12:47

seeing android studio for the first time

Ответить
@Quester2023-xp7rb
@Quester2023-xp7rb - 15.12.2023 21:38

plz continue uploading these gems videos you and your teaching style is awesome

Ответить