我想在按鈕上使用漣漪效應。 AppCompat v22.1將AppCompatButton和新功能添加到AppCompat着色。AppCompatButton backgroundTint API <21
我的佈局:
<android.support.v7.widget.AppCompatButton
android:id="@+id/add_remove_button"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:backgroundTint="@color/primary"
android:textColor="@android:color/white"
android:text="Remove" />
在我的API 22測試設備的連鎖反應完美的作品,但我編碼API 11和不幸backgroundTint需要API> = 21,如何設置的連鎖反應到舊API版本的按鈕?
可能http://stackoverflow.com/questions/26444391/primary-dark-color-android-under-api-21您可以將您的答案在這裏。 – Hardy
在Lollipop之前,漣漪不能用於工作,所以你必須模仿它們。 – Egor
Ripple僅適用於api> = 21 –