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 – java.lang.NullPointerException: findViewById(R.id.addtoUserFriendList) must not be null

Hello i am getting such an error i couldn't find the solution for the error ; java.lang.RuntimeException: Unable to start activity ComponentInfo{com.example.chatapp/com.example.chatapp.MainActivity}: java.lang.NullPointerException: findViewById(R.id.addtoUserFriendList) must not be null My Code is: private lateinit var userRecyclerView: RecyclerView private lateinit var userList:…

VIEW QUESTION
Back To Top
Search