Android表布局开发实现简单计算器的方法

  介绍

这篇文章主要讲解了Android表布局开发实现简单计算器的方法,内容清晰明了,对此有兴趣的小伙伴可以学习一下,相信大家阅读完之后会有帮助。

结果如图:

 Android表布局开发实现简单计算器的方法

XML文件如下:

& lt; FrameLayout xmlns: Android=癶ttp://schemas.android.com/apk/res/android"   xmlns:工具=癶ttp://schemas.android.com/tools"   android: id=癅 + id/container"   android: layout_width=癿atch_parent"   android: layout_height=癿atch_parent"   工具:上下文=癱om.example.wxhcalculator.MainActivity"   工具:忽视=癕ergeRootFrame"比;      & lt; TableLayout   android: layout_width=癿atch_parent"   android: layout_height=皐rap_content"   android: stretchColumns=?”;   android: textSize=?2 sp"比;      & lt; TableRow>   EditText & lt;   android: id=癅 + id/result"   android: layout_width=癴ill_parent"   android: layout_height=皐rap_content"   android: layout_span=?”;   android:背景=癅android:可拉的/editbox_background"   android: cursorVisible=癴alse"   android:可编辑=癴alse"   android:重力=叭ɡ鹼 center_vertical"   android:行=?”;   android: textSize=?0 sp"/比;   & lt;/TableRow>      & lt; TableRow>      LinearLayout & lt;   android: layout_width=癴ill_parent"   android: layout_height=皐rap_content"   android: layout_weight=?”;   android:取向=癶orizontal"   android: textSize=?2 sp"比;      & lt;按钮   android: id=癅 + id/num7"   android: layout_width=癴ill_parent"   android: layout_height=皐rap_content"   android: layout_weight=?”;   android:文本=?”;   android: textSize=?2 sp"/比;      & lt;按钮   android: id=癅 + id/num8"   android: layout_width=癴ill_parent"   android: layout_height=皐rap_content"   android: layout_weight=?”;   android:文本=?”;   android: textSize=?2 sp"/比;      & lt;按钮   android: id=癅 + id/num9"   android: layout_width=癴ill_parent"   android: layout_height=皐rap_content"   android: layout_weight=?”;   android:文本=?“;   android: textSize=?2 sp"/比;      & lt;按钮   android: id=癅 + id/divide"   android: layout_width=癴ill_parent"   android: layout_height=皐rap_content"   android: layout_weight=?”;   android:文本=??   android: textSize=?2 sp"/比;   & lt;/LinearLayout>   & lt;/TableRow>      & lt; TableRow>      LinearLayout & lt;   android: layout_width=癴ill_parent"   android: layout_height=皐rap_content"   android: layout_weight=?”;   android:取向=癶orizontal"   android: textSize=?2 sp"比;      & lt;按钮   android: id=癅 + id/num4"   android: layout_width=癴ill_parent"   android: layout_height=皐rap_content"   android: layout_weight=?”;   android:文本=?”;   android: textSize=?2 sp"/比;      & lt;按钮   android: id=癅 + id/num5"   android: layout_width=癴ill_parent"   android: layout_height=皐rap_content"   android: layout_weight=?”;   android:文本=?”;   android: textSize=?2 sp"/比;      & lt;按钮   android: id=癅 + id/num6"   android: layout_width=癴ill_parent"   android: layout_height=皐rap_content"   android: layout_weight=?”;   android:文本=?”;   android: textSize=?2 sp"/比;      & lt;按钮   android: id=癅 + id/multiply"   android: layout_width=癴ill_parent"   android: layout_height=皐rap_content"   android: layout_weight=?”;   android:文本=?”;   android: textSize=?2 sp"/比;   & lt;/LinearLayout>   & lt;/TableRow>      & lt; TableRow>      LinearLayout & lt;   android: layout_width=癴ill_parent"   android: layout_height=皐rap_content"   android: layout_weight=?”;   android:取向=癶orizontal"   android: textSize=?2 sp"比;      & lt;按钮   android: id=癅 + id/num1"   android: layout_width=癴ill_parent"   android: layout_height=皐rap_content"   android: layout_weight=?”;   android:文本=?”;   android: textSize=?2 sp"/比;      & lt;按钮   android: id=癅 + id/num2"   android: layout_width=癴ill_parent"   android: layout_height=皐rap_content"   android: layout_weight=?”;   android:文本=?”;   android: textSize=?2 sp"/比;      & lt;按钮   android: id=癅 + id/num3"   android: layout_width=癴ill_parent"   android: layout_height=皐rap_content"   android: layout_weight=?”;   android:文本=?”;   android: textSize=?2 sp"/比;      & lt;按钮   android: id=癅 + id/subtract"   android: layout_width=癴ill_parent"   android: layout_height=皐rap_content"   android: layout_weight=?”;   android:文本=安澄?   android: textSize=?2 sp"/比;   & lt;/LinearLayout>   & lt;/TableRow>      & lt; TableRow>      LinearLayout & lt;   android: layout_width=癴ill_parent"   null   null   null   null   null   null   null   null   null   null   null   null   null   null   null   null   null   null   null   null   null   null   null   null   null   null   null   null   null   null   null   null   null   null   null   null   null   null   null   null   null   null   null   null   null   null   null   null   null   null   null   null   null   null   null   null   null   null   null   null   null   null   null   null   null   null   null   null   null   null   null   null   null   null   null   null   null   null   null   null

Android表布局开发实现简单计算器的方法