button_bottom_sheet의 android:background대신 android:backgroudTint를 사용해 보세요.
<Button
android:id= "@+id/button_bottom_sheet"
android:layout_width= "match_parent"
android:layout_height= "wrap_content"
android:backgroundTint= "#1c9d9e" <!-- 요기 -->
android:textColor= "@android:color/white"
android:text= "확인"
android:textStyle= "bold" />
|