热门标签 | HotTags
当前位置:  开发笔记 > 编程语言 > 正文

学习Android之第三个小程序计算器(Menu、Dialog)

效果如下:                                             点击菜单后:点击关于:一共建了两个包

效果如下:                                                                                      

bubuko.com,布布扣   

点击菜单后:

bubuko.com,布布扣

点击关于:

bubuko.com,布布扣


一共建了两个包(package),一个Activity,一个算法,使得代码更简洁。

使用了Menu和Dialog。


activity包中:

MainActivity.java


package cn.edu.bzu.counter.activity;
import cn.edu.bzu.counter.algorithm.Algorithm;
import cn.edu.bzu.test2.R;
import android.os.Bundle;
import android.app.Activity;
import android.app.AlertDialog;
import android.content.DialogInterface;
import android.content.DialogInterface.OnClickListener;
import android.view.Menu;
import android.view.MenuInflater;
import android.view.MenuItem;
import android.view.View;
import android.widget.Button;
import android.widget.EditText;
import android.widget.TextView;
import android.widget.Toast;

public class MainActivity extends Activity {

EditText input1;
EditText input2;
Button jia;
Button jian;
Button cheng;
Button chu;
TextView fuhao;
TextView re;
String in , in2;


@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_main);
init();
}
public void init(){
input1 = (EditText)findViewById(R.id.input_1);
input2 = (EditText)findViewById(R.id.input_2);
jia = (Button)findViewById(R.id.jia);
jian = (Button)findViewById(R.id.jian);
cheng = (Button)findViewById(R.id.cheng);
chu = (Button)findViewById(R.id.chu);
fuhao = (TextView)findViewById(R.id.fuhao);
re = (TextView)findViewById(R.id.RE);
}
public void jia(View view){
boolean b = getNumer();
if(b==false) return;//如果为空,则停止
fuhao.setText("+");
double a =Algorithm.jiafa(in, in2);
re.setText(a+"");
}
public void jian(View view){
boolean b = getNumer();
if(b==false) return;//如果为空,则停止
fuhao.setText("-");
double a =Algorithm.jianfa(in, in2);
re.setText(a+"");
}
public void cheng(View view){
boolean b = getNumer();
if(b==false) return;//如果为空,则停止
fuhao.setText("*");
double a =Algorithm.chengfa(in, in2);
re.setText(a+"");
}
public void chu(View view){
boolean b = getNumer();
if(b==false) return; //如果为空,则停止
fuhao.setText("/");
double a =Algorithm.chufa(in, in2);
re.setText(a+"");
}
/**
* 获取文本并检查是否为空
*/
public boolean getNumer(){
in = input1.getText().toString();
in2 = input2.getText().toString();
if(in.equals("")||in2.equals("")){
Toast.makeText(MainActivity.this,"请输入", Toast.LENGTH_SHORT).show();
return false;
}
return true;
}
/**
* 设置菜单的点击事件
*/
@Override
public boolean onOptionsItemSelected(MenuItem item) {

int i = item.getItemId();
switch (i) {
//点击关于,弹出对话框
case R.id.about:
AlertDialog.Builder alertDialog = new AlertDialog.Builder(MainActivity.this);
alertDialog.setTitle("说明")
.setMessage("作者:0000"+"\n"+"版本:111.0.0.0")
.setPositiveButton("确定", new OnClickListener() {
@Override
public void onClick(DialogInterface dialog, int arg1) {
dialog.dismiss();
}
}).show();

break;
case R.id.exit:
MainActivity.this.finish();
break;
}
//return super.onOptionsItemSelected(item);
return true;
}
@Override
public boolean onCreateOptionsMenu(Menu menu) {
MenuInflater inflater = getMenuInflater();
inflater.inflate(R.menu.main, menu);
return true;
}}

算法包:

package cn.edu.bzu.counter.algorithm;
import android.content.Context;
import android.widget.Toast;
public class Algorithm {

public static double jiafa(String in, String in2){
double a =Double.parseDouble(in);
double b = Double.parseDouble(in2);
return a+b;
}
public static double jianfa(String in, String in2){
double a =Double.parseDouble(in);
double b = Double.parseDouble(in2);
return a-b;
}
public static double chengfa(String in, String in2){
double a =Double.parseDouble(in);
double b = Double.parseDouble(in2);
return a*b;
}
/**
* 抛出异常,防止除数为0
*/
public static double chufa(String in, String in2) throws ArithmeticException{
double a =Double.parseDouble(in);
double b = Double.parseDouble(in2);
return a/b;
}





}

menu文件中的main.xml


android:id="@+id/about"
android:title="关于"/>
android:id="@+id/exit"
android:title="退出"/>


布局文件(使用了多个Linerlayout嵌套):


xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="vertical"
tools:cOntext=".MainActivity" >
android:layout_width="fill_parent"
android:layout_height="80dp"
android:orientation="horizontal" >
android:id="@+id/input_1"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_weight="1" />
android:id="@+id/fuhao"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_weight="1"
android:gravity="center"
android:text="+"
android:textSize="30sp" />
android:id="@+id/input_2"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_weight="1" />
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_weight="1"
android:gravity="center"
android:text="="
android:textSize="35sp" />
android:id="@+id/RE"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_weight="1" />

