13
Ajouter un effet d'entraînement à mon bouton avec la couleur d'arrière-plan du bouton?
J'ai créé un bouton et je veux ajouter un effet d'entraînement à ce bouton! J'ai créé un fichier XML bouton bg: (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> Et voici mon fichier d'effet d'entraînement: (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"> …