簡體   English   中英

在TextView上運行時Button上的setText不起作用

[英]setText on Buttons not working while on TextView working

這是我的Firebase數據庫結構: 在此處輸入圖像描述

我對Java還是很陌生,並試圖找出解決方法。 因此,到目前為止,我一直在制作Quiz應用程序,但我無法從Firebase RealTime數據庫檢索數據,但一切正常。

我的布局:我有一個TextView來顯示問題4個按鈕以顯示用戶可以選擇的選項當用戶單擊按鈕時,按鈕顏色會變為紅色或綠色,具體取決於問題答案是否正確或沒有。 我為計時器添加了另一個textView,它被忽略了

我只能檢索問題textView的數據,但是按鈕不顯示任何內容

我的問題類別:

    package com.example.android.quizapp;
public class Question
{
    public String question,option1,option2,option3,option4,answer;

    public Question(String question,String option1,String option2,String option3,String option4,String answer)
    {
        this.question=question;
        this.option1=option1;
        this.option2=option2;
        this.option3=option3;
        this.option4=option4;
        this.answer=answer;
    }

    public Question()
    {

    }

    public String getQuestion() {
        return question;
    }

    public void setQuestion(String question) {
        this.question = question;
    }

    public String getOption1() {
        return option1;
    }

    public void setOption1(String option1) {
        this.option1 = option1;
    }

    public String getOption2() {
        return option2;
    }

    public void setOption2(String option2) {
        this.option2 = option2;
    }

    public String getOption3() {
        return option3;
    }

    public void setOption3(String option3) {
        this.option3 = option3;
    }

    public String getOption4() {
        return option4;
    }

    public void setOption4(String option4) {
        this.option4 = option4;
    }

    public String getAnswer() {
        return answer;
    }

    public void setAnswer(String answer) {
        this.answer = answer;
    }
}

我的問題java活動類:

package com.example.android.quizapp;
import android.app.VoiceInteractor;
import android.graphics.Color;
import android.graphics.Path;
import android.os.Handler;
import android.support.annotation.NonNull;
import android.support.v7.app.AppCompatActivity;
import android.os.Bundle;
import android.view.View;
import android.widget.Button;
import android.widget.TextView;
import android.widget.Toast;

import com.google.firebase.database.DataSnapshot;
import com.google.firebase.database.DatabaseError;
import com.google.firebase.database.DatabaseReference;
import com.google.firebase.database.FirebaseDatabase;
import com.google.firebase.database.ValueEventListener;

public class questions extends AppCompatActivity
{
    TextView txtquestions,timer;
    Button OptionA,OptionB,OptionC,OptionD;
    int total=0;
    int correct=0;
    int wrong=0;

    DatabaseReference reference;

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

        txtquestions=(TextView)findViewById(R.id.Questions);
        OptionA=(Button)findViewById(R.id.OptionA);
        OptionB=(Button)findViewById(R.id.OptionB);
        OptionC=(Button)findViewById(R.id.OptionC);
        OptionD=(Button)findViewById(R.id.OptionD);
        timer=(TextView)findViewById(R.id.timer);

