带有分数的Android Studio测验应用

时间:2017-01-07 09:30:15

标签: java android android-fragments

我目前正在Android Studio中制作一个标记测验应用,我想添加一个功能,其中每个正确的答案都会给你1分,错误的答案会给你0.(按提示按钮或跳过按钮也是给你0)。最后,您可以按一个名为&#34的按钮;获得我的分数"给出最终得分的地方。

我的问题是,即使我提交正确的答案,我的分数为0,而当我提交错误答案时,有时候我的分数是正面的...... Aka有些不对劲。我错过了一些代码,或者我只是以错误的方式做到了这一点?

更新

管理好了!正确的代码如下。

首先,这是主要的活动,包含所有片段(标志)的代码:

Play.java

public class Play extends MainActivity {

private int total = 0;

public void updateScore(int add){
    total += add;
}

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

    final String myScore = String.valueOf(total);

    final ImageButton imageBtn10 = (ImageButton) findViewById(R.id.imageButton10);
    final ImageButton imageBtn9 = (ImageButton) findViewById(R.id.imageButton9);
    final ImageButton imageBtn8 = (ImageButton) findViewById(R.id.imageButton8);
    final ImageButton imageBtn7 = (ImageButton) findViewById(R.id.imageButton7);
    final ImageButton imageBtn6 = (ImageButton) findViewById(R.id.imageButton6);
    final ImageButton imageBtn5 = (ImageButton) findViewById(R.id.imageButton5);
    final ImageButton imageBtn4 = (ImageButton) findViewById(R.id.imageButton4);
    final ImageButton imageBtn3 = (ImageButton) findViewById(R.id.imageButton3);

    final Button button_score = (Button)findViewById(R.id.scoreButton);


    FragmentManager fragMan = getFragmentManager();
    FragmentTransaction fragTrans = fragMan.beginTransaction();
    FragmentDefault fd = new FragmentDefault();
    fragTrans.replace(R.id.fragment_place, fd);
    fragTrans.commit();

    fragTrans.hide(new FragmentOne());
    fragTrans.hide(new FragmentTwo());
    fragTrans.hide(new FragmentThree());

    button_score.setOnClickListener(new View.OnClickListener() {
        @Override
        public void onClick(View v) {
            Bundle bundle = new Bundle();
            bundle.putString("yes", String.valueOf(total));

            Intent intent= new Intent(Play.this, FinalActivity.class);
            intent.putExtras(bundle);
            startActivity(intent);
        }
    });

    imageBtn10.setOnClickListener(new View.OnClickListener() {
        @Override
        public void onClick(View v) {
                FragmentManager fragMan = getFragmentManager();
                FragmentTransaction fragTrans = fragMan.beginTransaction();
                fragTrans.replace(R.id.fragment_place, new FragmentOne());
                fragTrans.commit();
                //imageBtn10.setEnabled(false);
        }

    });


    imageBtn9.setOnClickListener(new View.OnClickListener() {

        @Override
        public void onClick(View v) {
            FragmentManager fragMan = getFragmentManager();
            FragmentTransaction fragTrans = fragMan.beginTransaction();
            fragTrans.replace(R.id.fragment_place, new FragmentTwo());
            fragTrans.commit();
        }
    });

    imageBtn8.setOnClickListener(new View.OnClickListener() {

        @Override
        public void onClick(View v) {
                FragmentManager fragMan = getFragmentManager();
                FragmentTransaction fragTrans = fragMan.beginTransaction();
                fragTrans.replace(R.id.fragment_place, new FragmentThree());
                fragTrans.commit();
        }
    });

    imageBtn7.setOnClickListener(new View.OnClickListener() {

        @Override
        public void onClick(View v) {
            FragmentManager fragMan = getFragmentManager();
            FragmentTransaction fragTrans = fragMan.beginTransaction();
            fragTrans.replace(R.id.fragment_place, new FragmentThree());
            fragTrans.commit();
        }
    });

    imageBtn6.setOnClickListener(new View.OnClickListener() {

        @Override
        public void onClick(View v) {
            FragmentManager fragMan = getFragmentManager();
            FragmentTransaction fragTrans = fragMan.beginTransaction();
            fragTrans.replace(R.id.fragment_place, new FragmentThree());
            fragTrans.commit();
        }
    });

    imageBtn5.setOnClickListener(new View.OnClickListener() {

        @Override
        public void onClick(View v) {
            FragmentManager fragMan = getFragmentManager();
            FragmentTransaction fragTrans = fragMan.beginTransaction();
            fragTrans.replace(R.id.fragment_place, new FragmentThree());
            fragTrans.commit();
        }
    });

    imageBtn4.setOnClickListener(new View.OnClickListener() {

        @Override
        public void onClick(View v) {
            FragmentManager fragMan = getFragmentManager();
            FragmentTransaction fragTrans = fragMan.beginTransaction();
            fragTrans.replace(R.id.fragment_place, new FragmentThree());
            fragTrans.commit();

        }
    });

