Skip to content
Advertisement

Tag: facebook

Android: Redirect to another Activity after delay

So I am developing a simple app for a college project, And I have been able to integrate a Facebook login using fragments. But I now am stuck trying to redirect the user after they login. I simply want to redirect them to the second activity page Here is my code for the Facebook login success Answer To make a

ApplicationInfo metadata returning null

I have the following code: In the manifest: In the code: But the result is ai.metaData==null. Why is this happening Answer From the latest android doc, <meta-data> can be only contained in <activity>/<activity-alias>/<service>/ <receiver>. So you should append meta-data in these components, not in <application> directly.

Advertisement