Skip to content

Commit

Permalink
Issues boostcampwm-2022#287 feat: setting item button 에 ripple effect 추가
Browse files Browse the repository at this point in the history
  • Loading branch information
audxo112 committed Mar 1, 2023
1 parent 7123d4b commit f945404
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 2 deletions.
5 changes: 4 additions & 1 deletion features/ui-setting/src/main/res/layout/item_button.xml
Original file line number Diff line number Diff line change
Expand Up @@ -6,5 +6,8 @@
style="@style/Theme.BEEP.SettingTextView"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:paddingVertical="16dp"/>
android:paddingVertical="16dp"
android:clickable="true"
android:focusable="true"
android:background="?attr/selectableItemBackground"/>
</layout>
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,10 @@

<androidx.constraintlayout.widget.ConstraintLayout
android:layout_width="match_parent"
android:layout_height="wrap_content">
android:layout_height="wrap_content"
android:clickable="true"
android:focusable="true"
android:background="?attr/selectableItemBackground">

<TextView
android:id="@+id/tv_label"
Expand Down

0 comments on commit f945404

Please sign in to comment.