Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

Questions about creating or managing Activities in Android. In Android Applications, an Activity is a Component that provides a user interface allowing the user to do something. Simple examples are: dial the phone, take a photo, send an email, or view a map.

learn more… | top users | synonyms

1
vote
0answers
51 views

Android Activity to Fragment - Possible without massive changes?

I've finished one of my new games and I think it would be 10x better with some kind of Facebook integration. I'm new to the facebook sdk and I can see that it utilises fragments, which I'm not overly ...
5
votes
1answer
239 views

Failed to render Facebook comments on Android WebView via local HTML

I have a simple activity that create a WebView to load Facebook Comments, e.g. protected void onCreate(Bundle savedInstanceState) { super.onCreate(savedInstanceState); ...
0
votes
3answers
269 views

Android Facebook share: activity not found

I have problem with my function for posting data on Facebook: public void postData() { try { Intent i = new Intent(Intent.ACTION_SEND); i.setClassName("com.facebook.katana", ...
0
votes
0answers
75 views

Open Facebook help center on button click

I am using following code to open facebook wall String uri = "facebook://facebook.com/wall"; Intent intent = new Intent(Intent.ACTION_VIEW, Uri.parse(uri)); startActivity(intent); It is working ...
1
vote
1answer
202 views

log into Facebook app using am start commands/ADB shell

I would like to log into the Facebook app from an android shell using am start commands. am start -n com.facebook.katana/.LoginActivity That command brings up the facebook login screen. But ...
2
votes
2answers
2k views

Login to facebook a button to open a new activity

I am trying to login to facebook once the user clicks on a button and then once successfully logged in, the new activity is created. This is the code of the main activity so far! import ...
1
vote
4answers
466 views

Want to start new Activity on Login completion

I want to start a new activity when Facebook login completes that happens in a DialogListener. Login done successfully No error comes but activity doesn't start. If you require logcat I can email you. ...
1
vote
1answer
239 views

onActivityResult in a non-activity class?

I am trying to implement facebook login and wall post in Android, so I created a non-activity class that handles everything. I saw all these examples where they use this method - onActivityResult but ...
1
vote
0answers
118 views

Android SSO in subactivity doesn't call OnComplete

I have something like a menu Activity (let's call it activity 1) where the user presses a button and another Activity (let's call it activity 2) gets started. I want to use Facebook SSO in activity 2. ...
0
votes
2answers
570 views

Handling a facebook-object through multiple activities

Currently I'm writing an adapter class to provide a convenient way for communication with the facebook API. The way I thought about using it is to run the authentication when the app is starting up, ...