EDITTEXTS - Android Fundamentals

Поделиться
HTML-код
  • Опубликовано: 23 ноя 2024

Комментарии • 34

  • @chandarith4555
    @chandarith4555 2 года назад +7

    I do appreciate for your videos series. The way you teach is really effective. I do recommend for those who seeking for android development course. THANKS!

  • @Coding_Gurus
    @Coding_Gurus Год назад +2

    Keep up this work, Great respect for giving all the content and resources for free I mean you can't expect this much level of free content in today's world. Truly speaking, please never drop this kind of work.

    • @adityakumdale6300
      @adityakumdale6300 Год назад

      hey man i am getting problem due to this new viewbinding can you please share code

    • @cocotrack9413
      @cocotrack9413 Год назад

      @@adityakumdale6300 I already encountered this issue and found the solution, do you still need it ?

  • @HiHi-mq9yj
    @HiHi-mq9yj 10 месяцев назад +1

    Sir I want learn the Android studio but the new Android studio have different features now please make a video about the new version feature also

  • @daiyrkanybekov8575
    @daiyrkanybekov8575 3 года назад +3

    Amazing lesson Friend!

  • @TechWithBehruz
    @TechWithBehruz 7 месяцев назад

    Wow the best channel for Kotlin

  • @salihdahi
    @salihdahi 4 года назад +3

    That is very helpful, thanks

  • @roshrosh9991
    @roshrosh9991 Месяц назад

    Really helpful

  • @mayurkhatri8442
    @mayurkhatri8442 3 года назад +1

    hey how can i access the textview editview when i usen "kotlin-android-extensions" it shows me deprecated command so now which command i use?? pleace help me thankss!!!

  • @Aarmaxian
    @Aarmaxian 3 года назад

    Superb superb superb

  • @anshbajpai9263
    @anshbajpai9263 4 года назад +1

    Is Native app development worth learning or i should learn react or flutter , according to you ??

    • @RohanSingh-fh3tt
      @RohanSingh-fh3tt 4 года назад +4

      It all depends upon you, What you want to do ultimately,If you want to go for both iOS and Android at a time then I recommend going flutter or react, But if you want to know more about core things(and performance too) related to Android or iOS go for thier native versions

    • @PhilippLackner
      @PhilippLackner  4 года назад +8

      @@RohanSingh-fh3tt I agree, most big companies are using native for development, as long as that is the case I would stick to it. But if you work in a small startup for example with limited money then flutter or react can be valid options

  • @graphicnexus8662
    @graphicnexus8662 Год назад

    I loved this! Thank you, Philipp.

  • @marypaul9627
    @marypaul9627 2 года назад

    thank you.God bless you

  • @ramadhansaputra3812
    @ramadhansaputra3812 Год назад

    attribute keyword:
    input type, hint, ems

  • @divyanshusharma5614
    @divyanshusharma5614 2 года назад

    Following this series #8th comment

  • @Briogus
    @Briogus 2 года назад

    Good Work!

  • @denisk3852
    @denisk3852 3 года назад +1

    Simple and powerful

  • @GeorgeTrialonis
    @GeorgeTrialonis 2 года назад

    Bravo!!!

  • @ArjunKumar-xt9bq
    @ArjunKumar-xt9bq 3 года назад +2

    Hi, ......text.toString().toInt() is showing an error in the above code. How can I fix it?

  • @guy1407
    @guy1407 4 года назад +2

    wonderfullllllll :)

  • @DanielTobi00
    @DanielTobi00 Год назад +2

    if it not runing you should do this.
    navigate to build.gradle(Module.app)
    inside the android parenthesis put this
    buildFeatures{
    viewBinding true
    }
    navigate back to the MainActivity and follow this pattern.
    private lateinit var binding: ActivityMainBinding
    override fun onCreate(savedInstanceState: Bundle?) {
    super.onCreate(savedInstanceState)
    binding = ActivityMainBinding.inflate(layoutInflater)
    setContentView(binding.root)
    binding.btnAdd.setOnClickListener{
    val firstNumber = binding.etFirstNumber.text.toString().toInt()
    val secondNumber = binding.etSecondNumber.text.toString().toInt()
    val result = firstNumber + secondNumber
    binding.tvResult.text = result.toString()
    }
    }

    • @jimlthor
      @jimlthor Год назад +1

      Sucks you have to do this for every app. Should be a default thing or something you could click on instead of having to update it every damned time

    • @DanielTobi00
      @DanielTobi00 Год назад +1

      @@jimlthor i guess the advantage of it not being in the default settings, supercedes it being there.

    • @jimlthor
      @jimlthor Год назад

      @Daniel Tobi maybe so. I'm new to this so I dunno wtf I'm talking about =)

    • @DanielTobi00
      @DanielTobi00 Год назад +1

      @@jimlthor same here, we are both learning.

    • @jimlthor
      @jimlthor Год назад +1

      @@DanielTobi00 haha, good luck. I'm flying thru this stuff.. lets see if I can remember any of it in a week