13
버튼 배경색으로 내 버튼에 물결 효과를 추가 하시겠습니까?
버튼을 만들고 그 버튼에 파급 효과를 추가하고 싶습니다! 버튼 bg XML 파일을 만들었습니다 : (bg_btn.xml) <shape xmlns:android="http://schemas.android.com/apk/res/android" android:shape="rectangle"> <gradient android:startColor="#FFFFFF" android:endColor="#00FF00" android:angle="270" /> <corners android:radius="3dp" /> <stroke android:width="5px" android:color="#000000" /> </shape> 그리고 이것은 내 파급 효과 파일입니다 : (ripple_bg.xml) <ripple xmlns:android="http://schemas.android.com/apk/res/android" xmlns:tools="http://schemas.android.com/tools" android:color="#f816a463" tools:targetApi="lollipop"> <item android:id="@android:id/mask"> <shape android:shape="rectangle"> <solid android:color="#f816a463" …