There is any way to do a subitem from subitem from expandablelistview? if yes tell me how... her is my try to do this...(do a third subitem..). And more two updates from my code...
private Context context;
String [] things = {"sushi", "tells", "foods", "kids", "ice cream", "songs", "fun", "bar"};
String [][] subthings = {
{"without fish"},
{"teel me baby},
{"eat", "non eat", "i love"},
{"Burguer King", "Mc Donalds", "Willians foods"},
{"whithout chocolate", "chocolate"},
{"Sweet Child o mine"},
{"kids"},
{"cachaça", "milkshake"},
};
String [][][] subsubthings = { //haha subsubsubthings
{},
{},
{},
{"sushi", "chocolate"},
{},
{},
{},
{},
};
add another part of my code..
@Override
public View getGroupView(int groupPosition, boolean isExpanded,
View convertView, ViewGroup parent) {
robot = Typeface.createFromAsset(context.getAssets(), "fonts/Roboto-Thin.ttf");
TextView text = new TextView(context);
texto.setText(title[groupPosition]);
texto.setTypeface(robot);
texto.setTextSize(20);
texto.setPadding(70, 30, 0, 30);
texto.setTextColor(Color.BLUE);
return texto;
}
and more..
@Override
public View getChildView(int groupPosition, int childPosition,
boolean isLastChild, View convertView, ViewGroup parent) {
robot = Typeface.createFromAsset(context.getAssets(), "fonts/Roboto-Light.ttf");
TextView text = new TextView(context);
text.setText(subthings[groupPosition][childPosition]);
text.setTypeface(robot);
text.setTextSize(15);
text.setPadding(90, 20, 0, 20);
return text;
}