Android Studio實(shí)現(xiàn)長方體表面積計(jì)算器
本文實(shí)例為大家分享了Android Studio實(shí)現(xiàn)長方體、表面積計(jì)算器的具體代碼,供大家參考,具體內(nèi)容如下
寫了兩個(gè)方法(在我理解之中有三個(gè)方法,其中循環(huán)字符串匹配太low了,pass掉),目前先上傳一個(gè),后續(xù)補(bǔ)上。針對(duì)這個(gè)問題 總共有四個(gè)文件
方法一:正則表達(dá)式
1.MainActivity.java
package com.example.flyyu.four;import android.content.Intent;import android.support.v7.app.AppCompatActivity;import android.os.Bundle;import android.view.View;import android.widget.EditText;import android.widget.Toast;import java.util.regex.Pattern;public class MainActivity extends AppCompatActivity implements View.OnClickListener{ @Override protected void onCreate(Bundle savedInstanceState) { super.onCreate(savedInstanceState); setContentView(R.layout.activity_main); } @Override public void onClick(View v) { EditText a=(EditText)findViewById(R.id.editText); EditText b=(EditText)findViewById(R.id.editText2); EditText c=(EditText)findViewById(R.id.editText3); Intent it=new Intent(this,biapmianji.class); if (!isNumber(a.getText().toString())&&!isNumber(b.getText().toString())&&!isNumber(c.getText().toString())){ it.putExtra('a',a.getText().toString()); it.putExtra('b',b.getText().toString()); it.putExtra('c',c.getText().toString()); MainActivity.this.startActivity(it); } } public boolean isNumber(String s){ String pattern = '.*D.*'; boolean isMatch = Pattern.matches(pattern,s); if (isMatch||s.length()==0){ Toast.makeText(this,'輸入異常',Toast.LENGTH_SHORT).show(); return true; } return isMatch; }}
2.biapmianji.java
package com.example.flyyu.four;import android.content.Intent;import android.support.v7.app.AppCompatActivity;import android.os.Bundle;import android.view.View;import android.widget.TextView;public class biapmianji extends AppCompatActivity { @Override protected void onCreate(Bundle savedInstanceState) { super.onCreate(savedInstanceState); setContentView(R.layout.activity_biapmianji); TextView textView=(TextView)findViewById(R.id.textView4); Intent it=this.getIntent(); float a=Float.valueOf(it.getStringExtra('a')) ; float b=Float.valueOf(it.getStringExtra('b')) ; float c=Float.valueOf(it.getStringExtra('c')) ; String s=(2*(a*b+a*c+b*c))+''; textView.setText('該長方體的表面積為:'+s);// textView.setText('該長方體的表面積為:'+a); }}
3.activity_biapmianji.XML
<?xml version='1.0' encoding='utf-8'?><android.support.constraint.ConstraintLayout xmlns:android='http://schemas.android.com/apk/res/android' xmlns:app='http://schemas.android.com/apk/res-auto' xmlns:tools='http://schemas.android.com/tools' android:layout_width='match_parent' android:layout_height='match_parent' tools:context='com.example.flyyu.four.biapmianji'> <TextView android: android:layout_width='wrap_content' android:layout_height='wrap_content' android:layout_marginBottom='8dp' android:layout_marginLeft='8dp' android:layout_marginRight='8dp' android:layout_marginTop='8dp' android:text='TextView' android:textSize='18sp' app:layout_constraintBottom_toBottomOf='parent' app:layout_constraintHorizontal_bias='0.174' app:layout_constraintLeft_toLeftOf='parent' app:layout_constraintRight_toRightOf='parent' app:layout_constraintTop_toTopOf='parent' app:layout_constraintVertical_bias='0.083' /></android.support.constraint.ConstraintLayout>
4.activity_main.XML
<?xml version='1.0' encoding='utf-8'?><!--<android.support.constraint.ConstraintLayout xmlns:android='http://schemas.android.com/apk/res/android'--><android.widget.LinearLayout xmlns:android='http://schemas.android.com/apk/res/android' xmlns:app='http://schemas.android.com/apk/res-auto' xmlns:tools='http://schemas.android.com/tools' android:layout_width='match_parent' android:layout_height='match_parent' android:orientation='vertical' tools:context='com.example.flyyu.four.MainActivity'> <TextView android: android:layout_width='match_parent' android:layout_height='wrap_content' android:layout_weight='1' android:text='長:' /> <EditText android: android:layout_width='match_parent' android:layout_height='wrap_content' android:layout_weight='1' android:ems='10' android:inputType='text' /> <TextView android: android:layout_width='match_parent' android:layout_height='wrap_content' android:layout_weight='1' android:text='寬:' /> <EditText android: android:layout_width='match_parent' android:layout_height='wrap_content' android:layout_weight='1' android:ems='10' android:inputType='text' /> <TextView android: android:layout_width='match_parent' android:layout_height='wrap_content' android:layout_weight='1' android:text='高:' /> <EditText android: android:layout_width='match_parent' android:layout_height='wrap_content' android:layout_weight='1' android:ems='10' android:inputType='text' /> <Button android: android:layout_width='match_parent' android:layout_height='wrap_content' android:layout_weight='1' android:onClick='onClick' android:text='計(jì)算' /></android.widget.LinearLayout>
更多計(jì)算器功能實(shí)現(xiàn),請(qǐng)點(diǎn)擊專題: 計(jì)算器功能匯總 進(jìn)行學(xué)習(xí)
關(guān)于Android計(jì)算器功能的實(shí)現(xiàn),查看專題:Android計(jì)算器 進(jìn)行學(xué)習(xí)。
以上就是本文的全部內(nèi)容,希望對(duì)大家的學(xué)習(xí)有所幫助,也希望大家多多支持好吧啦網(wǎng)。
相關(guān)文章:
1. CentOS郵件服務(wù)器搭建系列—— POP / IMAP 服務(wù)器的構(gòu)建( Dovecot )2. .NET SkiaSharp 生成二維碼驗(yàn)證碼及指定區(qū)域截取方法實(shí)現(xiàn)3. django創(chuàng)建css文件夾的具體方法4. 存儲(chǔ)于xml中需要的HTML轉(zhuǎn)義代碼5. phpstudy apache開啟ssi使用詳解6. VMware中如何安裝Ubuntu7. jsp網(wǎng)頁實(shí)現(xiàn)貪吃蛇小游戲8. IntelliJ IDEA創(chuàng)建web項(xiàng)目的方法9. ASP中實(shí)現(xiàn)字符部位類似.NET里String對(duì)象的PadLeft和PadRight函數(shù)10. asp批量添加修改刪除操作示例代碼
