Android Studio实现长方体表面积计算器

 更新时间:2020年05月22日 16:56:01   作者:沐—白  
这篇文章主要为大家详细介绍了Android Studio实现长方体表面积计算器,文中示例代码介绍的非常详细,具有一定的参考价值,感兴趣的小伙伴们可以参考一下

本文实例为大家分享了Android Studio实现长方体、表面积计算器的具体代码,供大家参考,具体内容如下

写了两个方法(在我理解之中有三个方法,其中循环字符串匹配太low了,pass掉),目前先上传一个,后续补上。
针对这个问题 总共有四个文件

方法一:正则表达式

1.MainActivity.java

package com.example.flyyu.four;

import android.content.Intent;
import android.support.v7.app.AppCompatActivity;
import android.os.Bundle;
import android.view.View;
import android.widget.EditText;
import android.widget.Toast;

import java.util.regex.Pattern;

public class MainActivity extends AppCompatActivity implements View.OnClickListener{

 @Override
 protected void onCreate(Bundle savedInstanceState) {
 super.onCreate(savedInstanceState);
 setContentView(R.layout.activity_main);
 }
 @Override
 public void onClick(View v) {
 EditText a=(EditText)findViewById(R.id.editText);

 EditText b=(EditText)findViewById(R.id.editText2);

 EditText c=(EditText)findViewById(R.id.editText3);
 Intent it=new Intent(this,biapmianji.class);
 if (!isNumber(a.getText().toString())&&!isNumber(b.getText().toString())&&!isNumber(c.getText().toString())){
 it.putExtra("a",a.getText().toString());
 it.putExtra("b",b.getText().toString());
 it.putExtra("c",c.getText().toString());
 MainActivity.this.startActivity(it);
 }
 }
 public boolean isNumber(String s){

 String pattern = ".*\\D.*";

 boolean isMatch = Pattern.matches(pattern,s);
 if (isMatch||s.length()==0){
 Toast.makeText(this,"输入异常",Toast.LENGTH_SHORT).show();
 return true;
 }
 return isMatch;
 }
}

2.biapmianji.java

package com.example.flyyu.four;

import android.content.Intent;
import android.support.v7.app.AppCompatActivity;
import android.os.Bundle;
import android.view.View;
import android.widget.TextView;

public class biapmianji extends AppCompatActivity {

 @Override
 protected void onCreate(Bundle savedInstanceState) {
 super.onCreate(savedInstanceState);
 setContentView(R.layout.activity_biapmianji);
 TextView textView=(TextView)findViewById(R.id.textView4);
 Intent it=this.getIntent();
 float a=Float.valueOf(it.getStringExtra("a")) ;
 float b=Float.valueOf(it.getStringExtra("b")) ;
 float c=Float.valueOf(it.getStringExtra("c")) ;
 String s=(2*(a*b+a*c+b*c))+"";
 textView.setText("该长方体的表面积为:"+s);

// textView.setText("该长方体的表面积为:"+a);
 }


}

3.activity_biapmianji.XML

<?xml version="1.0" encoding="utf-8"?>
<android.support.constraint.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="com.example.flyyu.four.biapmianji">

 <TextView
 android:id="@+id/textView4"
 android:layout_width="wrap_content"
 android:layout_height="wrap_content"
 android:layout_marginBottom="8dp"
 android:layout_marginLeft="8dp"
 android:layout_marginRight="8dp"
 android:layout_marginTop="8dp"
 android:text="TextView"
 android:textSize="18sp"
 app:layout_constraintBottom_toBottomOf="parent"
 app:layout_constraintHorizontal_bias="0.174"
 app:layout_constraintLeft_toLeftOf="parent"
 app:layout_constraintRight_toRightOf="parent"
 app:layout_constraintTop_toTopOf="parent"
 app:layout_constraintVertical_bias="0.083" />
</android.support.constraint.ConstraintLayout>

4.activity_main.XML

<?xml version="1.0" encoding="utf-8"?>
<!--<android.support.constraint.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android"-->