    imageBtn3.setOnClickListener(new View.OnClickListener() {

        @Override
        public void onClick(View v) {
            FragmentManager fragMan = getFragmentManager();
            FragmentTransaction fragTrans = fragMan.beginTransaction();
            fragTrans.replace(R.id.fragment_place, new FragmentThree());
            fragTrans.commit();
        }
    });
 }
}

第一个标志(片段)的代码:

FragmentOne.java

public class FragmentOne extends Fragment {

    private EditText userAnswer;

@Override
public View onCreateView(LayoutInflater inflater, ViewGroup container,
                         Bundle savedInstanceState) {
    // Inflate the layout for this fragment
    View v = inflater.inflate(R.layout.fragment_fragment_one, null);
    userAnswer = (EditText)v.findViewById(R.id.editText);
    final TextView tv = (TextView)v.findViewById(R.id.showCorrect);
    final TextView hintv = (TextView)v.findViewById(R.id.textHint);

    final Button submit = (Button)v.findViewById(R.id.submitBtn1);
    submit.setOnClickListener(new View.OnClickListener() {
        public void onClick(View v) {

            String theAnswer = (userAnswer.getText().toString());
            if (theAnswer.equalsIgnoreCase("Germany")) {
                ((Play) getActivity()).updateScore(1);
                tv.setText("Correct!");
            }
            else {
                tv.setText("Wrong");
            }
            submit.setEnabled(false);

            // updateScore();
        }
    });

    final Button skip = (Button)v.findViewById(R.id.skipBtn);
    skip.setOnClickListener(new View.OnClickListener() {
        public void onClick(View v) {
            submit.setEnabled(false);
        }
    });

    final Button hint = (Button)v.findViewById(R.id.hintBtn);
    hint.setOnClickListener(new View.OnClickListener() {
        public void onClick(View v) {
            hintv.setText("The capital is Berlin \n The country is in Europe \n It starts with G... ");
        }
    });
    return v;}
}

这是其中一个问题的代码。因此,您可以单击一个标志并写下属于哪个国家/地区。每个标志都是一个片段。

由于此行,我在上面的代码中收到错误: ((Play)getActivity())。updateScore(1); 游戏的颜色为红色,表示无法解析符号'播放'。

这是你按下"得到我的分数"的代码。按钮:

FinalActivity.java

public class FinalActivity extends AppCompatActivity {

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

    Bundle bundle = getIntent().getExtras();
    final String yes_sir = bundle.getString("yes"); //yes_sir has to be the total score added up.

    final TextView tv2 = (TextView)findViewById(R.id.textView5);
    final Button submit = (Button)findViewById(R.id.button4);

    submit.setOnClickListener(new View.OnClickListener() {
        public void onClick(View v) {

            tv2.setText("Score is " + yes_sir);
        }
    });
}
}  

我是一名完整的编程初学者,所以详细解释会非常有用!

1 个答案:

答案 0 :(得分:1)

您可以使用密钥"是":

从捆绑中获得分数
 final String yes_sir = bundle.getString("yes");

我猜你的分数应该是" a",因为当答案是正确的时候,你正在增加这个。您没有向我们展示代码,您可以在其中将视图更改为分数视图(创建新活动)以及将分数添加到捆绑包的位置。您应该将分数添加到片段类中的包中,如下所示:

bundle.putString("yes", String.valueOf(a));

您可以使用Android套件将数据提供给新的活动。为此,您可以数据放入Bundle并将其提供给新Activity的onCreate。在那里,您可以获取数据。您的问题是,您正在尝试获取来自Bundle的数据,但绝不会添加数据。

为了帮助您提供更详细的信息,查看代码会很有用,您可以在其中创建显示分数的活动。

您需要使用Intent将该Bundle提供给您的新活动。

当您想要启动FinalActivity时,您应该执行以下操作:

Intent intent= new Intent(this, FinalActivity.class);
intent.putExtras(bundle);
startActivity(intent);

要在Fragments及其Activity之间进行通信,最简单(但不是最好)的方法如下:

((Play)getActivity())。updateScore(1);

在Fragments中执行此操作,而不是public static int。因此,而不是你的" a ++;"你在上面写下这一行。

在您的Play课程中,您必须添加以下功能:

public void updateScore(int add){
    total += add;
}

你应该改变:

 final int total = (0 + FragmentOne.a + FragmentTwo.b);

要:      private int total = 0;

将它从onCreate()函数移到类中。

而不是:

bundle.putString("yes", myScore);

您现在可以:

bundle.putString("yes", String.valueOf(total));

注意:您的问题已经发生,因为您创建了Play活动时,您的分数已初始化一次。这意味着,当您第一次初始化它时,总数将设置为0.当您现在正确回答问题时,总计不会更新,因为它只是设置,我们初始化您的活动。按下乐谱按钮时,它仍为0.当您现在切换回播放活动时,总数会再次初始化并变为1(如果您正确回答)。