How can I create an app that generates a random number in Android using Eclipse and then show the result in a TextView field? The random number has to be in a r
TextView
You can use If Random. For example, this generates a random number between 75 to 100.
Random
final int random = new Random().nextInt(26) + 75;