android studio实现简单考试应用程序实例代码详解

一、问题

1、如图所示,设计一个包含四种题型的简单考试应用程序(具体考试题目可以选用以下设计,也可以自己另外确定),项目名称:zuoye06_666 ;(666,改成自己的实际编号)。

2、布局管理器任选(约束布局相对容易实现)。

3、“提交”按钮的Text通过字符串资源赋值,不要直接输入“提交”两个字。

4、每题按25分计算,编写相应的程序,答题完成后单击“提交”按钮,在“总得分:”右边文本框中显示实际得分;同时,显示一个Toast消息框:

答对不足3题,显示:“还需努力啊!”;

答对3题,显示:“祝贺你通过考试!”;

全部答对,显示:“你真棒!祝贺你!”

二、分析

1.这次作业比较简单,就是上课讲的东西的集合,练习spinner、checkbox、radiobutton、edittext以及button的监听,还有setText和Toast用法。

2.注意点,要考虑到正常考试的时候学生第一次选对后来改错,或者一开始选错后来改对的情况,考生的分数应该由最后一次监听到结果来确定,所以添加了boolean类型的以及checkbox的计数。

 三、代码

1.布局代码

<?xml version="1.0" encoding="utf-8"?>
<androidx.constraintlayout.widget.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android"
 xmlns:app="http://schemas.android.com/apk/res-auto"
 xmlns:tools="http://schemas.android.com/tools"
 android:layout_width="match_parent"
 android:layout_height="match_parent"
 tools:context=".MainActivity">

 <TextView
  android:id="@+id/textView2"
  android:layout_width="wrap_content"
  android:layout_height="wrap_content"
  android:text="Android基础知识测评"
  app:layout_constraintBottom_toBottomOf="parent"
  app:layout_constraintHorizontal_bias="0.498"
  app:layout_constraintLeft_toLeftOf="parent"
  app:layout_constraintRight_toRightOf="parent"
  app:layout_constraintTop_toTopOf="parent"
  app:layout_constraintVertical_bias="0.058" />

 <EditText
  android:id="@+id/et_on"
  android:layout_width="wrap_content"
  android:layout_height="wrap_content"
  android:layout_marginStart="16dp"
  android:ems="3"
  android:inputType="textPersonName"
  app:layout_constraintBottom_toBottomOf="@+id/textView"
  app:layout_constraintStart_toStartOf="parent"
  app:layout_constraintTop_toTopOf="@+id/textView"
  app:layout_constraintVertical_bias="0.615" />

 <TextView
  android:id="@+id/textView"
  android:layout_width="wrap_content"
  android:layout_height="wrap_content"
  android:layout_marginTop="20dp"
  android:text="@string/di1ti"
  app:layout_constraintStart_toEndOf="@+id/et_on"
  app:layout_constraintTop_toBottomOf="@+id/textView2" />

 <TextView
  android:id="@+id/textView3"
  android:layout_width="wrap_content"
  android:layout_height="wrap_content"
  android:layout_marginTop="20dp"
  android:text="@string/di2ti"
  app:layout_constraintStart_toStartOf="@+id/et_on"
  app:layout_constraintTop_toBottomOf="@+id/textView" />

 <RadioGroup
  android:id="@+id/radioGroup"
  android:layout_width="113dp"
  android:layout_height="64dp"
  app:layout_constraintStart_toStartOf="@+id/textView3"
  app:layout_constraintTop_toBottomOf="@+id/textView3">

  <RadioButton
   android:id="@+id/rd1"
   android:layout_width="match_parent"
   android:layout_height="wrap_content"
   android:text="开源的" />

  <RadioButton
   android:id="@+id/rd2"
   android:layout_width="match_parent"
   android:layout_height="wrap_content"
   android:text="非开源的" />
 </RadioGroup>

 <TextView
  android:id="@+id/textView4"
  android:layout_width="wrap_content"
  android:layout_height="wrap_content"
  android:layout_marginTop="20dp"
  android:text="@string/di3ti"
  app:layout_constraintStart_toStartOf="@+id/textView3"
  app:layout_constraintTop_toBottomOf="@+id/radioGroup" />

 <CheckBox
  android:id="@+id/cb2"
  android:layout_width="wrap_content"
  android:layout_height="wrap_content"
  android:layout_marginStart="60dp"
  android:text="JAVA"
  app:layout_constraintStart_toEndOf="@+id/cb1"
  app:layout_constraintTop_toBottomOf="@+id/textView4" />

 <CheckBox
  android:id="@+id/cb1"
  android:layout_width="wrap_content"
  android:layout_height="wrap_content"
  android:text="JDK"
  app:layout_constraintStart_toStartOf="@+id/textView4"
  app:layout_constraintTop_toBottomOf="@+id/textView4" />

 <CheckBox
  android:id="@+id/cb3"
  android:layout_width="wrap_content"
  android:layout_height="wrap_content"
  android:layout_marginStart="60dp"
  android:text="SDK"
  app:layout_constraintStart_toEndOf="@+id/cb2"
  app:layout_constraintTop_toBottomOf="@+id/textView4" />

 <TextView
  android:id="@+id/textView5"
  android:layout_width="wrap_content"
  android:layout_height="wrap_content"
  android:layout_marginTop="20dp"
  android:text="@string/di4ti"
  app:layout_constraintStart_toStartOf="@+id/textView4"
  app:layout_constraintTop_toBottomOf="@+id/cb1" />

 <Spinner
  android:id="@+id/spinner"
  android:layout_width="130dp"
  android:layout_height="30dp"
  android:entries="@array/Systems"
  app:layout_constraintStart_toStartOf="@+id/textView5"
  app:layout_constraintTop_toBottomOf="@+id/textView5" />

 <TextView
  android:id="@+id/textView6"
  android:layout_width="wrap_content"
  android:layout_height="wrap_content"
  android:layout_marginStart="104dp"
  android:layout_marginBottom="36dp"
  android:text="总得分:"
  app:layout_constraintBottom_toTopOf="@+id/button"
  app:layout_constraintStart_toStartOf="parent" />

 <TextView
  android:id="@+id/sorce"
  android:layout_width="wrap_content"
  android:layout_height="wrap_content"
  android:background="#F1ED06"
  android:text="   00   "
  app:layout_constraintBottom_toBottomOf="@+id/textView6"
  app:layout_constraintEnd_toEndOf="parent"
  app:layout_constraintHorizontal_bias="0.025"
  app:layout_constraintStart_toEndOf="@+id/textView6"
  app:layout_constraintTop_toTopOf="@+id/textView6"
  app:layout_constraintVertical_bias="0.0" />

 <Button
  android:id="@+id/button"
  android:layout_width="wrap_content"
  android:layout_height="wrap_content"
  android:layout_marginBottom="20dp"
  android:text="@string/subscribe"
  app:layout_constraintBottom_toBottomOf="parent"
  app:layout_constraintEnd_toEndOf="parent"
  app:layout_constraintStart_toStartOf="parent" />