        updateQuestions();
    }

    private void updateQuestions()
    {
        total++;
        if(total>2)
        {
            //open the result activity
            Toast.makeText(questions.this,"Done",Toast.LENGTH_SHORT).show();
        }
        else
        {
            reference=FirebaseDatabase.getInstance().getReference().child("questions").child(String.valueOf(total));
            reference.addValueEventListener((new ValueEventListener()
            {
                @Override
                public void onDataChange(@NonNull DataSnapshot dataSnapshot)
                {
                    final Question question=dataSnapshot.getValue(Question.class);
                    txtquestions.setText(question.getQuestion());
                    OptionA.setText(question.getOption1());
                    OptionB.setText(question.getOption2());
                    OptionC.setText(question.getOption3());
                    OptionD.setText(question.getOption4());

                    OptionA.setOnClickListener(new View.OnClickListener()
                    {
                        @Override
                        public void onClick(View v)
                        {
                            if(OptionA.getText().toString().equals(question.getAnswer()))
                            {
                                OptionA.setBackgroundColor(Color.GREEN);
                                Handler handler=new Handler();
                                handler.postDelayed(new Runnable()
                                {
                                    @Override
                                    public void run()
                                    {
                                        correct++;
                                        OptionA.setBackgroundColor(Color.parseColor("#03A9F4"));
                                        updateQuestions();
                                    }
                                },1500);
                            }
                            else
                                {
                                //answer if wrong...we will find the correct answer and make it green
                                    wrong++;
                                    OptionA.setBackgroundColor(Color.RED);
                                    if(OptionB.getText().toString().equals(question.getAnswer()))
                                    {
                                        OptionB.setBackgroundColor(Color.GREEN);
                                    }
                                    else if(OptionC.getText().toString().equals(question.getAnswer()))
                                    {
                                        OptionC.setBackgroundColor(Color.GREEN);
                                    }
                                    else if(OptionD.getText().toString().equals(question.getAnswer()))
                                    {
                                        OptionD.setBackgroundColor(Color.GREEN);
                                    }

                                    //Replace all the colors and update the question
                                    Handler handler=new Handler();
                                    handler.postDelayed(new Runnable()
                                    {
                                        @Override
                                        public void run()
                                        {
                                            OptionA.setBackgroundColor(Color.parseColor("#FDCC12"));
                                            OptionB.setBackgroundColor(Color.parseColor("#FDCC12"));
                                            OptionC.setBackgroundColor(Color.parseColor("#FDCC12"));
                                            OptionD.setBackgroundColor(Color.parseColor("#FDCC12"));
                                            updateQuestions();
                                        }
                                    },1500);
                            }
                        }
                    });

                    OptionB.setOnClickListener(new View.OnClickListener()
                    {
                        @Override
                        public void onClick(View v)
                        {
                            if(OptionB.getText().toString().equals(question.getAnswer()))
                            {
                                OptionB.setBackgroundColor(Color.GREEN);
                                Handler handler=new Handler();
                                handler.postDelayed(new Runnable()
                                {
                                    @Override
                                    public void run()
                                    {
                                        correct++;
                                        OptionB.setBackgroundColor(Color.parseColor("#03A9F4"));
                                        updateQuestions();
                                    }
                                },1500);
                            }
                            else
                            {
                                //answer if wrong...we will find the correct answer and make it green
                                wrong++;
                                OptionB.setBackgroundColor(Color.RED);
                                if(OptionA.getText().toString().equals(question.getAnswer()))
                                {
                                    OptionA.setBackgroundColor(Color.GREEN);
                                }
                                else if(OptionC.getText().toString().equals(question.getAnswer()))
                                {
                                    OptionC.setBackgroundColor(Color.GREEN);
                                }
                                else if(OptionD.getText().toString().equals(question.getAnswer()))
                                {
                                    OptionD.setBackgroundColor(Color.GREEN);
                                }

                                //Replace all the colors and update the questions
                                Handler handler=new Handler();
                                handler.postDelayed(new Runnable()
                                {
                                    @Override
                                    public void run()
                                    {
                                        OptionA.setBackgroundColor(Color.parseColor("#FDCC12"));
                                        OptionB.setBackgroundColor(Color.parseColor("#FDCC12"));
                                        OptionC.setBackgroundColor(Color.parseColor("#FDCC12"));
                                        OptionD.setBackgroundColor(Color.parseColor("#FDCC12"));
                                        updateQuestions();
                                    }
                                },1500);

                            }
                        }
                    });

                    OptionC.setOnClickListener(new View.OnClickListener()
                    {
                        @Override
                        public void onClick(View v)
                        {
                            if(OptionC.getText().toString().equals(question.getAnswer()))
                            {
                                OptionC.setBackgroundColor(Color.GREEN);
                                Handler handler=new Handler();
                                handler.postDelayed(new Runnable()
                                {
                                    @Override
                                    public void run()
                                    {
                                        correct++;
                                        OptionC.setBackgroundColor(Color.parseColor("#03A9F4"));
                                        updateQuestions();
                                    }
                                },1500);
                            }
                            else
                            {
                                //answer if wrong...we will find the correct answer and make it green
                                wrong++;
                                OptionC.setBackgroundColor(Color.RED);
                                if(OptionA.getText().toString().equals(question.getAnswer()))
                                {
                                    OptionA.setBackgroundColor(Color.GREEN);
                                }
                                else if(OptionB.getText().toString().equals(question.getAnswer()))
                                {
                                    OptionB.setBackgroundColor(Color.GREEN);
                                }
                                else if(OptionD.getText().toString().equals(question.getAnswer()))
                                {
                                    OptionD.setBackgroundColor(Color.GREEN);
                                }

                                //Replace all the colors and update the questions
                                Handler handler=new Handler();
                                handler.postDelayed(new Runnable()
                                {
                                    @Override
                                    public void run()
                                    {
                                        OptionA.setBackgroundColor(Color.parseColor("#FDCC12"));
                                        OptionB.setBackgroundColor(Color.parseColor("#FDCC12"));
                                        OptionC.setBackgroundColor(Color.parseColor("#FDCC12"));
                                        OptionD.setBackgroundColor(Color.parseColor("#FDCC12"));
                                        updateQuestions();
                                    }
                                },1500);

                            }
                        }
                    });

                    OptionD.setOnClickListener(new View.OnClickListener()
                    {
                        @Override
                        public void onClick(View v)
                        {
                            if(OptionD.getText().toString().equals(question.getAnswer()))
                            {
                                OptionD.setBackgroundColor(Color.GREEN);
                                Handler handler=new Handler();
                                handler.postDelayed(new Runnable()
                                {
                                    @Override
                                    public void run()
                                    {
                                        correct++;
                                        OptionD.setBackgroundColor(Color.parseColor("#03A9F4"));
                                        updateQuestions();
                                    }
                                },1500);
                            }
                            else
                            {
                                //answer if wrong...we will find the correct answer and make it green
                                wrong++;
                                OptionD.setBackgroundColor(Color.RED);
                                if(OptionA.getText().toString().equals(question.getAnswer()))
                                {
                                    OptionA.setBackgroundColor(Color.GREEN);
                                }
                                else if(OptionB.getText().toString().equals(question.getAnswer()))
                                {
                                    OptionB.setBackgroundColor(Color.GREEN);
                                }
                                else if(OptionC.getText().toString().equals(question.getAnswer()))
                                {
                                    OptionC.setBackgroundColor(Color.GREEN);
                                }

                                //Replace all the colors and update the questions
                                Handler handler=new Handler();
                                handler.postDelayed(new Runnable()
                                {
                                    @Override
                                    public void run()
                                    {
                                        OptionA.setBackgroundColor(Color.parseColor("#FDCC12"));
                                        OptionB.setBackgroundColor(Color.parseColor("#FDCC12"));
                                        OptionC.setBackgroundColor(Color.parseColor("#FDCC12"));
                                        OptionD.setBackgroundColor(Color.parseColor("#FDCC12"));
                                        updateQuestions();
                                    }
                                },1500);

                            }
                        }
                    });
                }

                @Override
                public void onCancelled(@NonNull DatabaseError databaseError)
                {

                }
            }));
        }
    }
}

