While Parseloginui Loading Spinner Is Working Activity Is Visible At Background
For my project, I am using ParseLoginUI with a dispatcher as shown here: https://github.com/ParsePlatform/ParseUI-Android/tree/master/ParseLoginSampleWithDispatchActivity However,
Solution 1:
I found the solution. That dummy activity which starts unnecessarily is belong to Facebook. Which in our AndroidManifest.xml Facebook's LoginActivity looks like this:
<activityandroid:name="com.facebook.LoginActivity">Add NoDisplay as Theme to it, so it doesn't show up on screen:
<activityandroid:name="com.facebook.LoginActivity"android:theme="@android:style/Theme.NoDisplay">
Post a Comment for "While Parseloginui Loading Spinner Is Working Activity Is Visible At Background"