Fraagment iöerisinde Button Click Metodunsa Sorun Var
Kod'un örneği aşağıdaki şekildedir. button click metodun'da sorun var sanırım ama nasıl bir sorun var çözemedim başka projelerde çalışan bir kodlamaydı.
[code]import android.content.Intent;
import android.os.Bundle;
import android.support.v4.app.Fragment;
import android.view.LayoutInflater;
import android.view.View;
import android.view.ViewGroup;
import android.widget.ImageButton;
public class Deneme extends Fragment {
private ImageButton button;
@Override
public View onCreateView(LayoutInflater inflater, ViewGroup container,
Bundle savedInstanceState) {
View xxxx = inflater.inflate(R.layout.dersimcelik, container, false);
button = (ImageButton) xxxx.findViewById(R.id.imageButton1);
button.setOnClickListener(new View.OnClickListener() {
public void onClick(View v) {
// TODO Auto-generated method stub
Intent myIntent = new Intent("com.sdersimcelik.denemepaket.DERS");
startActivity(myIntent);
}
});
return sezon1;
}}[/code]