gpt4 book ai didi

android计算器代码示例分享

转载 作者:qq735679552 更新时间:2022-09-27 22:32:09 25 4
gpt4 key购买 nike

CFSDN坚持开源创造价值,我们致力于搭建一个资源共享平台,让每一个IT人在这里找到属于你的精彩世界.

这篇CFSDN的博客文章android计算器代码示例分享由作者收集整理,如果你对这篇文章有兴趣,记得点赞哟.

复制代码 代码如下:

<?xml version="1.0" encoding="utf-8"?>
<EditText
    android:id="@+id/editText1"
    android:layout_width="match_parent"
    android:layout_height="wrap_content"
    android:ems="10" >

  。

    <requestFocus /> </EditText> 。

<Button     android:id="@+id/button1"     android:layout_width="wrap_content"     android:layout_height="wrap_content"     android:text="1" /> 。

<Button     android:id="@+id/button2"     android:layout_width="wrap_content"     android:layout_height="wrap_content"     android:text="2" /> 。

<Button     android:id="@+id/button3"     android:layout_width="wrap_content"     android:layout_height="wrap_content"     android:text="+" /> 。

<Button     android:id="@+id/button4"     android:layout_width="wrap_content"     android:layout_height="wrap_content"     android:text="=" /> 。

  。

  。

复制代码 代码如下:

package com.action;

  。

import android.R.integer; import android.app.Activity; import android.os.Bundle; import android.view.View; import android.view.View.OnClickListener; import android.widget.Button; import android.widget.EditText,

public class jspActivity extends Activity{ private Button bt1; private Button bt2; private Button btadd; private Button bteql,

private EditText et,

private int a; private int b,

private String stra=""; private String fh; protected void onCreate(Bundle savedInstanceState) {     super.onCreate(savedInstanceState);     setContentView(R.layout.jsp);     bt1=(Button) findViewById(R.id.button1);     bt2=(Button) findViewById(R.id.button2);     btadd=(Button) findViewById(R.id.button3);     bteql=(Button) findViewById(R.id.button4),

    et=(EditText) findViewById(R.id.editText1);     bt1.setOnClickListener(new sum());     bt2.setOnClickListener(new sum());     btadd.setOnClickListener(new OnClickListener() { 。

        @Override         public void onClick(View v) {             // TODO Auto-generated method stub             a=Integer.parseInt(et.getText().toString()) ;             et.setText("");             stra="";             fh=btadd.getText().toString();         }     });     bteql.setOnClickListener(new OnClickListener() { 。

        @Override         public void onClick(View v) {             // TODO Auto-generated method stub             b=Integer.parseInt(et.getText().toString()) ;             et.setText("");             stra="";             if(fh.equals("+"))             {                 int c=a+b;                 et.setText(""+c);             }         }     }); } public class sum implements OnClickListener{ 。

    @Override     public void onClick(View v) {         // TODO Auto-generated method stub         switch (v.getId()) {         case R.id.button1:             stra+=bt1.getText();             et.setText(stra);             break;         case R.id.button2:             stra+=bt2.getText();             et.setText(stra);             break,

        default:             break;         }     } } } 。

  。

最后此篇关于android计算器代码示例分享的文章就讲到这里了,如果你想了解更多关于android计算器代码示例分享的内容请搜索CFSDN的文章或继续浏览相关文章,希望大家以后支持我的博客! 。

25 4 0
文章推荐: Java中单例模式详解
文章推荐: 简单了解JAVA NIO
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com