我创建了一个扩展 Gallery 的类。超类中没有 onCreate() 方法,我无法运行我的意图。这是我的示例代码:
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);
}}
以下尝试也失败了:
Intent intent = new Intent(ThisClassName.this, ClassName.class);
startActivity(intent);
任何建议将不胜感激 :)