Android 5.0 API21及以下點選波紋效果
android api21及以上引入了控制元件點選的水波紋效果
xml中設定
android:background="?android:attr/selectableItemBackground"
程式碼中設定
TypedValue typedValue = new TypedValue();
getTheme().resolveAttribute(R.attr.selectableItemBackground, typedValue, true);
view.setBackgroundResource(typedValue.resourceId);