Skip to content

Tag: java

Java.lang.UnsupportedOperationException Android Studio

My app keeps on crashing on launch because of several errors. java.lang.InvocationTargetException java.lang.UnsupportedOperationException Here is the logcat error for the second exception. From the last line it says my error is from my MAFTextViewBold.kt file } What could be causing the error? It was compilin…

Generating an array of non-repeating integers

I’m trying to generate an array of 5 non-repeating integers in Java, but there are still repeats when I run it. Here’s my code so far: Any help is very much appreciated! Answer So, your for-loop is checking for repeated characters, BUT each time you generate a new value (in the while-loop) you&#82…