Skip to content
Advertisement

How to print all key and values from HashMap in Android?

I am trying to use HashMap in Android sample project. Now, am doing sample project for learn android. I just store keys and values in HashMap, i want to show the keys and their values in EditView. I followed below code in my sample project. But, first key and value only printing in EditView.

JavaScript

In EditView iOS = 100 is only printing. I want to print all keys and their value in EditText. What am I doing wrong?

Advertisement

Answer

First, there are errors in your code, ie. you are missing a semicolon and a closing parenthesis in the for loop.

Then, if you are trying to append values to the view, you should use textview.appendText(), instead of .setText().

There’s a similar question here: how to change text in Android TextView

User contributions licensed under: CC BY-SA
3 People found this is helpful
Advertisement