使用intent启动FirebaseUI时,您可以看到一个弹出窗口,显示正在加载的信息。有没有办法改变弹出窗口的消息和样式?
答案 0 :(得分:0)
您可以在strings.xml文件中按overriding that string更改加载消息:
<resources>
<string name="fui_progress_dialog_signing_up">Creating your shiny new account...</string>
</resources>
您可以更改具有FirebaseUI的creating a theme样式弹出窗口,作为其父级:
<style name="GreenTheme" parent="FirebaseUI">
<!-- Required for sign-in flow styling -->
<item name="colorPrimary">@color/material_green_500</item>
<item name="colorPrimaryDark">@color/material_green_700</item>
<item name="colorAccent">@color/material_purple_a700</item>
<item name="colorControlNormal">@color/material_green_500</item>
<item name="colorControlActivated">@color/material_lime_a700</item>
<item name="colorControlHighlight">@color/material_green_a200</item>
<item name="android:windowBackground">@color/material_green_50</item>
</style>
请参阅FirebaseUI Github以查看完整的UI自定义指南。