</androidx.constraintlayout.widget.ConstraintLayout>

2.strings.xml

<resources>
 <string name="app_name">zuoye06_231</string>
 <string name="di1ti">年11月5日,Google发布安卓系统(答:2007)</string>
 <string name="di2ti">Android操作系统是(答:开源的)</string>
 <string name="di3ti">Android Studio 开发Android程序,还需安装:(1、3)</string>
 <string name="di4ti">Android是基于?平台手机的操作系统(Linux)</string>
 <string name="subscribe">提交</string>
</resources>

3.Systems.xml

<?xml version="1.0" encoding="utf-8"?>
<resources>
 <string-array name="Systems">
  <item>Windows</item>
  <item>Linux</item>
  <item>Mac</item>
 </string-array>
</resources>

4.java代码

package com.example.lenovo.zuoye06_231;

import androidx.appcompat.app.AppCompatActivity;

import android.os.Bundle;
import android.view.KeyEvent;
import android.view.View;
import android.widget.AdapterView;
import android.widget.Button;
import android.widget.CheckBox;
import android.widget.RadioButton;
import android.widget.RadioGroup;
import android.widget.Spinner;
import android.widget.TextView;
import android.widget.Toast;
import android.widget.CompoundButton;

public class MainActivity extends AppCompatActivity {
 static int i = 0,cb_num = 0;
 boolean rd_num = false,sp_num = false,et_num = false;
 TextView sorce;
 TextView et_on;
 RadioGroup rd;
 Button button;
 CheckBox checkBox1;
 CheckBox checkBox2;
 CheckBox checkBox3;

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