android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:layout_marginTop="10dp"
android:orientation="horizontal" >
android:id="@+id/jia"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_weight="1"
android:OnClick="jia"
android:text="+"
android:textSize="30dp" />
android:id="@+id/jian"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_weight="1"
android:OnClick="jian"
android:text="-"
android:textSize="30dp" />
android:id="@+id/cheng"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_weight="1"
android:OnClick="cheng"
android:text="*"
android:textSize="30dp" />
android:id="@+id/chu"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_weight="1"
android:OnClick="chu"
android:text="/"
android:textSize="30dp" />


遇到问题:

      在onOptionsItemSelected方法中,语句不报错,检测时对话框就是弹不出来,仔细观察,缺少了一个show()方法。






学习Android之第三个小程序计算器(Menu、Dialog),布布扣,bubuko.com


推荐阅读
  • 本文介绍了Java编程语言的基础知识,包括其历史背景、主要特性以及如何安装和配置JDK。此外,还详细讲解了如何编写和运行第一个Java程序,并简要介绍了Eclipse集成开发环境的安装和使用。 ... [详细]
  • 本文介绍了一种支付平台异步风控系统的架构模型,旨在为开发类似系统的工程师提供参考。 ... [详细]
  • 解决SQL Server数据库sa登录名无法连接的问题
    在安装SQL Server数据库后,使用Windows身份验证成功,但使用SQL Server身份验证时遇到问题。本文将介绍如何通过设置sa登录名的密码、启用登录名状态以及开启TCP协议来解决这一问题。 ... [详细]
  • 自动验证时页面显示问题的解决方法
    在使用自动验证功能时,页面未能正确显示错误信息。通过使用 `dump($info->getError())` 可以帮助诊断和解决问题。 ... [详细]
  • 蒜头君的倒水问题(矩阵快速幂优化)
    蒜头君将两杯热水分别倒入两个杯子中,每杯水的初始量分别为a毫升和b毫升。为了使水冷却,蒜头君采用了一种特殊的方式,即每次将第一杯中的x%的水倒入第二杯,同时将第二杯中的y%的水倒入第一杯。这种操作会重复进行k次,最终求出两杯水中各自的水量。 ... [详细]
  • 经过一年的思考,我发现自己对开发的兴趣并不浓厚,而对算法研究则更加热衷。本文将探讨开发与算法之间的本质差异,并分享我的未来学习计划。 ... [详细]
  • Bootstrap 缩略图展示示例
    本文将展示如何使用 Bootstrap 实现缩略图效果,并提供详细的代码示例。 ... [详细]
  • LDAP服务器配置与管理
    本文介绍如何通过安装和配置SSSD服务来统一管理用户账户信息,并实现其他系统的登录调用。通过图形化交互界面配置LDAP服务器,确保用户账户信息的集中管理和安全访问。 ... [详细]
  • 如果应用程序经常播放密集、急促而又短暂的音效(如游戏音效)那么使用MediaPlayer显得有些不太适合了。因为MediaPlayer存在如下缺点:1)延时时间较长,且资源占用率高 ... [详细]
  • 网络爬虫的规范与限制
    本文探讨了网络爬虫引发的问题及其解决方案,重点介绍了Robots协议的作用和使用方法,旨在为网络爬虫的合理使用提供指导。 ... [详细]
  • 本文介绍了 AngularJS 中的 $compile 服务及其用法,通过示例代码展示了如何使用 $compile 动态编译和链接 HTML 元素。 ... [详细]
  • [c++基础]STL
    cppfig15_10.cppincludeincludeusingnamespacestd;templatevoidprintVector(constvector&integer ... [详细]
  • ZooKeeper 入门指南
    本文将详细介绍ZooKeeper的工作机制、特点、数据结构以及常见的应用场景,包括统一命名服务、统一配置管理、统一集群管理、服务器动态上下线和软负载均衡。 ... [详细]
  • 本文详细介绍了如何解决DNS服务器配置转发无法解析的问题,包括编辑主配置文件和重启域名服务的具体步骤。 ... [详细]
  • 数字资产量化交易通过大数据分析,以客观的方式制定交易决策,有效减少人为的主观判断和情绪影响。本文介绍了几种常见的数字资产量化交易策略,包括搬砖套利和趋势交易,并探讨了量化交易软件的开发前景。 ... [详细]
author-avatar
PHP1.CN | 中国最专业的PHP中文社区 | DevBox开发工具箱 | json解析格式化 |PHP资讯 | PHP教程 | 数据库技术 | 服务器技术 | 前端开发技术 | PHP框架 | 开发工具 | 在线工具
Copyright © 1998 - 2020 PHP1.CN. All Rights Reserved | 京公网安备 11010802041100号 | 京ICP备19059560号-4 | PHP1.CN 第一PHP社区 版权所有