Android Open Source - Planets-App Random Quotes






From Project

Back to project page Planets-App.

License

The source code is released under:

Apache License

If you think the Android project Planets-App 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

package com.andrewq.planets;
/*w  w w  .  j  av a2  s  . com*/
import java.util.Random;

public class RandomQuotes {

    public String[] mQuotes = {
            "Only two things are infinite, the universe and human stupidity, and I'm not sure about the former. \n-Albert Einstein",
            "Our scientific power has outrun our spiritual power. We have guided missiles and misguided men. \n-Martin Luther King, Jr.",
            "We cannot teach people anything; we can only help them discover it within themselves.\n-Galileo",
            "The Milky Way is nothing else but a mass of innumerable stars planted together in clusters.\n-Galileo",
            "Kids are born curious about the world. What adults primarily do in the presence of kids is unwittingly thwart the curiosity of children.\n-Neil deGrasse Tyson",
            "Aerodynamically, the bumble bee shouldn't be able to fly, but the bumble bee doesn't know it so it goes on flying anyway. \n-Mary Kay Ash"};

    public String getQuotes() {

        String quote = "";

        Random randomGenerator = new Random(); // construct new random generator
        int randomNumber = randomGenerator.nextInt(mQuotes.length);
        quote = mQuotes[randomNumber];

        return quote;
    }

}




Java Source Code List

com.andrewq.planets.CustomAdapter.java
com.andrewq.planets.Deimos.java
com.andrewq.planets.EclairMotionEvent.java
com.andrewq.planets.FragmentA.java
com.andrewq.planets.FragmentB.java
com.andrewq.planets.FragmentC.java
com.andrewq.planets.FragmentD.java
com.andrewq.planets.FragmentE.java
com.andrewq.planets.FragmentF.java
com.andrewq.planets.FragmentG.java
com.andrewq.planets.FragmentH.java
com.andrewq.planets.FragmentHome.java
com.andrewq.planets.FragmentI.java
com.andrewq.planets.FragmentPlanets.java
com.andrewq.planets.ImageGallery.java
com.andrewq.planets.Phobos.java
com.andrewq.planets.RandomQuotes.java
com.andrewq.planets.RowItem.java
com.andrewq.planets.SatelliteEarth.java
com.andrewq.planets.Settings.java
com.andrewq.planets.SunGLActivity.java
com.andrewq.planets.SunRenderer.java
com.andrewq.planets.TouchImageView.java
com.andrewq.planets.VenusRenderer.java
com.andrewq.planets.WrapMotionEvent.java
com.obsidian.planets.Main.java