<android.widget.LinearLayout 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"
 android:orientation="vertical"
 tools:context="com.example.flyyu.four.MainActivity">

 <TextView
 android:id="@+id/textView"
 android:layout_width="match_parent"
 android:layout_height="wrap_content"
 android:layout_weight="1"
 android:text="长:" />

 <EditText
 android:id="@+id/editText"
 android:layout_width="match_parent"
 android:layout_height="wrap_content"
 android:layout_weight="1"
 android:ems="10"
 android:inputType="text" />

 <TextView
 android:id="@+id/textView2"
 android:layout_width="match_parent"
 android:layout_height="wrap_content"
 android:layout_weight="1"
 android:text="宽:" />

 <EditText
 android:id="@+id/editText2"
 android:layout_width="match_parent"
 android:layout_height="wrap_content"
 android:layout_weight="1"
 android:ems="10"
 android:inputType="text" />

 <TextView
 android:id="@+id/textView3"
 android:layout_width="match_parent"
 android:layout_height="wrap_content"
 android:layout_weight="1"
 android:text="高:" />

 <EditText
 android:id="@+id/editText3"
 android:layout_width="match_parent"
 android:layout_height="wrap_content"
 android:layout_weight="1"
 android:ems="10"
 android:inputType="text" />

 <Button
 android:id="@+id/button"
 android:layout_width="match_parent"
 android:layout_height="wrap_content"
 android:layout_weight="1"
 android:onClick="onClick"
 android:text="计算" />
</android.widget.LinearLayout>

更多计算器功能实现,请点击专题: 计算器功能汇总 进行学习

关于Android计算器功能的实现,查看专题:Android计算器 进行学习。

以上就是本文的全部内容,希望对大家的学习有所帮助,也希望大家多多支持脚本之家。

相关文章

  • Android 自定义View之倒计时实例代码

    Android 自定义View之倒计时实例代码

    这篇文章主要介绍了Android 自定义View之倒计时实例代码的相关资料,大多数app在注册的时候,都有一个获取验证码的按钮,点击后,访问接口,最终用户会收到短信验证码。为了不多次写这个获取验证码的接口,下面将它自定义成一个view,方便使用,需要的朋友可以参考下
    2017-04-04
  • Android中创建子线程的方式详解

    Android中创建子线程的方式详解

    这篇文章主要介绍了几种Android中创建子线程的方法,文中有详细的代码示例供参考,对学习或工作有一定的帮助,需要的小伙伴可以参考一下
    2023-05-05
  • [Android] 通过GridView仿微信动态添加本地图片示例代码

    [Android] 通过GridView仿微信动态添加本地图片示例代码

    本篇文章主要介绍了[Android] 通过GridView仿微信动态添加本地图片示例代码,具有一定的参考价值,感兴趣的小伙伴们可以参考一下。
    2017-01-01
  • Android利用动画实现背景逐渐变暗

    Android利用动画实现背景逐渐变暗

    这篇文章主要为大家详细介绍了Android利用动画实现背景逐渐变暗的相关资料,具有一定的参考价值,感兴趣的小伙伴们可以参考一下
    2016-12-12
  • Android开发方式之Java+html+javascript混合开发

    Android开发方式之Java+html+javascript混合开发

    这篇文章主要为大家详细介绍了Android开发方式的其中一种Java+html+javascript混合开发,感兴趣的小伙伴们可以参考一下
    2016-06-06
  • 获取Android界面性能数据的快捷方法

    获取Android界面性能数据的快捷方法

    这篇文章主要介绍了获取Android界面性能数据的快捷方法,帮助大家更好的理解和学习使用Android开发,感兴趣的朋友可以了解下
    2021-04-04
  • Android自定义View实现数独游戏

    Android自定义View实现数独游戏

    这篇文章主要为大家详细介绍了Android自定义View实现数独游戏,具有一定的参考价值,感兴趣的小伙伴们可以参考一下
    2017-12-12
  • Android基于hover组件实现监控鼠标移动事件的方法

    Android基于hover组件实现监控鼠标移动事件的方法

    这篇文章主要介绍了Android基于hover组件实现监控鼠标移动事件的方法,结合实例形式分析了hover组件监控鼠标光标在view上变化的操作技巧,需要的朋友可以参考下
    2017-02-02
  • 解决Android Studio 代码自动提示突然失效的问题

    解决Android Studio 代码自动提示突然失效的问题

    这篇文章主要介绍了解决Android Studio 代码自动提示突然失效的问题,具有很好的参考价值,希望对大家有所帮助。一起跟随小编过来看看吧
    2020-03-03
  • Android实现布局动画和共享动画的结合效果

    Android实现布局动画和共享动画的结合效果

    今天给大家带来能够提升用户体验感的交互动画,使用起来非常简单,体验效果非常赞,其中仅使用到布局动画和共享动画,文章通过代码示例介绍的非常详细,感兴趣的同学可以自己动手试一试
    2023-09-09

最新评论