I would like to change the basic color of the progress bar into Facebook login process. So I tried that but it doesn't work at all:
In styles.xml:
<style name="FacebookStyle" parent="android:Theme.Translucent.NoTitleBar">
<item name="android:progressBarStyle">@style/FacebookProgressBarStyle</item>
</style>
<style name="FacebookProgressBarStyle">
<item name="android:color">#DBA347</item>
</style>
In AndroidManifest.xml:
<activity
android:name="com.facebook.FacebookActivity"
android:configChanges="keyboard|keyboardHidden|screenLayout|screenSize|orientation"
tools:replace="android:theme"
android:theme="@style/FacebookStyle"
android:label="@string/app_name" />
Have you got some ideas guys?
Thank you very much!