gpt4 book ai didi

java - 这个 'key' 和 getBooleanExtra() 在 android 中做什么?

转载 作者:搜寻专家 更新时间:2023-11-01 09:38:31 24 4
gpt4 key购买 nike

所以我试图从我的 android 书中理解这段代码:

public class CheatActivity extends AppCompatActivity {

private static final String EXTRA_ANSWER_IS_TRUE = "com.britannia.android.quiz.answer_is_true";
private boolean mAnswerIsTrue;
private TextView mAnswerTextView;
private Button mShowAnswer;

public static Intent newIntent(Context packageContext, boolean answerIsTrue) {
Intent i = new Intent(packageContext, CheatActivity.class);
i.putExtra(EXTRA_ANSWER_IS_TRUE, answerIsTrue);
return i;
}

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

mAnswerIsTrue = getIntent().getBooleanExtra(EXTRA_ANSWER_IS_TRUE, false);

mAnswerTextView = (TextView) findViewById(R.id.answerTextView);

mShowAnswer = (Button) findViewById(R.id.showAnswerButton);
mShowAnswer.setOnClickListener(new View.OnClickListener() {
@Override
public void onClick(View v) {
if (mAnswerIsTrue) {
mAnswerTextView.setText(R.string.true_button);
}
else {
mAnswerTextView.setText(R.string.false_button);
}
}
});
}

字符串 EXTRA_ANSWER_IS_TRUE 有什么用?我不明白它的目的。而在getBooleanExtra()中它有两个参数,分别是上面提到的字符串和一个false值。为什么是假的?此 Activity 的目的是显示正确或错误问题的正确答案。为什么这个值是false而不是true?

谢谢。

最佳答案

字符串 EXTRA_ANSWER_IS_TRUE 仅用于为 getBooleanExtra() 方法设置键,与在方法中设置键相同,如下所示:

getBooleanExtra("com.britannia.android.quiz.answer_is_true", false);

false 只是您从 intent extras 中获取的 boolean 值的默认值。只要 boolean 值在传递时具有正确的 true 或 false 值,就不会使用该 false 参数。 (只有当 boolean 值未声明或 null 时才会使用默认值)

关于java - 这个 'key' 和 getBooleanExtra() 在 android 中做什么?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/41371134/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com