  //定义
  et_on = findViewById(R.id.et_on);
  sorce = findViewById(R.id.sorce);
  rd = findViewById(R.id.radioGroup);
  button = findViewById(R.id.button);
  checkBox1 = findViewById(R.id.cb1);
  checkBox2 = findViewById(R.id.cb2);
  checkBox3 = findViewById(R.id.cb3);

  //为每个复选按钮设置状态改变监听器
  checkBox1.setOnCheckedChangeListener(new CompoundButton.OnCheckedChangeListener(){
   @Override
   public void onCheckedChanged(CompoundButton buttonView, boolean isChecked) {
    // TODO Auto-generated method stub
    if(isChecked) cb_num++;
    else cb_num--;
   }
  });
  checkBox2.setOnCheckedChangeListener(new CompoundButton.OnCheckedChangeListener(){
   @Override
   public void onCheckedChanged(CompoundButton buttonView, boolean isChecked) {
    // TODO Auto-generated method stub
    if(isChecked) cb_num--;
    else cb_num++;
   }
  });
  checkBox3.setOnCheckedChangeListener(new CompoundButton.OnCheckedChangeListener(){
   @Override
   public void onCheckedChanged(CompoundButton buttonView, boolean isChecked) {
    // TODO Auto-generated method stub
    if(isChecked) cb_num++;
    else cb_num--;
   }
  });

  //设置单选按钮组添加事件监听
  rd.setOnCheckedChangeListener(new RadioGroup.OnCheckedChangeListener() {

   @Override
   public void onCheckedChanged(RadioGroup group, int checkedId) {
    //获取被选择的单选按钮
    RadioButton r = (RadioButton) findViewById(checkedId);
    if(r.getText().equals("开源的")) rd_num = true;
    else rd_num = false;
   }
  });

  //edittext监听
  et_on.setOnEditorActionListener(new TextView.OnEditorActionListener() {
   @Override
   public boolean onEditorAction(TextView textView, int i, KeyEvent keyEvent) {
    if(et_on.getText().toString().equals("2007")) et_num = true;
    else et_num = false;
    return false;
   }
  });

  //获取下拉列表对象
  final Spinner spinner = (Spinner) findViewById(R.id.spinner);
  //为Spinner添加选择监听器
  spinner.setOnItemSelectedListener(new AdapterView.OnItemSelectedListener() {
   @Override
   //数据选择事件处理
   public void onItemSelected(AdapterView<?> parent, View view, int pos, long id) {
    String[] Systems = getResources().getStringArray(R.array.Systems);
    //显示选择结果
    if(Systems[pos].equals("Linux")) sp_num = true;
    else sp_num = false;
   }
   //以下方法重写必须有
   @Override
   public void onNothingSelected(AdapterView<?> parent) {
    // Another interface callback
   }
  });

  button.setOnClickListener(new View.OnClickListener() {
   @Override
   public void onClick(View v) {
    if(cb_num == 2) i++;
    if(sp_num) i++;
    if(et_num) i++;
    if(rd_num) i++;
    sorce.setText("   "+(i*25)+"   ");
    if(i == 4)
     Toast.makeText(MainActivity.this,"你真棒!祝贺你!", Toast.LENGTH_SHORT).show();
    else if(i == 3)
     Toast.makeText(MainActivity.this,"祝贺你通过考试!", Toast.LENGTH_SHORT).show();
    else
     Toast.makeText(MainActivity.this,"还需努力啊!", Toast.LENGTH_SHORT).show();
   }
  });
 }
}

四、结论

1.当用户填写的时候最终答案是按最后修改的来确定的。

2.考虑到正常情况下当用户提交后数据已经上传到网络上,所以没有添加不能二次修改的代码,因此测试的时候会出现第一次提交后不退出,修改后结果会出问题。

五、参考文章

3.29更新
如果想要解决不能2次修改问题可以加一个状态标志符。

如果想要解决二次提交后累加的问题,可以在Toast后加一个i=0。

到此这篇关于android studio实现简单考试应用程序的文章就介绍到这了,更多相关android studio实现 考试应用程序内容请搜索我们以前的文章或继续浏览下面的相关文章希望大家以后多多支持我们!

