Android Open Source - GeoQuiz True False






From Project

Back to project page GeoQuiz.

License

The source code is released under:

Apache License

If you think the Android project GeoQuiz 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 geoquiz.android.bignerdranch.com.geoquiz;
//from   w w  w  .  j  a va2  s .c  om
/**
 * Created by miguel on 1/01/15.
 */
public class TrueFalse {
    private int mQuestion;
    private boolean mTrueQuestion;

    public TrueFalse(int question, boolean trueQuestion){
        mQuestion = question;
        mTrueQuestion = trueQuestion;
    }

    public int getQuestion() {
        return mQuestion;
    }

    public void setQuestion(int mQuestion) {
        this.mQuestion = mQuestion;
    }

    public boolean isTrueQuestion() {
        return mTrueQuestion;
    }

    public void setTrueQuestion(boolean mTrueQuestion) {
        this.mTrueQuestion = mTrueQuestion;
    }

}




Java Source Code List

geoquiz.android.bignerdranch.com.geoquiz.ApplicationTest.java
geoquiz.android.bignerdranch.com.geoquiz.QuizActivity.java
geoquiz.android.bignerdranch.com.geoquiz.TrueFalse.java