val builder = CustomTabsIntent.Builder()
getBitmapFromDrawable(requireContext(), R.drawable.back_icon)?.let { it1 ->
builder.setCloseButtonIcon(
it1
)
};
val customTabsIntent = builder.build()
customTabsIntent.launchUrl(
requireContext(),
Uri.parse(it)
)
Android 에서 Chrome Custom Tabs를 사용하여 웹페이지를 열고, 커스텀 아이콘 및 설정 추가하는 기능!