博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
Android学习第4天
阅读量:5039 次
发布时间:2019-06-12

本文共 3707 字,大约阅读时间需要 12 分钟。

Android学习第4天

代码

QuizActivaty.java

package com.bignerdranch.android.geoquiz;import android.os.Bundle;import android.support.v7.app.AppCompatActivity;import android.util.Log;import android.view.View;import android.widget.Button;import android.widget.TextView;import android.widget.Toast;public class QuizActivity extends AppCompatActivity {    private static final String TAG = "QuizActivity";    private static final String KEY_INDEX = "index";    private Button mTrueButton;    private Button mFalseButton;    private Button mNextButton;    private TextView mQuestionTextView;    private Question[] mQuestionBank = new Question[] {            new Question(R.string.question_australia, true),            new Question(R.string.question_oceans, true),            new Question(R.string.question_mideast, false),            new Question(R.string.question_africa, false),            new Question(R.string.question_americas, true),            new Question(R.string.question_asia, true),    };    private int mCurrentIndex = 0;    @Override    protected void onCreate(Bundle savedInstanceState) {        super.onCreate(savedInstanceState);        Log.d(TAG, "onCreate(Bundle) called");        setContentView(R.layout.activity_quiz);        if (savedInstanceState != null) {            mCurrentIndex = savedInstanceState.getInt(KEY_INDEX, 0);        }        mQuestionTextView = (TextView) findViewById(R.id.question_text_view);        mTrueButton = (Button) findViewById(R.id.true_button);        mTrueButton.setOnClickListener(new View.OnClickListener() {            @Override            public void onClick(View v) {                checkAnswer(true);            }        });        mFalseButton = (Button) findViewById(R.id.false_button);        mFalseButton.setOnClickListener(new View.OnClickListener() {            @Override            public void onClick(View v) {                checkAnswer(false);            }        });        mNextButton = (Button) findViewById(R.id.next_button);        mNextButton.setOnClickListener(new View.OnClickListener() {            @Override            public void onClick(View v) {                mCurrentIndex = (mCurrentIndex + 1) % mQuestionBank.length;                updateQuestion();            }        });        updateQuestion();    }    @Override    protected void onStart() {        super.onStart();        Log.d(TAG, "onStart() called");    }    @Override    protected void onResume() {        super.onResume();        Log.d(TAG, "onResume() called");    }    @Override    protected void onPause() {        super.onPause();        Log.d(TAG, "onPause() called");    }    @Override    protected void onSaveInstanceState(Bundle savedInstanceState) {        super.onSaveInstanceState(savedInstanceState);        Log.i(TAG, "onSaveInstanceState");        savedInstanceState.putInt(KEY_INDEX, mCurrentIndex);    }    @Override    protected void onStop() {        super.onStop();        Log.d(TAG, "onStop() called");    }    @Override    protected void onDestroy() {        super.onDestroy();        Log.d(TAG, "onDestroy() called");    }    private void updateQuestion() {        int question = mQuestionBank[mCurrentIndex].getTextResId();        mQuestionTextView.setText(question);    }    private void checkAnswer(boolean userPressedTrue) {        boolean answerIsTrue = mQuestionBank[mCurrentIndex].isAnswerTrue();        int messageResId = 0;        if (userPressedTrue == answerIsTrue) {            messageResId = R.string.correct_toast;        } else {            messageResId = R.string.incorrect_toast;        }        Toast.makeText(this, messageResId, Toast.LENGTH_SHORT)                .show();    }}

转载于:https://www.cnblogs.com/zhouheng0918/p/9119790.html

你可能感兴趣的文章
MySql执行分析
查看>>
git使用中的问题
查看>>
yaml文件 .yml
查看>>
linux字符集修改
查看>>
phpcms 添加自定义表单 留言
查看>>
mysql 优化
查看>>
读书笔记 ~ Nmap渗透测试指南
查看>>
WCF 配置文件
查看>>
动态调用WCF服务
查看>>
oracle导出/导入 expdp/impdp
查看>>
类指针
查看>>
css修改滚动条样式
查看>>
2018.11.15 Nginx服务器的使用
查看>>
Kinect人机交互开发实践
查看>>
百度编辑器UEditor ASP.NET示例Demo 分类: ASP.NET...
查看>>
JAVA 技术类分享(二)
查看>>
android客户端向服务器发送请求中文乱码的问
查看>>
UOJ#220. 【NOI2016】网格 Tarjan
查看>>
Symfony翻译教程已开课
查看>>
Python模块之pickle(列表,字典等复杂数据类型与二进制文件的转化)
查看>>