赞
踩
目录
因为我本人觉得这种看起来整齐的页面用线性布局更加简单理解,故我均采用了线性布局。当然利用其他布局也可以完成。
界面展示:
主活动页面:
科学计算器
程序计算器
代码实现:
后端代码:
MainActivity.java:
- package com.example.mytest_1;
-
- import androidx.appcompat.app.AppCompatActivity;
-
- import android.content.Intent;
- import android.os.Bundle;
- import android.view.View;
- import android.widget.Button;
-
- public class MainActivity extends AppCompatActivity implements View.OnClickListener {
-
- private Button button1;
- private Button button2;
- private Button button3;
-
- @Override
- protected void onCreate(Bundle savedInstanceState) {
- super.onCreate(savedInstanceState);
- setContentView(R.layout.activity_main);
- button1 = (Button) findViewById(R.id.button1);
- button2 = (Button) findViewById(R.id.button2);
- button3 = (Button) findViewById(R.id.button3);
-
- //设置监听器
- button1.setOnClickListener(this);
- button2.setOnClickListener(this);
- button3.setOnClickListener(this);
- }
-
- @Override
- public void onClick(View view) {
- //书写逻辑:利用显式intent实现页面的跳转
- //获取按钮id,分别跳转不同的页面
- switch (view.getId()) {
- case R.id.button1:
- Intent in1 = new Intent(MainActivity.this, SimpleCalculator.class);
- startActivity(in1);
- break;
- case R.id.button2:
- Intent in2 = new Intent(MainActivity.this, ScientificCalculator.class);
- startActivity(in2);
- break;
- case R.id.button3:
- Intent in3 = new Intent(MainActivity.this, ProgramCalculator.class);
- startActivity(in3);
- break;
- default:
- break;
- }
- }
- }
ProgramCalculator.java
- package com.example.mytest_1;
-
- import androidx.appcompat.app.AppCompatActivity;
-
- import android.os.Bundle;
-
- public class ProgramCalculator extends AppCompatActivity {
-
- @Override
- protected void onCreate(Bundle savedInstanceState) {
- super.onCreate(savedInstanceState);
- setContentView(R.layout.activity_program_calculator);
- }
- }
ScientificCalculator.java
- package com.example.mytest_1;
-
- import androidx.appcompat.app.AppCompatActivity;
-
- import android.os.Bundle;
-
- public class ScientificCalculator extends AppCompatActivity {
-
- @Override
- protected void onCreate(Bundle savedInstanceState) {
- super.onCreate(savedInstanceState);
- setContentView(R.layout.activity_scientific_calculator);
- }
- }
SimpleCalculator.java
- package com.example.mytest_1;
-
- import androidx.appcompat.app.AppCompatActivity;
-
- import android.os.Bundle;
-
- public class SimpleCalculator extends AppCompatActivity {
-
- @Override
- protected void onCreate(Bundle savedInstanceState) {
- super.onCreate(savedInstanceState);
- setContentView(R.layout.activity_simple_calculator);
- }
- }
前端代码:
主活动
- <?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">
-
- <TextView
- android:layout_width="match_parent"
- android:layout_height="wrap_content"
- android:text="实验一:设计三种计算器的UI"
- android:gravity="center"
- android:textColor="#FF0000"
- android:textSize="26sp" />
-
- <Button
- android:id="@+id/button1"
- android:layout_width="match_parent"
- android:layout_height="wrap_content"
- android:text="简单计算器" />
-
- <Button
- android:id="@+id/button2"
- android:layout_width="match_parent"
- android:layout_height="wrap_content"
- android:text="科学计算器" />
-
- <Button
- android:id="@+id/button3"
- android:layout_width="match_parent"
- android:layout_height="wrap_content"
- android:text="程序计算器" />
-
-
- </LinearLayout>
程序计算器
- <?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="match_parent"
- android:layout_height="0dp"
- android:layout_marginBottom="10dp"
- android:layout_weight="1"
- android:orientation="vertical">
-
- <TextView
- android:layout_width="match_parent"
- android:layout_height="match_parent"
- android:background="@drawable/my_border"
- android:gravity="center|right"
- android:hint="0 "
- android:textSize="56sp" />
-
- </LinearLayout>
-
- <!-- 单选1-->
- <LinearLayout
- android:layout_width="match_parent"
- android:layout_height="0dp"
- android:layout_marginTop="10dp"
- android:layout_weight="1"
- android:orientation="vertical">
-
- <RadioGroup
- android:layout_width="match_parent"
- android:layout_height="match_parent"
- android:background="@drawable/my_border"
- android:orientation="horizontal">
-
- <RadioButton
- android:layout_width="0dp"
- android:layout_height="match_parent"
- android:layout_weight="1"
- android:text="十六进制"
- android:textSize="25dp" />
-
- <RadioButton
- android:layout_width="0dp"
- android:layout_height="match_parent"
- android:layout_weight="1"
- android:text="十进制"
- android:textSize="25dp" />
-
- <RadioButton
- android:layout_width="0dp"
- android:layout_height="match_parent"
- android:layout_weight="1"
- android:text="八进制"
- android:textSize="25dp" />
-
- <RadioButton
- android:layout_width="0dp"
- android:layout_height="match_parent"
- android:layout_weight="1"
- android:text="二进制"
- android:textSize="25dp" />
- </RadioGroup>
-
- </LinearLayout>
-
- <!-- 单选2-->
- <LinearLayout
- android:layout_width="match_parent"
- android:layout_height="0dp"
- android:layout_marginTop="10dp"
- android:layout_weight="1"
- android:orientation="vertical">
-
- <RadioGroup
- android:layout_width="match_parent"
- android:layout_height="match_parent"
- android:background="@drawable/my_border"
- android:orientation="horizontal">
-
- <RadioButton
- android:layout_width="0dp"
- android:layout_height="match_parent"
- android:layout_weight="1"
- android:text="八字节"
- android:textSize="25dp" />
-
- <RadioButton
- android:layout_width="0dp"
- android:layout_height="match_parent"
- android:layout_weight="1"
- android:text="四字节"
- android:textSize="25dp" />
-
- <RadioButton
- android:layout_width="0dp"
- android:layout_height="match_parent"
- android:layout_weight="1"
- android:text="二字节"
- android:textSize="25dp" />
-
- <RadioButton
- android:layout_width="0dp"
- android:layout_height="match_parent"
- android:layout_weight="1"
- android:text="单字节"
- android:textSize="25dp" />
- </RadioGroup>
-
- </LinearLayout>
-
- <LinearLayout
- android:layout_width="match_parent"
- android:layout_height="wrap_content"
- android:orientation="vertical">
-
-
- <!--上最外层-->
- <LinearLayout
- android:layout_width="match_parent"
- android:layout_height="wrap_content"
- android:layout_weight="3"
- android:background="@drawable/my_border"
- android:orientation="vertical">
-
-
- <!--上-第一行-->
- <LinearLayout
- android:layout_width="match_parent"
- android:layout_height="wrap_content"
- android:orientation="horizontal">
-
- <Button
- android:layout_width="0dp"
- android:layout_height="wrap_content"
- android:layout_marginLeft="10dp"
- android:layout_marginRight="10dp"
- android:layout_weight="1"
- android:text="NOT" />
-
- <Button
- android:layout_width="0dp"
- android:layout_height="wrap_content"
- android:layout_marginRight="10dp"
- android:layout_weight="1"
- android:text="AND" />
-
- <Button
- android:layout_width="0dp"
- android:layout_height="wrap_content"
- android:layout_marginRight="10dp"
- android:layout_weight="1"
- android:text="OR" />
-
- <Button
- android:layout_width="0dp"
- android:layout_height="wrap_content"
- android:layout_marginRight="10dp"
- android:layout_weight="1"
- android:text="XOR" />
- </LinearLayout>
- <!--上-第二行-->
- <LinearLayout
- android:layout_width="match_parent"
- android:layout_height="wrap_content"
- android:orientation="horizontal">
-
- <Button
- android:layout_width="0dp"
- android:layout_height="wrap_content"
- android:layout_marginLeft="10dp"
- android:layout_marginRight="10dp"
- android:layout_weight="1"
- android:text="循环左移" />
-
- <Button
- android:layout_width="0dp"
- android:layout_height="wrap_content"
- android:layout_marginRight="10dp"
- android:layout_weight="1"
- android:text="循环右移" />
-
- <Button
- android:layout_width="0dp"
- android:layout_height="wrap_content"
- android:layout_marginRight="10dp"
- android:layout_weight="1"
- android:text="左 移" />
-
- <Button
- android:layout_width="0dp"
- android:layout_height="wrap_content"
- android:layout_marginRight="10dp"
- android:layout_weight="1"
- android:text="M O D" />
- </LinearLayout>
- <!--上-第三行-->
- <LinearLayout
- android:layout_width="match_parent"
- android:layout_height="wrap_content"
- android:orientation="horizontal">
-
- <Button
- android:layout_width="0dp"
- android:layout_height="wrap_content"
- android:layout_marginLeft="10dp"
- android:layout_marginRight="10dp"
- android:layout_weight="1"
- android:text="无符号左移" />
-
- <Button
- android:layout_width="0dp"
- android:layout_height="wrap_content"
- android:layout_marginRight="10dp"
- android:layout_weight="1"
- android:text="无符号右移" />
-
-
- </LinearLayout>
-
-
-
- </LinearLayout>
-
- <!--下最外层-->
- <LinearLayout
- android:layout_width="match_parent"
- android:layout_height="wrap_content"
- android:layout_weight="6"
- android:background="@drawable/my_border"
- android:orientation="vertical">
- <!--下-第一行-->
- <LinearLayout
- android:layout_width="match_parent"
- android:layout_height="wrap_content"
- android:orientation="horizontal">
-
- <Button
- android:layout_width="0dp"
- android:layout_height="wrap_content"
- android:layout_marginLeft="10dp"
- android:layout_marginRight="10dp"
- android:layout_weight="1"
- android:text="退格" />
-
- <Button
- android:layout_width="0dp"
- android:layout_height="wrap_content"
- android:layout_marginRight="10dp"
- android:layout_weight="1"
- android:text="清除" />
-
- <Button
- android:layout_width="0dp"
- android:layout_height="wrap_content"
- android:layout_marginRight="10dp"
- android:layout_weight="1"
- android:text="9" />
-
- <Button
- android:layout_width="0dp"
- android:layout_height="wrap_content"
- android:layout_marginRight="10dp"
- android:layout_weight="1"
- android:text="±" />
- </LinearLayout>
- <!--下-第二行-->
- <LinearLayout
- android:layout_width="match_parent"
- android:layout_height="wrap_content"
- android:orientation="horizontal">
-
- <Button
- android:layout_width="0dp"
- android:layout_height="wrap_content"
- android:layout_marginLeft="10dp"
- android:layout_marginRight="10dp"
- android:layout_weight="1"
- android:text="6" />
-
- <Button
- android:layout_width="0dp"
- android:layout_height="wrap_content"
- android:layout_marginRight="10dp"
- android:layout_weight="1"
- android:text="7" />
-
- <Button
- android:layout_width="0dp"
- android:layout_height="wrap_content"
- android:layout_marginRight="10dp"
- android:layout_weight="1"
- android:text="8" />
-
- <Button
- android:layout_width="0dp"
- android:layout_height="wrap_content"
- android:layout_marginRight="10dp"
- android:layout_weight="1"
- android:text="+" />
- </LinearLayout>
- <!--下-第三行-->
- <LinearLayout
- android:layout_width="match_parent"
- android:layout_height="wrap_content"
- android:orientation="horizontal">
-
- <Button
- android:layout_width="0dp"
- android:layout_height="wrap_content"
- android:layout_marginLeft="10dp"
- android:layout_marginRight="10dp"
- android:layout_weight="1"
- android:text="3" />
-
- <Button
- android:layout_width="0dp"
- android:layout_height="wrap_content"
- android:layout_marginRight="10dp"
- android:layout_weight="1"
- android:text="4" />
-
- <Button
- android:layout_width="0dp"
- android:layout_height="wrap_content"
- android:layout_marginRight="10dp"
- android:layout_weight="1"
- android:text="5" />
-
- <Button
- android:layout_width="0dp"
- android:layout_height="wrap_content"
- android:layout_marginRight="10dp"
- android:layout_weight="1"
- android:text="-" />
- </LinearLayout>
- <!--下-第四行-->
- <LinearLayout
- android:layout_width="match_parent"
- android:layout_height="wrap_content"
- android:orientation="horizontal">
-
- <Button
- android:layout_width="0dp"
- android:layout_height="wrap_content"
- android:layout_marginLeft="10dp"
- android:layout_marginRight="10dp"
- android:layout_weight="1"
- android:text="0" />
-
- <Button
- android:layout_width="0dp"
- android:layout_height="wrap_content"
- android:layout_marginRight="10dp"
- android:layout_weight="1"
- android:text="1" />
-
- <Button
- android:layout_width="0dp"
- android:layout_height="wrap_content"
- android:layout_marginRight="10dp"
- android:layout_weight="1"
- android:text="2" />
-
- <Button
- android:layout_width="0dp"
- android:layout_height="wrap_content"
- android:layout_marginRight="10dp"
- android:layout_weight="1"
- android:text="*" />
- </LinearLayout>
- <!--下-第五行-->
- <LinearLayout
- android:layout_width="match_parent"
- android:layout_height="wrap_content"
- android:orientation="horizontal">
-
- <Button
- android:layout_width="0dp"
- android:layout_height="wrap_content"
- android:layout_marginLeft="10dp"
- android:layout_marginRight="10dp"
- android:layout_weight="1"
- android:text="A" />
-
- <Button
- android:layout_width="0dp"
- android:layout_height="wrap_content"
- android:layout_marginRight="10dp"
- android:layout_weight="1"
- android:text="B" />
-
- <Button
- android:layout_width="0dp"
- android:layout_height="wrap_content"
- android:layout_marginRight="10dp"
- android:layout_weight="1"
- android:text="C" />
-
- <Button
- android:layout_width="0dp"
- android:layout_height="wrap_content"
- android:layout_marginRight="10dp"
- android:layout_weight="1"
- android:text="/" />
- </LinearLayout>
-
- <!--下-第六行-->
- <LinearLayout
- android:layout_width="match_parent"
- android:layout_height="wrap_content"
- android:orientation="horizontal">
-
- <Button
- android:layout_width="0dp"
- android:layout_height="wrap_content"
- android:layout_marginLeft="10dp"
- android:layout_marginRight="10dp"
- android:layout_weight="1"
- android:text="D" />
-
- <Button
- android:layout_width="0dp"
- android:layout_height="wrap_content"
- android:layout_marginRight="10dp"
- android:layout_weight="1"
- android:text="E" />
-
- <Button
- android:layout_width="0dp"
- android:layout_height="wrap_content"
- android:layout_marginRight="10dp"
- android:layout_weight="1"
- android:text="F" />
-
- <Button
- android:layout_width="0dp"
- android:layout_height="wrap_content"
- android:layout_marginRight="10dp"
- android:layout_weight="1"
- android:text="=" />
- </LinearLayout>
-
- </LinearLayout>
-
-
- </LinearLayout>
-
-
- </LinearLayout>
科学计算器
- <?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="match_parent"
- android:layout_height="0dp"
- android:layout_marginBottom="10dp"
- android:layout_weight="1"
- android:orientation="vertical">
-
- <TextView
- android:layout_width="match_parent"
- android:layout_height="match_parent"
- android:background="@drawable/my_border"
- android:gravity="center|right"
- android:hint="0 "
- android:textSize="56sp" />
-
- </LinearLayout>
-
- <!-- 单选-->
- <LinearLayout
- android:layout_width="match_parent"
- android:layout_height="0dp"
- android:layout_marginTop="10dp"
- android:layout_weight="1"
- android:orientation="vertical">
-
- <RadioGroup
- android:layout_width="match_parent"
- android:layout_height="match_parent"
- android:background="@drawable/my_border"
- android:orientation="horizontal">
-
- <RadioButton
- android:layout_width="0dp"
- android:layout_height="match_parent"
- android:layout_weight="1"
- android:text="角度"
- android:textSize="25dp" />
-
- <RadioButton
- android:layout_width="0dp"
- android:layout_height="match_parent"
- android:layout_weight="1"
- android:text="弧度"
- android:textSize="25dp" />
-
- <RadioButton
- android:layout_width="0dp"
- android:layout_height="match_parent"
- android:layout_weight="1"
- android:text="梯度"
- android:textSize="25dp" />
- </RadioGroup>
-
- </LinearLayout>
-
- <LinearLayout
- android:layout_width="match_parent"
- android:layout_height="wrap_content"
- android:orientation="vertical">
-
-
- <!--上最外层-->
- <LinearLayout
- android:layout_width="match_parent"
- android:layout_height="wrap_content"
- android:layout_weight="6"
- android:background="@drawable/my_border"
- android:orientation="vertical">
-
-
- <!--上-第一行-->
- <LinearLayout
- android:layout_width="match_parent"
- android:layout_height="wrap_content"
- android:orientation="horizontal">
-
- <Button
- android:layout_width="0dp"
- android:layout_height="wrap_content"
- android:layout_marginLeft="10dp"
- android:layout_marginRight="10dp"
- android:layout_weight="1"
- android:text="SIN" />
-
- <Button
- android:layout_width="0dp"
- android:layout_height="wrap_content"
- android:layout_marginRight="10dp"
- android:layout_weight="1"
- android:text="COS" />
-
- <Button
- android:layout_width="0dp"
- android:layout_height="wrap_content"
- android:layout_marginRight="10dp"
- android:layout_weight="1"
- android:text="TAN" />
-
- <Button
- android:layout_width="0dp"
- android:layout_height="wrap_content"
- android:layout_marginRight="10dp"
- android:layout_weight="1"
- android:text="COT" />
- </LinearLayout>
- <!--上-第二行-->
- <LinearLayout
- android:layout_width="match_parent"
- android:layout_height="wrap_content"
- android:orientation="horizontal">
-
- <Button
- android:layout_width="0dp"
- android:layout_height="wrap_content"
- android:layout_marginLeft="10dp"
- android:layout_marginRight="10dp"
- android:layout_weight="1"
- android:text="ASIN" />
-
- <Button
- android:layout_width="0dp"
- android:layout_height="wrap_content"
- android:layout_marginRight="10dp"
- android:layout_weight="1"
- android:text="ACOS" />
-
- <Button
- android:layout_width="0dp"
- android:layout_height="wrap_content"
- android:layout_marginRight="10dp"
- android:layout_weight="1"
- android:text="ATAN" />
-
- <Button
- android:layout_width="0dp"
- android:layout_height="wrap_content"
- android:layout_marginRight="10dp"
- android:layout_weight="1"
- android:text="ACOT" />
- </LinearLayout>
- <!--上-第三行-->
- <LinearLayout
- android:layout_width="match_parent"
- android:layout_height="wrap_content"
- android:orientation="horizontal">
-
- <Button
- android:layout_width="0dp"
- android:layout_height="wrap_content"
- android:layout_marginLeft="10dp"
- android:layout_marginRight="10dp"
- android:layout_weight="1"
- android:text="SINH" />
-
- <Button
- android:layout_width="0dp"
- android:layout_height="wrap_content"
- android:layout_marginRight="10dp"
- android:layout_weight="1"
- android:text="COSH" />
-
- <Button
- android:layout_width="0dp"
- android:layout_height="wrap_content"
- android:layout_marginRight="10dp"
- android:layout_weight="1"
- android:text="TANH" />
-
- <Button
- android:layout_width="0dp"
- android:layout_height="wrap_content"
- android:layout_marginRight="10dp"
- android:layout_weight="1"
- android:text="COTH" />
- </LinearLayout>
- <!--上-第四行-->
- <LinearLayout
- android:layout_width="match_parent"
- android:layout_height="wrap_content"
- android:orientation="horizontal">
-
- <Button
- android:layout_width="0dp"
- android:layout_height="wrap_content"
- android:layout_marginLeft="10dp"
- android:layout_marginRight="10dp"
- android:layout_weight="1"
- android:text="ASINH" />
-
- <Button
- android:layout_width="0dp"
- android:layout_height="wrap_content"
- android:layout_marginRight="10dp"
- android:layout_weight="1"
- android:text="ACOSH" />
-
- <Button
- android:layout_width="0dp"
- android:layout_height="wrap_content"
- android:layout_marginRight="10dp"
- android:layout_weight="1"
- android:text="ATANH" />
-
- <Button
- android:layout_width="0dp"
- android:layout_height="wrap_content"
- android:layout_marginRight="10dp"
- android:layout_weight="1"
- android:text="ACOTH" />
- </LinearLayout>
- <!--上-第五行-->
- <LinearLayout
- android:layout_width="match_parent"
- android:layout_height="wrap_content"
- android:orientation="horizontal">
-
- <Button
- android:layout_width="0dp"
- android:layout_height="wrap_content"
- android:layout_marginLeft="10dp"
- android:layout_marginRight="10dp"
- android:layout_weight="1"
- android:text="LN" />
-
- <Button
- android:layout_width="0dp"
- android:layout_height="wrap_content"
- android:layout_marginRight="10dp"
- android:layout_weight="1"
- android:text="LOG10" />
-
- <Button
- android:layout_width="0dp"
- android:layout_height="wrap_content"
- android:layout_marginRight="10dp"
- android:layout_weight="1"
- android:text="N!" />
-
- <Button
- android:layout_width="0dp"
- android:layout_height="wrap_content"
- android:layout_marginRight="10dp"
- android:layout_weight="1"
- android:text="X^Y" />
- </LinearLayout>
- <!--上-第六行-->
- <LinearLayout
- android:layout_width="match_parent"
- android:layout_height="wrap_content"
- android:orientation="horizontal">
-
- <Button
- android:layout_width="0dp"
- android:layout_height="wrap_content"
- android:layout_marginLeft="10dp"
- android:layout_marginRight="10dp"
- android:layout_weight="1"
- android:text="E^X" />
-
- <Button
- android:layout_width="0dp"
- android:layout_height="wrap_content"
- android:layout_marginRight="10dp"
- android:layout_weight="1"
- android:text="Π" />
-
- <Button
- android:layout_width="0dp"
- android:layout_height="wrap_content"
- android:layout_marginRight="10dp"
- android:layout_weight="1"
- android:text="(" />
-
- <Button
- android:layout_width="0dp"
- android:layout_height="wrap_content"
- android:layout_marginRight="10dp"
- android:layout_weight="1"
- android:text=")" />
- </LinearLayout>
-
-
- </LinearLayout>
-
- <!--下最外层-->
- <LinearLayout
- android:layout_width="match_parent"
- android:layout_height="wrap_content"
- android:layout_weight="5"
- android:background="@drawable/my_border"
- android:orientation="vertical">
- <!--下-第一行-->
- <LinearLayout
- android:layout_width="match_parent"
- android:layout_height="wrap_content"
- android:orientation="horizontal">
-
- <Button
- android:layout_width="0dp"
- android:layout_height="wrap_content"
- android:layout_marginLeft="10dp"
- android:layout_marginRight="10dp"
- android:layout_weight="1"
- android:text="退格" />
-
- <Button
- android:layout_width="0dp"
- android:layout_height="wrap_content"
- android:layout_marginRight="10dp"
- android:layout_weight="1"
- android:text="清除" />
-
- <Button
- android:layout_width="0dp"
- android:layout_height="wrap_content"
- android:layout_marginRight="10dp"
- android:layout_weight="1"
- android:text="±" />
-
- <Button
- android:layout_width="0dp"
- android:layout_height="wrap_content"
- android:layout_marginRight="10dp"
- android:layout_weight="1"
- android:text="+" />
- </LinearLayout>
- <!--下-第二行-->
- <LinearLayout
- android:layout_width="match_parent"
- android:layout_height="wrap_content"
- android:orientation="horizontal">
-
- <Button
- android:layout_width="0dp"
- android:layout_height="wrap_content"
- android:layout_marginLeft="10dp"
- android:layout_marginRight="10dp"
- android:layout_weight="1"
- android:text="7" />
-
- <Button
- android:layout_width="0dp"
- android:layout_height="wrap_content"
- android:layout_marginRight="10dp"
- android:layout_weight="1"
- android:text="8" />
-
- <Button
- android:layout_width="0dp"
- android:layout_height="wrap_content"
- android:layout_marginRight="10dp"
- android:layout_weight="1"
- android:text="9" />
-
- <Button
- android:layout_width="0dp"
- android:layout_height="wrap_content"
- android:layout_marginRight="10dp"
- android:layout_weight="1"
- android:text="-" />
- </LinearLayout>
- <!--下-第三行-->
- <LinearLayout
- android:layout_width="match_parent"
- android:layout_height="wrap_content"
- android:orientation="horizontal">
-
- <Button
- android:layout_width="0dp"
- android:layout_height="wrap_content"
- android:layout_marginLeft="10dp"
- android:layout_marginRight="10dp"
- android:layout_weight="1"
- android:text="4" />
-
- <Button
- android:layout_width="0dp"
- android:layout_height="wrap_content"
- android:layout_marginRight="10dp"
- android:layout_weight="1"
- android:text="5" />
-
- <Button
- android:layout_width="0dp"
- android:layout_height="wrap_content"
- android:layout_marginRight="10dp"
- android:layout_weight="1"
- android:text="6" />
-
- <Button
- android:layout_width="0dp"
- android:layout_height="wrap_content"
- android:layout_marginRight="10dp"
- android:layout_weight="1"
- android:text="*" />
- </LinearLayout>
- <!--下-第四行-->
- <LinearLayout
- android:layout_width="match_parent"
- android:layout_height="wrap_content"
- android:orientation="horizontal">
-
- <Button
- android:layout_width="0dp"
- android:layout_height="wrap_content"
- android:layout_marginLeft="10dp"
- android:layout_marginRight="10dp"
- android:layout_weight="1"
- android:text="1" />
-
- <Button
- android:layout_width="0dp"
- android:layout_height="wrap_content"
- android:layout_marginRight="10dp"
- android:layout_weight="1"
- android:text="2" />
-
- <Button
- android:layout_width="0dp"
- android:layout_height="wrap_content"
- android:layout_marginRight="10dp"
- android:layout_weight="1"
- android:text="3" />
-
- <Button
- android:layout_width="0dp"
- android:layout_height="wrap_content"
- android:layout_marginRight="10dp"
- android:layout_weight="1"
- android:text="/" />
- </LinearLayout>
- <!--下-第五行-->
- <LinearLayout
- android:layout_width="match_parent"
- android:layout_height="wrap_content"
- android:orientation="horizontal">
-
- <Button
- android:layout_width="0dp"
- android:layout_height="wrap_content"
- android:layout_marginLeft="10dp"
- android:layout_marginRight="10dp"
- android:layout_weight="1"
- android:text="0" />
-
- <Button
- android:layout_width="0dp"
- android:layout_height="wrap_content"
- android:layout_marginRight="10dp"
- android:layout_weight="1"
- android:text="." />
-
- <Button
- android:layout_width="0dp"
- android:layout_height="wrap_content"
- android:layout_marginRight="10dp"
- android:layout_weight="1"
- android:text="1/X" />
-
- <Button
- android:layout_width="0dp"
- android:layout_height="wrap_content"
- android:layout_marginRight="10dp"
- android:layout_weight="1"
- android:text="=" />
- </LinearLayout>
-
- </LinearLayout>
-
-
- </LinearLayout>
-
-
- </LinearLayout>
简单计算器
- <?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">
-
- <TextView
- android:layout_width="match_parent"
- android:layout_height="wrap_content"
- android:layout_marginTop="20dp"
- android:background="@drawable/my_border"
- android:gravity="center|right"
- android:hint="0"
- android:textSize="26sp" />
-
-
- <!--第一行-->
- <LinearLayout
- android:layout_width="match_parent"
- android:layout_height="wrap_content"
- android:orientation="horizontal">
-
- <Button
- android:layout_width="0dp"
- android:layout_height="wrap_content"
- android:layout_marginLeft="10dp"
- android:layout_marginRight="10dp"
- android:layout_weight="1"
- android:text="退格" />
-
- <Button
- android:layout_width="0dp"
- android:layout_height="wrap_content"
- android:layout_marginRight="10dp"
- android:layout_weight="1"
- android:text="清除" />
-
- <Button
- android:layout_width="0dp"
- android:layout_height="wrap_content"
- android:layout_marginRight="10dp"
- android:layout_weight="1"
- android:text="±" />
-
- <Button
- android:layout_width="0dp"
- android:layout_height="wrap_content"
- android:layout_marginRight="10dp"
- android:layout_weight="1"
- android:text="+" />
- </LinearLayout>
-
- <!--第二行-->
- <LinearLayout
- android:layout_width="match_parent"
- android:layout_height="wrap_content"
- android:orientation="horizontal">
-
- <Button
- android:layout_width="0dp"
- android:layout_height="wrap_content"
- android:layout_marginLeft="10dp"
- android:layout_marginRight="10dp"
- android:layout_weight="1"
- android:text="7" />
-
- <Button
- android:layout_width="0dp"
- android:layout_height="wrap_content"
- android:layout_marginRight="10dp"
- android:layout_weight="1"
- android:text="8" />
-
- <Button
- android:layout_width="0dp"
- android:layout_height="wrap_content"
- android:layout_marginRight="10dp"
- android:layout_weight="1"
- android:text="9" />
-
- <Button
- android:layout_width="0dp"
- android:layout_height="wrap_content"
- android:layout_marginRight="10dp"
- android:layout_weight="1"
- android:text="-" />
- </LinearLayout>
- <!--第三行-->
- <LinearLayout
- android:layout_width="match_parent"
- android:layout_height="wrap_content"
- android:orientation="horizontal">
-
- <Button
- android:layout_width="0dp"
- android:layout_height="wrap_content"
- android:layout_marginLeft="10dp"
- android:layout_marginRight="10dp"
- android:layout_weight="1"
- android:text="4" />
-
- <Button
- android:layout_width="0dp"
- android:layout_height="wrap_content"
- android:layout_marginRight="10dp"
- android:layout_weight="1"
- android:text="5" />
-
- <Button
- android:layout_width="0dp"
- android:layout_height="wrap_content"
- android:layout_marginRight="10dp"
- android:layout_weight="1"
- android:text="6" />
-
- <Button
- android:layout_width="0dp"
- android:layout_height="wrap_content"
- android:layout_marginRight="10dp"
- android:layout_weight="1"
- android:text="*" />
- </LinearLayout>
- <!--第四行-->
- <LinearLayout
- android:layout_width="match_parent"
- android:layout_height="wrap_content"
- android:orientation="horizontal">
-
- <Button
- android:layout_width="0dp"
- android:layout_height="wrap_content"
- android:layout_marginLeft="10dp"
- android:layout_marginRight="10dp"
- android:layout_weight="1"
- android:text="1" />
-
- <Button
- android:layout_width="0dp"
- android:layout_height="wrap_content"
- android:layout_marginRight="10dp"
- android:layout_weight="1"
- android:text="2" />
-
- <Button
- android:layout_width="0dp"
- android:layout_height="wrap_content"
- android:layout_marginRight="10dp"
- android:layout_weight="1"
- android:text="3" />
-
- <Button
- android:layout_width="0dp"
- android:layout_height="wrap_content"
- android:layout_marginRight="10dp"
- android:layout_weight="1"
- android:text="/" />
- </LinearLayout>
- <!--最后一行-->
- <LinearLayout
- android:layout_width="match_parent"
- android:layout_height="wrap_content"
- android:orientation="horizontal">
-
- <Button
- android:layout_width="0dp"
- android:layout_height="wrap_content"
- android:layout_marginLeft="10dp"
- android:layout_marginRight="10dp"
- android:layout_weight="1"
- android:text="0" />
-
- <Button
- android:layout_width="0dp"
- android:layout_height="wrap_content"
- android:layout_marginRight="10dp"
- android:layout_weight="1"
- android:text="." />
-
- <Button
- android:layout_width="0dp"
- android:layout_height="wrap_content"
- android:layout_marginRight="10dp"
- android:layout_weight="1"
- android:text="1/X" />
-
- <Button
- android:layout_width="0dp"
- android:layout_height="wrap_content"
- android:layout_marginRight="10dp"
- android:layout_weight="1"
- android:text="=" />
- </LinearLayout>
-
-
- </LinearLayout>
最后还有一个drawable资源 :my_border.xml文件,该文件实现了一个轮廓,上述前端页面基本上都进行了引用
- <?xml version="1.0" encoding="utf-8"?>
- <shape xmlns:android="http://schemas.android.com/apk/res/android">
- <solid android:color="#00000000" />
- <stroke
- android:width="2dp"
- android:color="#808080" />
- <corners android:radius="5dp" />
- </shape>
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。