移动到下一个活动后,CountDownTimer未停止 - 测验应用程序

时间:2018-05-14 16:45:25

标签: android android-layout

抱歉我的英文,

我的测验应用程序由RecyclerView组成,因此当我点击该RecyclerView中的项目时,它应转移到5个活动中的5个问题的问题部分。所以我为每个活动中的每个问题做了CountDownTimer 15秒,当用户回答问题而不是点击按钮时,它会移动到另一个活动,但CountDownTimer仍然在后台运行,每当我回到我的RecyclerView,另一个活动出现15秒,所以我不知道为什么那些CountDownTimers不会停止。需要帮助

second_five_questions_questions_1.java

private RadioGroup radioGroup;
private RadioButton radioButton;
private Button btnDisplay;
private TextView mTextField;
private CountDownTimer myCount;
public long val;


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

}


public void addListenerOnButton() {

    radioGroup = (RadioGroup) findViewById(R.id.Rd_Group_Second_five_Questions_q1);
    btnDisplay = (Button) findViewById(R.id.Button_SECOND_btn_Five_Questions_q1);
    btnDisplay.setOnClickListener(new View.OnClickListener() {

        @Override
        public void onClick(View v) {

            // get selected radio button from radioGroup
            int selectedId =radioGroup.getCheckedRadioButtonId();
            myCount.cancel();
            // find the radiobutton by returned id
            radioButton = (RadioButton) findViewById(selectedId);
            if(selectedId==R.id.Rd_btn_three__second_five_questions_q1)
            {
                val++;
                Intent intent = new Intent( second_five_questions_questions_1.this, second_five_questions_questions_2.class);
                intent.putExtra("key", val);
                intent.addCategory(Intent.CATEGORY_HOME);
                intent.setFlags(Intent.FLAG_ACTIVITY_NEW_TASK);
                startActivity(intent);
                finish();
            }

            else
            {
                val = 0;
                //When user Choose Wrong choice
                Intent intent = new Intent( second_five_questions_questions_1.this, second_five_questions_questions_2.class);
                intent.putExtra("key", val);
                intent.addCategory(Intent.CATEGORY_HOME);
                intent.setFlags(Intent.FLAG_ACTIVITY_NEW_TASK);
                startActivity(intent);
                finish();
            }
        }

    });

    myCount=new CountDownTimer(16000, 1000) {

        public void onTick(long millisUntilFinished) {
                                                        //Error might be here
            mTextField = (TextView) findViewById(R.id.TimerClock_first_Five_Questions_Q1);
            mTextField.setText("Time left:"+millisUntilFinished / 1000);
            if(millisUntilFinished / 1000 == 5)
            {
                mTextField.setTextColor(Color.RED);
            }
        }


        public void onFinish() {
            val = 0;                                                                            // When time finish go for mainActivity
            Intent intent = new Intent( second_five_questions_questions_1.this, second_five_questions_questions_2.class);
            intent.putExtra("key", val);
            intent.addCategory(Intent.CATEGORY_HOME);
            intent.setFlags(Intent.FLAG_ACTIVITY_NEW_TASK);
            startActivity(intent);
            finish();
        }
    }.start();
}}

CustomRecyclerAdapter.java

private Context context;
private List<TestsUtils> TestsUTils;


public CustomRecyclerAdapterTests(Context context, List testutils) {

    this.context = context;
    this.TestsUTils = testutils;
}


@Override
public CustomRecyclerAdapterTests.ViewHolder onCreateViewHolder(ViewGroup parent, int viewType) {
    View v = LayoutInflater.from(parent.getContext()).inflate(R.layout.single_list_item_tests, parent, false);
    CustomRecyclerAdapterTests.ViewHolder viewHolder = new CustomRecyclerAdapterTests.ViewHolder(v);
    return viewHolder;
}


@Override
public void onBindViewHolder(CustomRecyclerAdapterTests.ViewHolder holder, int position) {

    holder.itemView.setTag(TestsUTils.get(position));
    TestsUtils pu = TestsUTils.get(position);
    holder.Subject_Title.setText(pu.GetTestName());
    holder.Subject_Description.setText(pu.GetTestSubject());
}

@Override
public int getItemCount() {
    return TestsUTils.size();
}


public class ViewHolder extends RecyclerView.ViewHolder {

    public TextView Subject_Title;
    public TextView Subject_Description;

    public ViewHolder(View itemView) {
        super(itemView);

        Subject_Title = (TextView) itemView.findViewById(R.id.Title_Single_List_Item_Tests);
        Subject_Description = (TextView) itemView.findViewById(R.id.Subject_Single_List_Item_Tests);

        itemView.setOnClickListener(new View.OnClickListener() {
            @Override
            public void onClick(View view) {

                switch (getPosition()) {
                    case 0:
                        TestsUtils obj1 = (TestsUtils) view.getTag();
                        Toast.makeText(view.getContext(), "Test-One", Toast.LENGTH_SHORT).show();
                        Intent intentone = new Intent(context, com.example.computer.policeproject.Questions_package.First_Five_Questions.first_five_Questions_questions_1.class);
                        context.startActivity(intentone);
                        break;

                    case 1:
                        TestsUtils obj2 = (TestsUtils) view.getTag();
                        Toast.makeText(view.getContext(), "Test-One", Toast.LENGTH_SHORT).show();
                        Intent intenttwo = new Intent(context, com.example.computer.policeproject.Questions_package.First_Five_Questions.first_five_Questions_questions_1.class);
                        context.startActivity(intenttwo);
                        break;
                }
            }
        });
    }

1 个答案:

答案 0 :(得分:0)

尝试添加以下内容来禁用倒计时:

myCount.cancel();

在您完成活动之前。

你的代码中的

@Override
public void onFinish() {
    val = 0;                                                                            // When time finish go for mainActivity
    Intent intent = new Intent( second_five_questions_questions_1.this, second_five_questions_questions_2.class);
    intent.putExtra("key", val);
    intent.addCategory(Intent.CATEGORY_HOME);
    intent.setFlags(Intent.FLAG_ACTIVITY_NEW_TASK);
    startActivity(intent);
    cancel(); // add this to cancel out countdown
    finish();
}