start intent without onCreate {}
- by melvintcs
i create a class extend Gallery and there is no onCreate, and i having a problem to run my intent. this is my sample code:
this.setOnItemClickListener(new AdapterView.OnItemClickListener() {
@Override
public void onItemClick(AdapterView<?> parent, View v, int position, long id) {
Intent intent = new Intent(v.getContext(), ClassName.class);
startActivity(intent);
}}
i also tried below code to run, failed me also:
Intent intent = new Intent(ThisClassName.this, ClassName.class);
startActivity(intent);
Please advice me what should i do :)