I'm implementing a facebook login in my app and I've tried to modify the button so that it can fit well in my established design. I'm currently trying to modify the text color to black. To do this I've used the following XML snippet :
android:textColor="#000"
My issue is that this snippet only changes the "continue with facebook" text but not the white facebook logo which then becomes invisible since my background is white. (Cf. screenshot)
I'm looking for a way to fix this issue, statically through XML or programmatically through Java.
Thank you.
EDIT: Suggested duplicate assumes I can act directly on the drawable while the facebook login button is drawable + text combined and unsplittable.
