Soru & Cevap

Servis içinde fragment başlatma ...

08.05.2017 - 06:52

Merhabalar,

oluşturduğum servis içinde fragment başlatmam gerekiyor. fragment olmayan bir activity başlatabiliyorum fakat istediğim fragment sayfasını çağıramıyorum.


Intent i=new Intent(servis_class.this,Fragment.class);

i.setFlags(Intent.FLAG_ACTIVITY_NEW_TASK);

context.startActivity(i);
 

2 Görüntülenme

2 Cevap

Sitedeki sorulara cevap verebilmek için giriş yapın ya da üye olun.

Profile picture for user eyyub.cossar
eyyub.cossar
09.05.2017 - 06:43


     Intent i = new Intent(context, AcilacakFragment.class);
             i.addFlags(Intent.FLAG_ACTIVITY_NEW_TASK);
             startActivity(i);
 

Profile picture for user turkordu
turkordu
08.05.2017 - 10:16

Servis_class.this yerine getFragmentManager girmeyi dene