Reputation: 852
I have this code to create Expandable ListView :
public class Menu extends ExpandableListActivity {
int l;
ExpandableListAdapter mAdapter;
ImageButton add = (ImageButton) findViewById(R.id.imageAdd);
public void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.week_menu);
final String NAME = "NAME";
final String EVENT = "EVENT";
l = getIntent().getExtras().getInt("nilai");
List<Map<String, String>> createGroupList = new ArrayList<Map<String, String>>();
List<List<Map<String, String>>> createChildList = new ArrayList<List<Map<String, String>>>();
for (int i = 0, k = 0; i < 5; i++) {
Map<String, String> curGroupMap = new HashMap<String, String>();
createGroupList.add(curGroupMap);
if (i == 0)
curGroupMap.put(NAME, "Breakfast 07.00");
else if (i == 1)
curGroupMap.put(NAME, "Snack 10.00");
else if (i == 2)
curGroupMap.put(NAME, "Lunch 12.00");
else if (i == 3)
curGroupMap.put(NAME, "Snack 16.00");
else if (i == 4)
curGroupMap.put(NAME, "Dinner 19.00");
List<Map<String, String>> children = new ArrayList<Map<String, String>>();
if (i == 1 || i == 3)
{
for (int j = 0; j < 6; j++, k++) {
if(AdapterDB.optimal_chromosomes.get(l).gens[k].id != 164) {
Map<String, String> curChildMap = new HashMap<String, String>();
children.add(curChildMap);
curChildMap.put(NAME, AdapterDB.optimal_chromosomes.get(l).gens[k].name);
curChildMap.put(EVENT, "" + add);
}
}
}
else
{
for (int j = 0; j < 12; j++, k++) {
if(AdapterDB.optimal_chromosomes.get(l).gens[k].id != 164) {
Map<String, String> curChildMap = new HashMap<String, String>();
children.add(curChildMap);
curChildMap.put(NAME, AdapterDB.optimal_chromosomes.get(l).gens[k].name);
curChildMap.put(EVENT, "" + add);
}
}
}
/*
add.setOnClickListener(new OnClickListener() {
public void onClick(View v) {
}
});*/
createChildList.add(children);
}
mAdapter = new SimpleExpandableListAdapter(this, createGroupList, android.R.layout.simple_expandable_list_item_1, new String [] {NAME}, new int[]{android.R.id.text1}, createChildList, android.R.layout.simple_expandable_list_item_2, new String[] {NAME, EVENT}, new int [] {android.R.id.text2});
setListAdapter(mAdapter);
}
It is error, java.lang.NullPointerException at
ImageButton add = (ImageButton) findViewById(R.id.imageAdd);
... any idea? I want to add imagebutton on the child in Android. How to solve it and make it clickable? Thx
Upvotes: 1
Views: 839
Reputation: 31779
You need to initialize the variable in the onCreate button after setContentView executes.
ImageButton add;
And in the onCreate method
setContentView(R.layout.week_menu);
add = (ImageButton) findViewById(R.id.imageAdd);
findViewById is looking for the view inside the layout specified in setContentView. But that has not happened yet. So error will happen.
Upvotes: 1