El problema es un Resources $ NotFoundException en el tv2.settext(), no sé por qué tengo un TreeMap, dentro del título de la pizza y el recuento. Por favor ayuda!
Calling:
for (Pizza pizza : list) {
if(map.containsKey(pizza.title))
{
int i = map.get(pizza.title);
map.remove(pizza.title);
map.put(pizza.title, i++);
}
else
{
map.put(pizza.title, 1);
}
}
pizza:
public class Pizza implements Comparable<String> {
public String title;
public int rate;
public String date;
public Bitmap picture;
public int id;
@Override
public int compareTo(String another) {
// TODO Auto-generated method stub
return this.title.compareTo(another);
}
}
Código de error:
for (Entry<String, Integer> entry : map.entrySet()) {
tv.setText(entry.getKey());
tv2.setText((Integer)entry.getValue()); //Error occures here
tv.setGravity(Gravity.LEFT);
tv2.setGravity(Gravity.RIGHT);
TableRow tr1 = new TableRow(this);
tr1.addView(tv);
tr1.addView(tv2);
tl.addView(tr1, new TableLayout.LayoutParams(
LayoutParams.FILL_PARENT,
LayoutParams.WRAP_CONTENT));
}
}
error:
10-04 09:04:40.475: ERROR/AndroidRuntime(954): Caused by: android.content.res.Resources$NotFoundException: String resource ID #0x1
10-04 09: 22: 40.585: ERROR/AndroidRuntime (1009): Causado por: java.lang.IllegalStateException: el elemento secundario especificado ya tiene un elemento principal. Primero debe llamar a removeView() en el padre del niño. en 'tr1.addView (tv)' –
edité mi respuesta. – Ramakrishna