我正在对我的应用程序的用户界面中的可点击元素使用涟漪效应:
<?xml version="1.0" encoding="utf-8"?>
<ripple
xmlns:android="http://schemas.android.com/apk/res/android"
android:color="@color/MenuGray">
<item>
<shape
android:shape="rectangle">
</shape>
</item>
</ripple>
问题是我希望对具有不同背景颜色的元素产生连锁反应。有什么方法可以使波纹颜色具有动态性,从而使其阴影比被单击的元素更暗,或者我是否需要为具有不同背景颜色的每个元素拥有多个ripple.xml文件?
答案 0 :(得分:0)
如果您加载RippleDrawable
,则应该能够set the color。
公共无效setColor(ColorStateList颜色)
设置波纹颜色。
以下是将RippleDrawable
更改为几个TextViews
的示例。
MainActivity.java
public class MainActivity extends AppCompatActivity {
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_main);
TextView textView = findViewById(R.id.textView);
setRippleColor(textView, Color.RED);
textView = findViewById(R.id.textView2);
setRippleColor(textView, getResources().getColor(android.R.color.holo_blue_light));
}
private void setRippleColor(View view, int color) {
RippleDrawable drawable = (RippleDrawable) view.getBackground();
ColorStateList stateList = new ColorStateList(
new int[][]{new int[]{android.R.attr.state_pressed}},
new int[]{color}
);
drawable.setColor(stateList);
view.setBackground(drawable);
}
}
activity_main.xml
<android.support.constraint.ConstraintLayout
android:layout_width="match_parent"
android:layout_height="match_parent"
tools:context=".MainActivity">
<TextView
android:id="@+id/textView"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:background="@drawable/ripple_drawable"
android:clickable="true"
android:focusable="true"
android:text="Make it red"
android:textSize="30sp"
app:layout_constraintBottom_toBottomOf="parent"
app:layout_constraintLeft_toLeftOf="parent"
app:layout_constraintRight_toRightOf="parent"
app:layout_constraintTop_toTopOf="parent" />
<TextView
android:id="@+id/textView2"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_marginTop="8dp"
android:background="@drawable/ripple_drawable"
android:clickable="true"
android:focusable="true"
android:text="Make it blue"
android:textSize="30sp"
app:layout_constraintBottom_toBottomOf="parent"
app:layout_constraintLeft_toLeftOf="parent"
app:layout_constraintRight_toRightOf="parent"
app:layout_constraintTop_toBottomOf="@+id/textView"
app:layout_constraintVertical_bias="0.0" />
</android.support.constraint.ConstraintLayout>
ripple_drawable.xml
<ripple android:color="@android:color/darker_gray">
<item android:id="@android:id/mask"
android:drawable="@android:color/white" />
</ripple>
您可能还会发现"Programmatically create a RippleDrawable of any color"有用。