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);
どんなアドバイスでも大歓迎です:)