代码清单2-1 Question类中的新增代码

package com.bignerdranch.android.quize;

public class Question {
    private  int mTextResId;
    private  boolean mAnswerTrue;
    
    public Question(int textResId,boolean answerTure){
        mTextResId=textResId;
        mAnswerTrue=answerTure;
    }
}

猜你喜欢

转载自blog.csdn.net/aiwwy/article/details/80754604