Fragment içerisinde findViewById kullanımı
20.09.2016 - 11:14
Fragment içerisinde findViewById kullanımı
Aşağıdaki kodlarda findViewById kırmızı çıkıyor hata veriyor yardımcı olursanız sevinirim. teşekkürler.
import android.app.Fragment;
import android.content.Intent;
import android.os.Bundle;
import android.support.annotation.Nullable;
import android.support.v7.app.AppCompatActivity;
import android.view.LayoutInflater;
import android.view.View;
import android.view.ViewGroup;
import android.widget.Button;
public class CozSorFragment extends Fragment {
View myView;
Button alinan_button;
@Nullable
@Override
public View onCreateView(LayoutInflater inflater, ViewGroup container, Bundle savedInstanceState) {
myView = inflater.inflate(R.layout.cozsor_layaut, container, false);
alinan_button = (Button) findViewById(R.id.button1);
alinan_button.setOnClickListener(new View.OnClickListener() {
@Override
public void onClick(View view) {
Intent intent = new Intent(CozCikmisSorFragment.this, admin1.class);
CozCikmisSorFragment.this.startActivity(intent);
CozCikmisSorFragment.this.finish();
}
});
return myView;
}
}
1,381
Görüntülenme
0 Beğeni