I want to develop an app that integrates the music player of a phone that runs on Android platform, with social networking accounts like twitter...suggest me where to start from? I think I can be more specific once I start developing the app. Thank you.

link|improve this question
Start from your old friend, Google :) – Adel Boutros Jan 23 at 17:37
feedback

closed as not a real question by casperOne Jan 24 at 18:27

It's difficult to tell what is being asked here. This question is ambiguous, vague, incomplete, overly broad, or rhetorical and cannot be reasonably answered in its current form. See the FAQ for guidance on how to improve it.

1 Answer

I'm not sure exactly what you're asking, so I'll ask some clarifying questions.

Are you asking how to start developing? If you're brand new to Android development, here are some important links: http://developer.android.com/index.html http://developer.android.com/training/index.html http://developer.android.com/guide/topics/fundamentals.html

If you want your app to play music itself, look at MediaPlayer (http://developer.android.com/reference/android/media/MediaPlayer.html) and some background information on working with multimedia in Android (http://developer.android.com/guide/topics/media/index.html)

If you want your app to get other music-playing apps on the phone to play music, use Intents. Read up on those. http://developer.android.com/reference/android/content/Intent.html

If you want to integrate with Facebook, you'll want to use their API: http://developers.facebook.com/blog/post/385/

For Twitter, do some Googling--there are a several different libraries to use.

If you can narrow the scope of your question, it would be easier for you to get a more specific response :)

link|improve this answer
feedback

Not the answer you're looking for? Browse other questions tagged or ask your own question.