我想覆盖Firebase UI for Android中显示的Google登录按钮。
在FirebaseUI-Android / auth / src / main / res / values / styles.xml中有
<style name="FirebaseUI.Button.AccountChooser.GoogleButton">
<item name="android:drawableLeft">@drawable/logo_googleg_color_18dp</item>
<item name="android:background">@drawable/idp_button_background_google</item>
<item name="android:textColor">#757575</item>
</style>
并在FirebaseUI-Android / auth / src / main / res / layout / idp_button_google.xml中:
<Button
xmlns:android="http://schemas.android.com/apk/res/android"
style="@style/FirebaseUI.Button.AccountChooser.GoogleButton"
android:text="@string/sign_in_with_google"
android:id="@+id/google_button"
/>
我想在我的应用中更改GoogleButton的背景颜色,我想要以某种方式覆盖样式或通过代码更改背景。
有什么建议吗?