Я наконец сделал это с помощью CustomTabIntent, если у кого-то возникла эта проблема, вам нужно реализовать следующую зависимость от AndroidManifest
implementation 'com.android.support:customtabs:28.0.0'
И использовать CustomTabIntent:
CustomTabsIntent.Builder builder = new CustomTabsIntent.Builder();
builder.setToolbarColor(ContextCompat.getColor(this, R.color.primary));
CustomTabsIntent customTabsIntent = builder.build();
customTabsIntent.launchUrl(this,Uri.parse("https://facebook.com"));
Результат именно то, что я ожидал: D