How can I open my custom tab inside my app without opening Google Chrome in background...
this is my code
String a="http://www.gpamravati.ac.in/gpamravati";
CustomTabsIntent.Builder builder=new CustomTabsIntent.Builder();
CustomTabsIntent custom=builder.build();
custom.intent.setPackage("com.android.chrome");
builder.setToolbarColor(ContextCompat.getColor(this, R.color.colorPrimary));
custom.launchUrl(this, Uri.parse(a));
Finally solved my problem by adding:
android:launchMode="singleTask"
Just add this code to your manifest under activity