Tagged Questions
0
votes
0answers
15 views
Get Intent extras iteratively
In my android app I pass data from one activity to another via bundle string arrays. The data flows in the following fashion:
MainActivity -> sends bundle string array in an Intent to Activity1.
...
0
votes
2answers
719 views
Android ListView Duplicates entries
If i type "Hello" in my edittext in activity 1 it will add "Hello" to the listview in activity 2 as the first entry ( which has no error ). Also, if I type "Apple" as my second entry I will change the ...
1
vote
1answer
659 views
onClick Listener on DrawerLayout Does Not Launch Toast
I'm attempting to implement a toast depending on the item clicked in a DrawerLayout - however I cannot seem to get the toasts to appear no matter what I do. I'm not sure exactly what I did wrong: any ...
0
votes
2answers
702 views
Key string-array expected String[] but value was a java.util.ArrayList
Im new to android.
how to get the array values from one class to another class using Intent??
I tried like this...
1st activity...
Intent videointent = new ...
0
votes
4answers
2k views
Setting TextView with string from string array chosen in a ListView in Android
Alright, a quick summary. The app opens with a listView (populated by a string array), when you tap one of the items in the list it takes you to another listView (populated by a string array) with ...