如何覆盖Firebase中的内部样式或按钮?

时间:2016-10-18 09:55:52

标签: android firebase firebase-authentication android-styles firebaseui

我想覆盖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的背景颜色,我想要以某种方式覆盖样式或通过代码更改背景。

有什么建议吗?

https://github.com/firebase/FirebaseUI-Android

0 个答案:

没有答案