(0)

相关推荐

  • 使用Android studio编写一个小的jni程序

     1.简单介绍一下NDK和JNI NDK:NDK是Native Development Kit的缩写,是Google提供的一套工具集,可以让你其他语言(C.C++或汇编)开发 Android的 JNI.NDK可以编译多平台的so,开发人员只需要简单修改 mk 文件说明需要的平台,不需要改动任何代码,NDK就可以帮你编译出所需的so库. JNI:JNI是Java Native Interface的缩写,它提供了若干的API实现了Java和其他语言的通信(主要是C&C++) 2.打开Android

  • Android Studio将程序打包成APK的步骤详解

    第一步:先点击Build选择GenerateSigned APK 第二步:如果之前有编译成APK的话,就直接选择Choose existing已经存在的key:如果没有编译成APK那就选择Create new创建一个新的key的存放路径,然后填上密码,其中First and Last Name填一下,其他的无所谓.如图 尽量保证图中所指的两处密码相同,这样可以避免混淆,然后点击ok.下图的红圈之内填的是存储key的文件名. 做完上述的操作,会返回下图,然后点击next 接下来,一定要点击下图标记

  • Android Studio与SVN版本控制程序的协作使用指南

    AndroidStudio 的SVN 安装和使用方法与我以前用的其他IDE 都有很大差别,感觉特麻烦,网上相关资料很少,貌似现在 Git 比较流行,之前有用过 github 但是他只能是开源项目免费,下面总结最近自己安装和使用 SVN 的一些经验总结: 如果遇到 ignore 或其他设置无效等意外情况,可以尝试重启 androidstudio 或执行下 svn 的 update 试试 一.安装配置: 以前使用 ZendStudio 等等都是直接安装插件就可以了,但这里不行,需要自己独立安装带有

  • 解决Android studio Error:(30, 31) 错误: 程序包 不存在的问题

    一.修复bug 记录这个bug,不是说这个问题有多么难,而是在解决之前,尝试了很多办法,它是一个不断试错的过程,比如: 多次的 clean project/ rebuild project: 查看主项目下的build/ 查看编译之后的.class 文件,发现并不存在library 的编译代码: 尝试了将library 的包名重新命名.先删除,然后添加进来: 试了很多办法,当然都没有用,最后搜索才发现是和混淆有关,于是将library 的混淆关闭,再编译就ok ,如下: buildTypes {

  • Android Studio 中运行 groovy 程序的方法图文详解

    Groovy简介 Groovy是一种基于JVM(Java虚拟机)的敏捷开发语言,它结合了Python.Ruby和Smalltalk的许多强大的特性,Groovy 代码能够与 Java 代码很好地结合,也能用于扩展现有代码.由于其运行在 JVM 上的特性,Groovy也可以使用其他非Java语言编写的库. Groovy 是 用于Java虚拟机的一种敏捷的动态语言,它是一种成熟的面向对象编程语言,既可以用于面向对象编程,又可以用作纯粹的脚本语言.使用该种语言不必编写过多的代码,同时又具有闭包和动态语

  • android studio实现简单考试应用程序实例代码详解

    一.问题 1.如图所示,设计一个包含四种题型的简单考试应用程序(具体考试题目可以选用以下设计,也可以自己另外确定),项目名称:zuoye06_666 :(666,改成自己的实际编号). 2.布局管理器任选(约束布局相对容易实现). 3."提交"按钮的Text通过字符串资源赋值,不要直接输入"提交"两个字. 4.每题按25分计算,编写相应的程序,答题完成后单击"提交"按钮,在"总得分:"右边文本框中显示实际得分:同时,显示一个T

  • Android Studio实现简单音乐播放功能的示例代码

    项目要求 基于Broadcast,BroadcastReceiver等与广播相关的知识实现简单的音乐播放功能,包括音乐的播放.暂停.切换.进度选择.音量调整. 设计效果 (进度条时间刷新功能还没有实现) 实现思路 音乐服务端负责播放音乐和收发广播的功能.当音乐服务端作为接收器时,只能接收到主页面广播的控制消息:作为发送器时,向主页面发送歌曲信息更新的消息 主页面负责进度条以及音量按钮的监听,同时也有收发广播的功能.当主页面作为接收器时,只能接收到音乐服务端广播的歌曲信息更新的消息:作为发送器时,

  • Android快速开发系列 10个常用工具类实例代码详解

    打开大家手上的项目,基本都会有一大批的辅助类,今天特此整理出10个基本每个项目中都会使用的工具类,用于快速开发~~在此感谢群里给我发项目中工具类的兄弟/姐妹~ 1.日志工具类L.java package com.zhy.utils; import android.util.Log; /** * Log统一管理类 * * * */ public class L { private L() { /* cannot be instantiated */ throw new UnsupportedOpe

  • Android Studio搜索功能(查找功能)及快捷键图文详解

    1.在当前窗口查找文本[Ctrl+F] F3 向下查找关键字出现位置 Shift+F3 向上一个关键字出现位置 2.在当前工程内查找文本[Ctrl+Shift+F] 先会弹出一个对话框,直接点击[find],开始在整个工程内查找该字符串 查找结果如下: 3.查找类[Ctrl+N] 4.查找文件[Ctrl+Shift+N] 5.查找项目中的方法或变量[Ctrl+Shift+Alt+N] 6.查找类/方法/变量引用的地方 先定位光标 右键选择"Find Usages"(快捷键Alt+F7)

  • Android自定义指示器时间轴效果实例代码详解

    指示器时间轴在外卖.购物类的APP里会经常用到,效果大概就像下面这样,看了网上很多文章,大都是自己绘制,太麻烦,其实通过ListView就可以实现. 在Activity关联的布局文件activity_main.xml中放置一个ListView,代码如下.由于这个列表只是用于展示信息,并不需要用户去点击,所以将其clickable属性置为false:为了消除ListView点击产生的波纹效果,我们设置其listSelector属性的值为透明:我们不需要列表项之间的分割线,所以设置其divider属

  • Android实现状态栏和虚拟按键背景颜色的变化实例代码详解

    今天介绍一下,我在项目开发过程中,实现状态栏和虚拟按键背景颜色变化的方法,实现方式是,通过隐藏系统的状态栏和虚拟按键的背景,实现图片和背景显示到状态栏和虚拟按键下方.下面来看实现代码: 实现状态栏背景的设置 状态栏工具类 public class StatusBarUtil { /** * 设置沉浸式状态栏 * * @param activity 需要设置的activity */ public static void setTransparent(Activity activity) { //A

  • 微信小程序蓝牙连接小票打印机实例代码详解

    1.连接蓝牙 (第一次发表博客) 第一步打开蓝牙并搜索附近打印机设备// startSearch: function() { var that = this wx.openBluetoothAdapter({ success: function(res) { wx.getBluetoothAdapterState({ success: function(res) { if (res.available) { if (res.discovering) { wx.stopBluetoothDevic

  • Android Studio 如何删除/新建一个module(图文教程详解)

    一.删除一个module PS:此方法也会将该module从你的硬盘中删除 如果直接右键会发现没有delete选项 1.选中想要删除的module,右键点击Open Module Settings选项 2.选中移除 3.点击yes 4.注意点击ok 5.小绿点消失说明操作成功啦 6.右键delete 二.新建一个module 1.file-new–new module 2.选择新建的moudle类型 3.编辑应用名称和module名称 4.可直接finish不做修改 附页 1.Android s

  • Android Studio 中aidl的自定义类的使用详解

    自己折腾了好久,记录一下. service端: 1:创建类Dog,需要实现Parcelable接口: 2:aidl下创建 Dog.aidl,里面两句话就可以了 (1)package s包名; (2)parcelable Dog; 3:interface.aidl引入Dog类, import s包名.Dog; Client 端: 1:创建类Dog,需要实现Parcelable接口: 2:aidl下创建 Dog.aidl, (1)package c包名; (2)parcelable Dog; 注意:

  • Android 倒计时控件 CountDownView的实例代码详解

    一个精简可自定义的倒计时控件,使用 Canvas.drawArc() 绘制.实现了应用开屏页的圆环扫过的进度条效果. 代码见https://github.com/hanjx-dut/CountDownView 使用 allprojects { repositories { ... maven { url 'https://jitpack.io' } } } dependencies { implementation 'com.github.hanjx-dut:CountDownView:1.1'

随机推荐