All of the Android material icons come in either black or white:
https://www.google.com/design/icons/index.html
Which I add to my layout like:
<ImageView
android:layout_width="match_parent"
android:layout_height="match_parent"
android:background="@drawable/ic_plus" />
Is there a way to change the color of the icon from black/white to something else in the layout/code?
I've heard of the android:backgroundTint="@color/green"
property, but does this work across all versions of Android? For example, if I use this property in my layout, will it change the color on Android versions older than 5.0?
Edit: Wow, you guys are good at making a new user feel unwelcome.