Creating Simple Calculator App in Android Studio using Kotlin

แชร์
ฝัง
  • เผยแพร่เมื่อ 10 ธ.ค. 2024

ความคิดเห็น • 38

  • @mikesalg123
    @mikesalg123 3 ปีที่แล้ว +8

    Just starting with Kotlin... even though you don't speak here, i was able to accomplish the final result. Great work my man. Keep it up!

  • @a.dharun3959
    @a.dharun3959 3 ปีที่แล้ว +3

    THANK YOU VERY MUCH BRO BECAUSE OF YOU I MADE MY FIRST KOLTIN CALCULATOR!

  • @history_funy
    @history_funy 2 ปีที่แล้ว +2

    I wrote it as is, and it works very well. You made the video very well. thank you👍

  • @NB-tc7ey
    @NB-tc7ey ปีที่แล้ว

    thx man it...i followed the code and it worked perfectly👍

  • @laroquitaperez
    @laroquitaperez ปีที่แล้ว +3

    Does anyone know what was pressed at the minute 12:52?

  • @jaysonteleb6086
    @jaysonteleb6086 7 หลายเดือนก่อน

    is your android studio need to build with maven or gradle bro?

  • @easycookinghealthandbeauty4686
    @easycookinghealthandbeauty4686 3 ปีที่แล้ว +1

    Plz add your voice as well to explain the process

  • @Adam-oh3pc
    @Adam-oh3pc ปีที่แล้ว +2

    it doesnt work anymore bro because the The 'kotlin-android-extensions' Gradle plugin is no longer supported

    • @taimurahmad
      @taimurahmad ปีที่แล้ว +3

      use view binding
      in your gradle use
      (at the bottom of android}android{
      ...
      buildFeatures {
      viewBinding = true
      }
      }
      in main activity use this codee
      lateinit var binding: ActivityMainBinding
      override fun onCreate(savedInstanceState: Bundle?) {
      super.onCreate(savedInstanceState)
      binding = ActivityMainBinding.inflate(layoutInflater)
      setContentView(binding.root)
      with this you can reference like this:
      binding.buttonClear.setOnClickListener{
      binding.input.text=""
      binding.output.text=""
      }

    • @dgd1gamer
      @dgd1gamer ปีที่แล้ว

      ​@@taimurahmadthank you

    • @aarinsheik1583
      @aarinsheik1583 ปีที่แล้ว

      bro ,same problem , did you get the solution ?

    • @Adam-oh3pc
      @Adam-oh3pc 11 หลายเดือนก่อน

      @@aarinsheik1583 i got it bro but i forgot and i didnt touch kotlin anymore for 4 months🤣

  • @sunitagiri4748
    @sunitagiri4748 3 ปีที่แล้ว +1

    What did you did in 3:33 with that color and create new folder

    • @maryamimran933
      @maryamimran933 3 ปีที่แล้ว +3

      Go to res folder , then in values folder, here you see the colors.xml file

    • @maryamimran933
      @maryamimran933 3 ปีที่แล้ว +3

      res

    • @sunitagiri4748
      @sunitagiri4748 3 ปีที่แล้ว +2

      thanks buddy

    • @misscheko9585
      @misscheko9585 2 ปีที่แล้ว

      @@maryamimran933 thank you

    • @Liberta_xx
      @Liberta_xx 2 ปีที่แล้ว

      @@maryamimran933 thx

  • @reveloharrist.1141
    @reveloharrist.1141 3 ปีที่แล้ว +1

    why kotlinx becomes red and means error?

  • @chintalapativenkataramarahul
    @chintalapativenkataramarahul 3 ปีที่แล้ว

    Thank you. Great Tutorial!

  • @darrenmendez7262
    @darrenmendez7262 2 ปีที่แล้ว

    is there anyway you can add modulo in this calculator?

  • @Leeminduc
    @Leeminduc 3 ปีที่แล้ว

    Thanks, this help me so much ❤❤

  • @jeandamaceno5247
    @jeandamaceno5247 3 ปีที่แล้ว

    Amazing !! I just have a problem with the import of dependencies, is there another way I can use it?

    • @Derek-jc4zq
      @Derek-jc4zq ปีที่แล้ว

      Hello, do you find a fix?

    • @Derek-jc4zq
      @Derek-jc4zq ปีที่แล้ว

      i found fix, just press sync on the build file.

  • @vertkyy
    @vertkyy 3 ปีที่แล้ว

    Thank you so much bro

  • @missamiry9709
    @missamiry9709 2 ปีที่แล้ว +2

    val result=Expression(expression).calculate(), i have an error in Expression word would you please give an idea.

    • @mosbahhoucemeddine1147
      @mosbahhoucemeddine1147 2 ปีที่แล้ว

      me too

    • @jyothsna8257
      @jyothsna8257 ปีที่แล้ว

      add dependency: implementation 'org.mariuszgromada.math:MathParser.org-mXparser:4.4.2'

  • @amir6056
    @amir6056 ปีที่แล้ว

    Thank you !

  • @music4kinds239
    @music4kinds239 2 ปีที่แล้ว

    thanks❤

  • @kekekeernest8920
    @kekekeernest8920 3 ปีที่แล้ว

    Please, how can I round a number let say 1.333333334 to 1.34, in kotlin, because anytime I used the round(), it gives me an integer value

  • @user-Rania-n7m
    @user-Rania-n7m ปีที่แล้ว

    You Just copied the code from somewhere, speak up 🗣️, if you know how to explain it. Teachers aren't dumb!

    • @pao2725
      @pao2725 5 หลายเดือนก่อน

      At least it works, teachers copy from something too

  • @HadassahQ.Mwende
    @HadassahQ.Mwende ปีที่แล้ว

    You don't know what you are doing