Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.
public class MyPlayer extends Activity {
/** Called when the activity is first created. */
@Override
public void onCreate(Bundle savedInstanceState) {
    super.onCreate(savedInstanceState);
    setContentView(akki.player.R.layout.main);



    boolean flashInstalled = false;
    try {
      PackageManager pm = getPackageManager();
      ApplicationInfo ai = pm.getApplicationInfo("com.adobe.flashplayer", 0);
      if (ai != null)
        flashInstalled = true;
    } catch (NameNotFoundException e) {
      flashInstalled = false;
    }
    if(flashInstalled){
    WebView browser=(WebView) findViewById(akki.player.R.id.webView1); 
    //
    browser.getSettings().setJavaScriptEnabled(true); 
    ;
    browser.getSettings().getPluginsEnabled();
    browser.getSettings().setAllowFileAccess(true);

    browser.getSettings().setAppCacheEnabled(false);

    browser.loadUrl("http://sound30.mp3pk.com/indian/dabangg2/[Songs.PK]%2004%20-%20Saanson%20Ne%20-%20Dabangg%202.mp3");
           Toast.makeText(this, "Flash Player installed ....", 1).show();
    }
    else
    {
        Toast.makeText(this, "Install Flash Player First  ..", 1).show();
    }
    }

this is my code to play a song from website. but it says webpage not available.

what is the possible error.? thanx in advance. i have a player.html file linking a player to the website as well. the code is working fine as it asks to install flash player as mentioned in the code but when i launch the application it just not displays the webpage. Instead it says webpage not available.

share|improve this question
1  
did you set the internet permission in your manifest? – Stefan Beike Dec 18 '12 at 12:05
Its a mp3 file ,You need to download that or stream that before playing. You can use media player for playing or downloadmanager for downloading. – rahul kapoor Dec 18 '12 at 12:12
@StefanBe ya i have set the permission. – Akki Dec 18 '12 at 17:31
@rahulkapoor can u pls direct me to any link with example code for such an app.? – Akki Dec 18 '12 at 17:31
than u all for replying soon.. – Akki Dec 18 '12 at 18:53

2 Answers

up vote 0 down vote accepted

I think that you should download it and play it with Mediaplayer. I see that you try to use Flash player, but Flash player isnt unsupported:

http://arstechnica.com/gadgets/2012/06/no-flash-for-android-4-1-no-new-installs-after-august-15/

share|improve this answer

The main thing is that you putting mp3 file in webview. You can change your link to http://www.musikmaza.com/2012/11/dabangg-2-2012-latest-hindi-mp3-songs.html . After changing link check that page is showing or not.

Either if you want to play mp3 files then you need a downloadManager for downloading mp3 file and then MediaPlayer for playing that file.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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