Android Open Source - AntelopeMediaPlayer About






From Project

Back to project page AntelopeMediaPlayer.

License

The source code is released under:

GNU General Public License

If you think the Android project AntelopeMediaPlayer listed in this page is inappropriate, such as containing malicious code/tools or violating the copyright, please email info at java2s dot com, thanks.

Java Source Code

/** Antelope Media Player - Media player for Android
  * Copyright (C) 2011  William C. Witt/*from  w  w  w.jav a 2s  .com*/
  * 
  * This program is free software: you can redistribute it and/or modify
  * it under the terms of the GNU General Public License as published by
  * the Free Software Foundation, either version 3 of the License, or
  * (at your option) any later version.
  * 
  * This program is distributed in the hope that it will be useful,
  * but WITHOUT ANY WARRANTY; without even the implied warranty of
  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  * GNU General Public License for more details.
  * 
  * You should have received a copy of the GNU General Public License
  * along with this program.  If not, see <http://www.gnu.org/licenses/>.
  */

package com.manicware.antelope;

import android.app.Activity;
import android.os.Bundle;
import android.view.View;
import android.widget.Button;

public class About extends Activity {
  Button mOkButton;
  
  /**
   * @see android.app.Activity#onCreate(Bundle)
   */
  @Override
  protected void onCreate(Bundle savedInstanceState) {
    super.onCreate(savedInstanceState);
    setContentView(R.layout.about);
    
    mOkButton = (Button) findViewById(R.id.okButton);
    
    mOkButton.setOnClickListener(new View.OnClickListener() {

            public void onClick(View view) {
                setResult(RESULT_OK);
                finish();
            }

        });
  }
}




Java Source Code List

com.manicware.antelope.About.java
com.manicware.antelope.AudioFocusHelper.java
com.manicware.antelope.MainActivity.java
com.manicware.antelope.MusicFocusable.java
com.manicware.antelope.MusicIntentReceiver.java
com.manicware.antelope.MusicRetriever.java
com.manicware.antelope.MusicService.java
com.manicware.antelope.PrepareMusicRetrieverTask.java