skip to Main Content

Android Studio – Kotlin issue while sum 2 variables

val btnAdd = findViewById<Button>(R.id.btnAdd) val btnSub = findViewById<Button>(R.id.btnSub) btnAdd.setOnClickListener { val tx1 = findViewById<TextInputEditText>(R.id.tx1).toString().toInt() val tx2 = findViewById<TextInputEditText>(R.id.tx2).toString().toInt() var result = findViewById<TextView>(R.id.result) result.text = (tx1 + tx2).toString() } I want to sum tx1 and tx2 but i get this message…

VIEW QUESTION

Android Studio – I want to integrate Vimeo Api in to my android application to show my users the private videos in my Vimeo Account

I want to integrate Vimeo Api in to my android application and the problem is after i add the dependency like implementation "com.github.vimeo.vimeo-networking-java:vimeo-networking:3.12.0" implementation "com.github.vimeo.vimeo-networking-java:models:3.12.0" But after syncing with my project when i try to run the project or build…

VIEW QUESTION
Back To Top
Search