I\'m searching way to get Android system colors - color theme used in device.
Using android:color/ I didn\'t get correct colors. For example: background col
android:color/
Thanks for rekire :)
Finally I have the answer: Android: How to get background color of Activity in Java?
TypedArray array = getTheme().obtainStyledAttributes(new int[]{android.R.attr.colorBackground,}); int backgroundcolor = array.getColor(0, 0xFF00FF);