我只希望Buttons能夠顯示Firebase數據庫中的數據,並且顏色能夠正常工作,因為現在當它們按下時它們都變成紅色

問題解決了,我只需要將JSON文件導入到數據庫中,而不是從Firebase數據庫創建它即可

不知道這個問題,但是您可以簡單地以字符串形式獲取值,而不是可以使用string變量來設置Text。 像那樣:

String A, B, C, D;

A = question.getOption1();
B = question.getOption2();
C = question.getOption3();
D = question.getOption4();

OptionA.setText(A);
OptionB.setText(B);
OptionC.setText(C);
OptionD.setText(D);

只是一個建議,它將為您工作。

您確定從數據庫檢索的選項具有值嗎? 由於您沒有在從數據庫檢索數據的代碼中提供更多詳細信息,因此請檢查您的選項是否具有以下值:

Log.i("OptionA value: ", question.getOption1());    

檢查您的日志並告訴我們您看到了什么。 您的OptionButtons文本似乎為空。 所有按鈕都變為紅色是正常現象,因為將答案與null進行比較。

暫無
暫無

聲明:本站的技術帖子網頁,遵循CC BY-SA 4.0協議,如果您需要轉載,請注明本站網址或者原文地址。任何問題請咨詢:yoyou2525@163.com.

 
粵ICP備18138465號  © 2020-2024 STACKOOM.COM