See String uuids My CODE :
if (uuidExtra != null) {
for (Parcelable p : uuidExtra) {
String uuids = ""+p;
}
}
I'm not programmer. I just learning about it.
See String uuids My CODE :
if (uuidExtra != null) {
for (Parcelable p : uuidExtra) {
String uuids = ""+p;
}
}
I'm not programmer. I just learning about it.
Can you underline you question here? Do you want to know what is the result of your
uuidsvariable?If so, the result will be the latest data of your
uuidExtra. Because in line 3, you make new variable ofuuids.To make it more clear, let me give some example :
You have a List of string. Let's say
a,b,c,d,e. Then you access every index of that List usingfor. Inside that for, you make a new variable calleduuids. The problem is, you make new variable everytime doing a loop. So the result isuuids = e.If you want to have result like this
uuids = a,b,c,d,e. You need to modify your code like this.