Reputation: 474
In my app I am using this intent to start fm radio
Intent i = new Intent(Intent.ACTION_MAIN);
PackageManager manager = getPackageManager();
i = manager.getLaunchIntentForPackage("com.sec.android.app.fm");
i.addCategory(Intent.CATEGORY_LAUNCHER);
startActivity(i);
In samsung note2 I can open fm radio through this intent. So my question is how can I set frequency programmatically like i.putExtra("setFreq", 94.3);
. Is there any parameter I have to pass through the intent. I don't know it is possible or not. Please help.thanks
Upvotes: 2
Views: 1416
Reputation: 446
See this forum-post to find a list of intents to control the fm radio:
[upto..]
I don't know how to use the frequency intent, but i've tried successfully the others on my Galaxy S3 (with the Llama app).
Upvotes: 1