Android Studio – Android : Convert CharSequence to Int in Java
I'm confused on how can I convert CharSequence to int , I just want to set visibility of textfield when the inputted amount of edt_nma_amount is >=100 What I tried to convert it int number = Integer.parseInt(s.toString()); but it returns…