Kısaca id ile sorgulama yapacak yani php kısmı hazır, id ile üyenin bilgilerini getirecek,alta normal sayfa sayfasında Bundle arguments=getIntent().getExtras(); kısmında doğru şekilde yazıp id bağlamak istiyorum.
İD İLE FRAGMENT SORGUSU:
id = getArguments().getString("id");
Normal sayfa Java:
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_kisi_tweetleri);
this.adsoyad= (TextView) findViewById(R.id.kisiAdsoyad);
this.kullaniciadi= (TextView) findViewById(R.id.kisiKullaniciadi);
this.mail= (TextView) findViewById(R.id.kisiMail);
this.profilFoto= (CircleImageView) findViewById(R.id.profile_image_kisi);
this.listView= (ListView) findViewById(R.id.kisitweetlerilist);
this.requestQueue = Volley.newRequestQueue(getApplicationContext());
modelList=new ArrayList<>();
Bundle arguments=getIntent().getExtras();
String path=arguments.getString("path","");
String adsoyad=arguments.getString("adsoyad","");
String kullaniciadi=arguments.getString("kullaniciadi","");
String mail=arguments.getString("mail","");
this.id=arguments.getString("id","-1");
this.adsoyad.setText(adsoyad);
this.kullaniciadi.setText(kullaniciadi);
this.mail.setText(mail);
this.adsoyad.setText(adsoyad);
if (!path.equals(""))
Picasso.get().load(path).into(profilFoto);
istekGonder();
}