1 , 如何使用Android设计一个09的加减乘除计算器app制作 可以学java语言…看这个,csdn搜一搜有很多的 。https://blog.csdn.net/orochi1972/article/details/78467510【计算器android编写过程,如何使用Android设计一个09的加减乘除计算器】
2,用Android eclipes 编写计算器就是在Eclipse里面新建一个Android工程 , 根据BMI的计算公式来计算,简单的布局一下,可以进行身高体重的输入,有确定按钮根据输入值进行计算就可以了 。你写完整linearlayout了吗?编辑器找不到,你看看你的最后面代码是不是缺少这个? 还有textview是不是也缺少?
3,使用gridlayout布局编写安卓简易计算器求完整代码就会package TestGridLayout;import java.awt.Button;import java.awt.Frame;import java.awt.LayoutManager;/** * * @author gyu */public static void main(String[] args)// TODO code application logic here}}import java.awt.*;/*import java.event.*;*/import java.awt.Button;public class TestGridLayoutFrame f;Button b0,b1,b2,b3,b4,b5,b6,b7,b8,b9,ba,bm,bd,be,bp;public static viod main(String argS[])TestGridLayout mygrid=new TestGridLayout(); mygrid.go();}public void go(boolean ture)f=new frame("GridLayout");f.setLayout((LayoutManager) new GridLayou(3,2));b7=new Button("7");b8=new Button("8");b9=new Button("9");bd=new Button("/");b4=new Button("4");b5=new Button("5");b6=new Button("6");bp=new Button("*");b1=new Button("1");b2=new Button("2");b3=new Button("3");bm=new Button("-");b0=new Button("0");ba=new Button("+");be=new Button("=");f.add(b7);f.add(b8);f.add(b9);f.add(bd);f.add(b4);f.add(b5);f.add(b6);f.add(bp);f.add(b1);f.add(b2);f.add(b3);f.add(bm);f.add(b0);f.add(ba);f.add(be);f.pack();f.setVisible(ture);}private void go()throw new UnsupportedOperationException("Not yet implemented");}}
4,android中怎么实现计算器用代码<?xml version="1.0" encoding="utf-8"?><LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"android:layout_width="match_parent"android:layout_height="match_parent"android:orientation="vertical" ><LinearLayout android:layout_width="fill_parent"android:layout_height="wrap_content"> <TextViewandroid:id="@+id/tvResult"android:layout_width="fill_parent"android:layout_height="wrap_content"android:height="50dp"android:text="@string/tvResult"/></LinearLayout><LinearLayout android:layout_width="fill_parent"android:layout_height="wrap_content"><Buttonandroid:id="@+id/btnBackspace"android:layout_width="wrap_content"android:layout_height="wrap_content"android:width="150dp"android:layout_marginLeft="10dp"android:text="@string/btnbackspace"/><Buttonandroid:id="@+id/btnCE"android:layout_width="wrap_content"android:layout_height="wrap_content"android:width="150dp"android:text="@string/btnCE"/></LinearLayout><LinearLayout android:layout_width="fill_parent"android:layout_height="wrap_content"><Buttonandroid:id="@+id/btn7"android:layout_width="wrap_content"android:layout_height="wrap_content"android:layout_marginLeft="10dp"android:width="75dp"android:text="@string/btn7"/><Buttonandroid:id="@+id/btn8"android:layout_width="wrap_content"android:layout_height="wrap_content"android:width="75dp"android:text="@string/btn8"/><Buttonandroid:id="@+id/btn9"android:layout_width="wrap_content"android:layout_height="wrap_content"android:width="75dp"android:text="@string/btn9"/><Buttonandroid:id="@+id/btnDiv"android:layout_width="wrap_content"android:layout_height="wrap_content"android:width="75dp"android:text="@string/btnDiv"/></LinearLayout><LinearLayout android:layout_width="fill_parent"android:layout_height="wrap_content"><Buttonandroid:id="@+id/btn4"android:layout_width="wrap_content"android:layout_height="wrap_content"android:layout_marginLeft="10dp"android:width="75dp"android:text="@string/btn4"/><Buttonandroid:id="@+id/btn5"android:layout_width="wrap_content"android:layout_height="wrap_content"android:width="75dp"android:text="@string/btn5"/><Buttonandroid:id="@+id/btn6"android:layout_width="wrap_content"android:layout_height="wrap_content"android:width="75dp"android:text="@string/btn6"/><Buttonandroid:id="@+id/btnMul"android:layout_width="wrap_content"android:layout_height="wrap_content"android:width="75dp"android:text="@string/btnMul"/></LinearLayout><LinearLayout android:layout_width="fill_parent"android:layout_height="wrap_content"><Buttonandroid:id="@+id/btn1"android:layout_width="wrap_content"android:layout_height="wrap_content"android:layout_marginLeft="10dp"android:width="75dp"android:text="@string/btn1"/><Buttonandroid:id="@+id/btn2"android:layout_width="wrap_content"android:layout_height="wrap_content"android:width="75dp"android:text="@string/btn2"/><Buttonandroid:id="@+id/btn3"android:layout_width="wrap_content"android:layout_height="wrap_content"android:width="75dp"android:text="@string/btn3"/><Buttonandroid:id="@+id/btnAdd"android:layout_width="wrap_content"android:layout_height="wrap_content"android:width="75dp"android:text="@string/btnAdd"/></LinearLayout><LinearLayout android:layout_width="fill_parent"android:layout_height="wrap_content"><Buttonandroid:id="@+id/btn0"android:layout_width="wrap_content"android:layout_height="wrap_content"android:layout_marginLeft="10dp"android:width="75dp"android:text="@string/btn0"/><Buttonandroid:id="@+id/btnC"android:layout_width="wrap_content"android:layout_height="wrap_content"android:width="75dp"android:text="@string/btnC"/><Buttonandroid:id="@+id/btnEqu"android:layout_width="wrap_content"android:layout_height="wrap_content"android:width="75dp"android:text="@string/btnEqu"/><Buttonandroid:id="@+id/btnSub"android:layout_width="wrap_content"android:layout_height="wrap_content"android:width="75dp"android:text="@string/btnSub"/></LinearLayout></LinearLayout>——————————————————————————————————————————————
推荐阅读
- 安卓车机进入开发者模式,安卓系统里进入开发者模式有什么用能干什么怎么退出为什么关
- 深职训职业培训学校怎么样,深职训学校怎么样
- stm32开发板哪家好,朋友们说说stm32开发板哪个好
- 代码编程软件图标是什么意思,C程序的图标是什么
- 简单的数控编程100例图解,求数控车床编程100例
- 找图点击软件安卓,Android系统的手机有什么图片浏览软件可以支持看图片的时候多点触
- 软件程序代码大全,代码大全软件
- 自己做app怎么赚钱,手机应用软件开发如何盈利
- 三菱plc软件安装教程图解,三菱PLC编程软件GX Developer version 886中文版怎样安装