【问题标题】:Elements shouldn`t duplicate元素不应该重复
【发布时间】:2017-12-23 09:08:57
【问题描述】:

我编写了一个测验,在那里我创建了一系列问题、选择和答案。数组在 QuestionLibrary 中。在我的主要活动(测验活动)中,我将问题随机化,在每个正确答案之后,问题出现在随机行中。它工作得很好,我只是不希望这些问题不会像自己一样重复:“我叫什么名字”、“你好吗”、“我叫什么名字”。它们应该只出现 ONCE。例如,有 13 个问题,我希望每个问题只被问一次,但顺序是随机的,而不是多次。我该如何设置? (我是初学者)

测验活动:

    package amapps.impossiblequiz;

       import android.content.Intent;
       import android.os.Bundle;
       import android.support.design.widget.NavigationView;
       import android.support.v4.widget.DrawerLayout;
       import android.support.v7.app.ActionBarDrawerToggle;
       import android.support.v7.app.AppCompatActivity;
       import android.support.v7.widget.Toolbar;
       import android.view.MenuItem;
       import android.view.View;
       import android.widget.Button;
       import android.widget.TextView;
       import android.widget.Toast;

       public class QuizActivity extends AppCompatActivity {


private DrawerLayout mDrawerLayout;
private ActionBarDrawerToggle mToggle;
private Toolbar mToolbar;
private MenuItem menuItem;
private Intent in;

private QuestionLibrary mQuestionLibrary = new QuestionLibrary();

private TextView mScoreView;
private TextView mQuestionView;
private Button mButtonChoice1;
private Button mButtonChoice2;
private Button mButtonChoice3;

private String mAnswer;
private int mScore = 0;
private int mQuestionNumber = 0;

@Override
protected void onCreate(Bundle savedInstanceState) {
    super.onCreate(savedInstanceState);
    setContentView(R.layout.activity_quiz);

    //Randromize the row of the questions
    QuestionLibrary q = new QuestionLibrary();
    System.out.printf("Question:0 Choice:(%s, %s, %s) Answer:%s%n",
            q.getChoice1(0), q.getChoice2(0), q.getChoice3(0), q.getCorrectAnswer(0));
    q.shuffle();
    System.out.printf("Question:0 Choice:(%s, %s, %s) Answer:%s%n",
            q.getChoice1(0), q.getChoice2(0), q.getChoice3(0), q.getCorrectAnswer(0));

    //End randomizer

    mToolbar = (Toolbar) findViewById(R.id.nav_action);

    setSupportActionBar(mToolbar);

    mDrawerLayout = (DrawerLayout) findViewById(R.id.drawerLayout);

    mToggle = new ActionBarDrawerToggle(this, mDrawerLayout, R.string.open, R.string.close);
    mDrawerLayout.addDrawerListener(mToggle);
    mToggle.syncState();
    getSupportActionBar().setDisplayHomeAsUpEnabled(true); //Able to see the Navigation Burger "Button"


    NavigationView mNavigationView = (NavigationView) findViewById(R.id.nv1);
    mNavigationView.setNavigationItemSelectedListener(new NavigationView.OnNavigationItemSelectedListener(){
        @Override
        public boolean onNavigationItemSelected(MenuItem menuItem){
            switch (menuItem.getItemId()){
                case(R.id.nav_stats):
                    Intent accountActivity = new Intent(getApplicationContext(),Menu2.class);
                    startActivity(accountActivity);
            }
            return true;
        }
    });



        mScoreView = (TextView) findViewById(R.id.score_score);
        mQuestionView = (TextView) findViewById(R.id.question);
        mButtonChoice1 = (Button) findViewById(R.id.choice1);
        mButtonChoice2 = (Button) findViewById(R.id.choice2);
        mButtonChoice3 = (Button) findViewById(R.id.choice3);


        updateQuestion();

        //Start of Button Listener1
        mButtonChoice1.setOnClickListener(new View.OnClickListener() {
            @Override
            public void onClick(View view) {
                //My logic for Button goes in here

                if (mButtonChoice1.getText() == mAnswer) {
                    mScore = mScore + 1;
                    updateScore(mScore);
                    updateQuestion();
                    mQuestionLibrary.shuffle();


                    //This line of code is optional...
                    Toast.makeText(QuizActivity.this, "Correct", Toast.LENGTH_SHORT).show();
                } else {
                    Toast.makeText(QuizActivity.this, "Wrong... Try again!", Toast.LENGTH_SHORT).show();


                    Intent intent = new Intent(QuizActivity.this, Menu2.class);
                    intent.putExtra("score",mScore); //pass score to Menu2
                    startActivity(intent);




                }
            }


        });
        //End of Button Listener1

        //Start of Button Listener2
        mButtonChoice2.setOnClickListener(new View.OnClickListener() {
            @Override
            public void onClick(View view) {
                //My logic for Button goes in here

                if (mButtonChoice2.getText() == mAnswer) {
                    mScore = mScore + 1;
                    updateScore(mScore);
                    updateQuestion();
                    mQuestionLibrary.shuffle();



                    //This line of code is optional...
                    Toast.makeText(QuizActivity.this, "Correct", Toast.LENGTH_SHORT).show();
                } else {
                    Toast.makeText(QuizActivity.this, "Oh... wrong your score is 0", Toast.LENGTH_SHORT).show();

                    Intent intent = new Intent(QuizActivity.this, Menu2.class);
                    intent.putExtra("score",mScore); //pass score to Menu2
                    startActivity(intent);




                }
            }


        });
        //End of Button Listener2

        //Start of Button Listener3
        mButtonChoice3.setOnClickListener(new View.OnClickListener() {
            @Override
            public void onClick(View view) {
                //My logic for Button goes in here

                if (mButtonChoice3.getText() == mAnswer) {
                    mScore = mScore + 1;
                    updateScore(mScore);
                    updateQuestion();
                    mQuestionLibrary.shuffle();



                    //This line of code is optional...
                    Toast.makeText(QuizActivity.this, "Correct", Toast.LENGTH_SHORT).show();
                } else {
                    Toast.makeText(QuizActivity.this, "Come on, that was not so hard...", Toast.LENGTH_SHORT).show();

                    Intent intent = new Intent(QuizActivity.this, Menu2.class);
                    intent.putExtra("score",mScore); //pass score to Menu2
                    startActivity(intent);




                }
            }


        });
        //End of Button Listener3

    }


private void updateQuestion() {

    if (mQuestionNumber < mQuestionLibrary.getLength()) {
        mQuestionView.setText(mQuestionLibrary.getQuestion(mQuestionNumber));
        mButtonChoice1.setText(mQuestionLibrary.getChoice1(mQuestionNumber));
        mButtonChoice2.setText(mQuestionLibrary.getChoice2(mQuestionNumber));
        mButtonChoice3.setText(mQuestionLibrary.getChoice3(mQuestionNumber));

        mAnswer = mQuestionLibrary.getCorrectAnswer(mQuestionNumber);
        mQuestionNumber++;
    }
    else {
        Toast.makeText(QuizActivity.this, "Last Question! You are very intelligent!", Toast.LENGTH_SHORT).show();
        Intent intent = new Intent(QuizActivity.this, Menu2.class);
        intent.putExtra("score",mScore); //pass score to Menu2
        startActivity(intent);


    }

}

    private void updateScore ( int point){
        mScoreView.setText("" + mScore);

    }


    @Override //Makes that the "Burger" Item, shows the Drawer if someone clicks on the simbol
    public boolean onOptionsItemSelected (MenuItem item){
        if (mToggle.onOptionsItemSelected(item)) {
            return true;
        }
        return super.onOptionsItemSelected(item);
    }


}

问题库:

    package amapps.impossiblequiz;

    import java.util.ArrayList;
    import java.util.Collections;
    import java.util.List;

    public class QuestionLibrary {

private final String[] [] mChoices ={
        {"1993", "1986", "1967"},
        {"-260", "-272,15", "279,15"},
        {"a plant","The active substance of marijuana" , "a spider"},
        {"6", "10","8"},
        {"12","15","10"},
        {"Uranus","Neptune","Saturn"},
        {"HCl","NaCl","CO"},
        {"John F. Kennedy", "Richard Nixon","James A. Garfield"},
        {"Canada","Denmark", "Greenland is an own state?"},
        {"12","20","14"},
        {"10","12","14"},
        {"not","never","now"},
        {"Leningrad","Wolgograd","Dimitrijgrad"}

};
private final String mQuestions[] = {
        "When was the European Union founded?",
        "How many Grad Celsius is one Kelvin?",
        "What is THC?",
        "How many legs has a spider?",
        "How many stars has the European flag?",
        "Which is the seventh planet from the sun?",
        "What is the chemical formula of salt?",
        "Who said: Ich bin ein berliner?",
        "To which country belongs Greenland?",
        "What is the result of: 2 + 2 *5?",
        "How many mountains are higher than 8000 meter/26.246 ft?",
        "A famous quote is: to be, or____ to be!",
        "What is the name of Stalingrad nowadays?"

};



private final String mCorrectAnswers[] = {
        "1993", "-272,15", "The active substance of marijuana",
        "8", "12","Uranus","NaCl","John F. Kennedy",
        "Denmark","12","14","not","Wolgograd"

};

private final List<Integer> indexes = new ArrayList<>();

public QuestionLibrary() {
    for (int i = 0; i < mQuestions.length; ++i)
        indexes.add(i);
}

private int index(int i) {
    return indexes.get(i);
}

public String getQuestion(int a) {
    return mQuestions[index(a)];
}

public String getChoice1(int a) {
    return mChoices[index(a)][0];
}

public String getChoice2(int a) {
    return mChoices[index(a)][1];
}

public String getChoice3(int a) {
    return mChoices[index(a)][2];
}

public String getCorrectAnswer(int a) {
    return mCorrectAnswers[index(a)];
}

public int getLength() {
    return mQuestions.length;
}

public void shuffle() {
    Collections.shuffle(indexes);
}
}

【问题讨论】:

  • 在您的问题库中,维护一个数组中已问问题的列表或索引,然后检查是否重复,然后再获取一个。
  • 只删除所有mQuestionLibrary.shuffle(); 调用?一开始你已经在洗牌一次了:q.shuffle();。这给了你随机的顺序。然后,您无需在每次回答后再次随机播放。
  • @kapsym 你可能是指一组索引而不是列表
  • 你好,这可能是最好的方法......我如何设置它只洗牌一次?在新活动开始时?
  • @efekctive 是的,如果使用正确,可以使用集合甚至数组。优先事项

标签: java android arrays duplicates


【解决方案1】:

在加载活动时将集合随机播放一次,而不是在每次回答问题后。

【讨论】:

  • 从按钮 onClick 侦听器中删除所有 mQuestionLibrary.shuffle();。看起来你已经在 onCreate 中有一个,所以留下一个,它应该可以工作
  • 现在问题的行每次都一样
  • 我解决了...我只粘贴了 mQuestionLibrary.shuffle();一开始现在效果很好,谢谢兄弟! :D
猜你喜欢
  • 1970-01-01
  • 1970-01-01
  • 1970-01-01
  • 1970-01-01
  • 2017-12-21
  • 1970-01-01
  • 2018-08-17
  • 1970-01-01
  • 2019-09-20
相关资源
最近更新 更多