電卓制作しました。
仕様はなし崩しで追加したりしてたのでコードぐちゃぐちゃ・・・・
四則演算が出来て小数点の計算も出来る。
でもdouble型だからたまに誤差出る(オイ
その他にもちょろちょろ仕様ありますが(CとCAの実装など)基本機能は上の感じです。では恥ずかしいコードをどうぞ。
activity_main.xml
テキストビューは見た目を制御するため(特に角丸のため)のborder.xmlを用意。
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 |
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android" xmlns:tools="http://schemas.android.com/tools" android:id="@+id/LinearLayout1" android:layout_width="match_parent" android:layout_height="match_parent" android:background="#000000" android:gravity="center_vertical|center" android:orientation="vertical" android:paddingBottom="@dimen/activity_vertical_margin" android:paddingLeft="@dimen/activity_horizontal_margin" android:paddingRight="@dimen/activity_horizontal_margin" android:paddingTop="@dimen/activity_vertical_margin" tools:context=".MainActivity" > <TextView android:id="@+id/textCalc" android:layout_width="wrap_content" android:layout_height="wrap_content" android:layout_gravity="right" android:text="" android:textAppearance="?android:attr/textAppearanceSmall" android:textColor="#FFFFFF" /> <TextView android:id="@+id/textView1" android:layout_width="match_parent" android:layout_height="wrap_content" android:layout_marginBottom="30dp" android:background="@drawable/border" android:gravity="right" android:padding="5dp" android:text="0" android:textSize="40sp" /> <TableLayout android:layout_width="match_parent" android:layout_height="wrap_content" android:gravity="center" > <TableRow android:id="@+id/tableRow1" android:layout_width="match_parent" android:layout_height="wrap_content" android:gravity="center" > <Button android:id="@+id/button07" style="?android:attr/buttonStyleSmall" android:layout_width="match_parent" android:layout_height="wrap_content" android:layout_margin="5dp" android:text="7" android:textColor="#FFFFFF" /> <Button android:id="@+id/button08" style="?android:attr/buttonStyleSmall" android:layout_width="match_parent" android:layout_height="wrap_content" android:layout_margin="5dp" android:text="8" android:textColor="#FFFFFF" /> <Button android:id="@+id/button09" style="?android:attr/buttonStyleSmall" android:layout_width="match_parent" android:layout_height="wrap_content" android:layout_margin="5dp" android:text="9" android:textColor="#FFFFFF" /> <Button android:id="@+id/clear" android:layout_width="wrap_content" android:layout_height="wrap_content" android:layout_margin="5dp" android:textColor="#FF0000" android:text="C" /> <Button android:id="@+id/clearAll" android:layout_width="wrap_content" android:layout_height="wrap_content" android:layout_margin="5dp" android:textColor="#FF0000" android:text="CA" /> </TableRow> <TableRow android:id="@+id/tableRow2" android:layout_width="match_parent" android:layout_height="wrap_content" android:gravity="center" > <Button android:id="@+id/button04" style="?android:attr/buttonStyleSmall" android:layout_width="match_parent" android:layout_height="wrap_content" android:layout_margin="5dp" android:text="4" android:textColor="#FFFFFF" /> <Button android:id="@+id/button05" style="?android:attr/buttonStyleSmall" android:layout_width="match_parent" android:layout_height="wrap_content" android:layout_margin="5dp" android:text="5" android:textColor="#FFFFFF" /> <Button android:id="@+id/button06" style="?android:attr/buttonStyleSmall" android:layout_width="match_parent" android:layout_height="wrap_content" android:layout_margin="5dp" android:text="6" android:textColor="#FFFFFF" /> <Button android:id="@+id/multiplication" android:layout_width="wrap_content" android:layout_height="wrap_content" android:layout_margin="5dp" android:textColor="#FFFFFF" android:text="×" /> <Button android:id="@+id/division" android:layout_width="wrap_content" android:layout_height="wrap_content" android:layout_margin="5dp" android:textColor="#FFFFFF" android:text="÷" /> </TableRow> <TableRow android:id="@+id/tableRow3" android:layout_width="match_parent" android:layout_height="wrap_content" android:gravity="center" > <Button android:id="@+id/button01" style="?android:attr/buttonStyleSmall" android:layout_width="match_parent" android:layout_height="wrap_content" android:layout_margin="5dp" android:text="1" android:textColor="#FFFFFF" /> <Button android:id="@+id/button02" style="?android:attr/buttonStyleSmall" android:layout_width="match_parent" android:layout_height="wrap_content" android:layout_margin="5dp" android:text="2" android:textColor="#FFFFFF" /> <Button android:id="@+id/button03" style="?android:attr/buttonStyleSmall" android:layout_width="match_parent" android:layout_height="wrap_content" android:layout_margin="5dp" android:text="3" android:textColor="#FFFFFF" /> <Button android:id="@+id/addition" android:layout_width="wrap_content" android:layout_height="wrap_content" android:layout_margin="5dp" android:textColor="#FFFFFF" android:text="+" /> <Button android:id="@+id/subtraction" android:layout_width="wrap_content" android:layout_height="wrap_content" android:layout_margin="5dp" android:textColor="#FFFFFF" android:text="-" /> </TableRow> <TableRow android:id="@+id/tableRow4" android:layout_width="match_parent" android:layout_height="wrap_content" android:gravity="center" > <Button android:id="@+id/button0" style="?android:attr/buttonStyleSmall" android:layout_width="match_parent" android:layout_height="wrap_content" android:layout_margin="5dp" android:text="0" android:textColor="#FFFFFF" /> <Button android:id="@+id/button00" style="?android:attr/buttonStyleSmall" android:layout_width="match_parent" android:layout_height="wrap_content" android:layout_margin="5dp" android:text="00" android:textColor="#FFFFFF" /> <Button android:id="@+id/point" style="?android:attr/buttonStyleSmall" android:layout_width="match_parent" android:layout_height="wrap_content" android:layout_margin="5dp" android:text="." android:textColor="#FFFFFF" /> <Button android:id="@+id/equal" android:layout_width="wrap_content" android:layout_height="wrap_content" android:layout_span="2" android:layout_margin="5dp" android:textColor="#FFFFFF" android:text="=" /> </TableRow> </TableLayout> </LinearLayout> |
MainActivity.java
1~9のボタンにはintで2つの変数を入れるコンストラクタを定義したNumberクラスを用意している。
3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 |
import android.os.Bundle; import android.view.View; import android.view.View.OnClickListener; import android.widget.Button; import android.widget.TextView; import android.app.Activity; public class MainActivity extends Activity implements OnClickListener { TextView tv; TextView textCalc; final static Number[] NUMBERBUTTONS = { // 1~9のボタン new Number(R.id.button01, 1), new Number(R.id.button02, 2), new Number(R.id.button03, 3), new Number(R.id.button04, 4), new Number(R.id.button05, 5), new Number(R.id.button06, 6), new Number(R.id.button07, 7), new Number(R.id.button08, 8), new Number(R.id.button09, 9) }; final static int[] OTHERBUTTONS = { // それ以外のボタン R.id.button0,R.id.button00, R.id.point, R.id.clear,R.id.clearAll, R.id.multiplication,R.id.division,R.id.addition,R.id.subtraction, R.id.equal }; static double totalNum = 0; // 現在の合計値を保持する static double nowNum = 0; // 現在の入力値を保持する static double equalNum = 0; // 最終合計値を保持する → イコールを押下直後に四則演算ボタンを押された時の対策 static boolean isPoint = false; // 小数点を管理する static int isCalc = 0; // どの演算をするかチェックする static boolean nowCalc = false; // 計算中(演算子を押した直後の状態)であるかどうかを管理する static boolean isEqual = false; // イコールを押したかチェックする → イコールを押下直後に四則演算ボタンを押された時の対策2 static boolean isError = false; // 0で割っていないかチェックする(エラー表示用) @Override protected void onCreate(Bundle savedInstanceState) { super.onCreate(savedInstanceState); setContentView(R.layout.activity_main); findView(); } private void findView() { tv = (TextView) findViewById(R.id.textView1); textCalc = (TextView) findViewById(R.id.textCalc); Button[] numBtns = new Button[NUMBERBUTTONS.length]; Button[] otherBtns = new Button[OTHERBUTTONS.length]; // 1~9のボタン生成 for (int i = 0; i < numBtns.length; i++) { numBtns[i] = (Button) findViewById(NUMBERBUTTONS[i].id); numBtns[i].setOnClickListener(this); } // その他のボタン生成 for (int i = 0; i < otherBtns.length; i++) { otherBtns[i] = (Button) findViewById(OTHERBUTTONS[i]); otherBtns[i].setOnClickListener(this); } } @Override public void onClick(View v) { // 演算子以外のボタンを押したら計算中を解除する(ただしイコールの場合はこの限りではない) if (nowCalc && !(v.getId() == R.id.multiplication || v.getId() == R.id.division|| v.getId() == R.id.addition|| v.getId() == R.id.subtraction)) { nowNum = 0; tv.setText("0"); nowCalc = false; } // イコール押下後に再計算する場合の処理 if (isEqual) { if (v.getId() == R.id.equal) { totalNum = equalNum; } else if (v.getId() == R.id.multiplication || v.getId() == R.id.division|| v.getId() == R.id.addition|| v.getId() == R.id.subtraction) { totalNum = equalNum; nowCalc = true; } else { nowNum = 0; tv.setText("0"); } isEqual = false; } equalNum = 0; // 各ボタン押下時の処理 switch (v.getId()) { case R.id.button0: // 0の状態で押しただけ0が重なる(ex:0000000...)のを防止するための条件式 if (!tv.getText().toString().equals("0")) { tv.append("0"); nowNum = Double.parseDouble(tv.getText().toString()); } else if (tv.getText().toString().equals("0") && isPoint) { tv.append(".0"); } break; case R.id.button00: if (!tv.getText().toString().equals("0")) { tv.append("00"); nowNum = Double.parseDouble(tv.getText().toString()); } else if (tv.getText().toString().equals("0") && isPoint) { tv.append(".00"); } break; case R.id.point: if (!isPoint) { isPoint = true; } break; case R.id.multiplication: setCalc(1,false); textCalc.setText("[×]"); break; case R.id.division: setCalc(2,false); textCalc.setText("[÷]"); break; case R.id.addition: setCalc(3,false); textCalc.setText("[+]"); break; case R.id.subtraction: setCalc(4,false); textCalc.setText("[-]"); break; case R.id.equal: setCalc(0,true); break; case R.id.clear: // 現在入力値リセット isPoint = false; nowNum = 0; tv.setText("0"); break; case R.id.clearAll: // 全リセット totalNum = 0; isCalc = 0; isPoint = false; nowNum = 0; nowCalc = false; textCalc.setText(""); tv.setText("0"); break; default: // 1~9押下時 pushNum(v); break; } } /***************** * 1~9押下用メソッド *****************/ private void pushNum(View v) { for (int i = 0; i < NUMBERBUTTONS.length; i++) { // ボタンの数だけ繰り返す if (v.getId() == NUMBERBUTTONS[i].id) { // どのボタンを押したかチェック // 現在の表示状態&小数点ボタンを押したかどうかで処理を変える if (tv.getText().toString().equals("0") && isPoint) { tv.setText("0." + NUMBERBUTTONS[i].num); } else if (tv.getText().toString().equals("0")) { tv.setText(NUMBERBUTTONS[i].num + ""); } else if (tv.getText().toString().indexOf(".") == -1 && isPoint) { tv.append("." + NUMBERBUTTONS[i].num); } else { tv.append(NUMBERBUTTONS[i].num + ""); } } nowNum = Double.parseDouble(tv.getText().toString()); } } /***************** * 演算ボタン押下用メソッド 引数(演算ボタン,イコールかどうか) *****************/ private void setCalc(int calcBtn,boolean isEqual) { if (nowCalc) { // 演算子を連打したときは計算させない } else { if (isCalc == 1) { totalNum *= nowNum; } else if (isCalc == 2) { totalNum /= nowNum; } else if (isCalc == 3) { totalNum += nowNum; } else if (isCalc == 4) { totalNum -= nowNum; } else { totalNum = nowNum; } } if (nowNum == 0) { if (isCalc == 2) { // 0で割っていないかチェック totalNum = 0; isError = true; } } // 0で割った時の処理&計算値表示 if (isError && isCalc == 2) { tv.setText("E"); isError = false; } else if (totalNum % 1 == 0) { // 整数の時に小数点を表示しない対策 tv.setText((long)totalNum + ""); } else { tv.setText(totalNum + ""); } // イコール押下時の処理 if (isEqual) { textCalc.setText(""); equalNum = totalNum; MainActivity.isEqual = true; totalNum = 0; } else { // イコール連打で連続計算をするため、isEqual時はisCalc,nowCalcを変更しない isCalc = calcBtn; nowCalc = true; } isPoint = false; } } |
日が空いてからの記事なのでやっつけ感がとてつもない。
ぐふ。
コメント
No Trackbacks.