91超碰碰碰碰久久久久久综合_超碰av人澡人澡人澡人澡人掠_国产黄大片在线观看画质优化_txt小说免费全本

溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

Android Studio如何實現長方體表面積計算器

發布時間:2020-07-22 14:46:41 來源:億速云 閱讀:241 作者:小豬 欄目:移動開發

這篇文章主要講解了Android Studio如何實現長方體表面積計算器,內容清晰明了,對此有興趣的小伙伴可以學習一下,相信大家閱讀完之后會有幫助。

寫了兩個方法(在我理解之中有三個方法,其中循環字符串匹配太low了,pass掉),目前先上傳一個,后續補上。

針對這個問題 總共有四個文件

方法一:正則表達式

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

<&#63;xml version="1.0" encoding="utf-8"&#63;>
<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:id="@+id/textView4"
 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

<&#63;xml version="1.0" encoding="utf-8"&#63;>
<!--<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:id="@+id/textView"
 android:layout_width="match_parent"
 android:layout_height="wrap_content"
 android:layout_weight="1"
 android:text="長:" />

 <EditText
 android:id="@+id/editText"
 android:layout_width="match_parent"
 android:layout_height="wrap_content"
 android:layout_weight="1"
 android:ems="10"
 android:inputType="text" />

 <TextView
 android:id="@+id/textView2"
 android:layout_width="match_parent"
 android:layout_height="wrap_content"
 android:layout_weight="1"
 android:text="寬:" />

 <EditText
 android:id="@+id/editText2"
 android:layout_width="match_parent"
 android:layout_height="wrap_content"
 android:layout_weight="1"
 android:ems="10"
 android:inputType="text" />

 <TextView
 android:id="@+id/textView3"
 android:layout_width="match_parent"
 android:layout_height="wrap_content"
 android:layout_weight="1"
 android:text="高:" />

 <EditText
 android:id="@+id/editText3"
 android:layout_width="match_parent"
 android:layout_height="wrap_content"
 android:layout_weight="1"
 android:ems="10"
 android:inputType="text" />

 <Button
 android:id="@+id/button"
 android:layout_width="match_parent"
 android:layout_height="wrap_content"
 android:layout_weight="1"
 android:onClick="onClick"
 android:text="計算" />
</android.widget.LinearLayout>

看完上述內容,是不是對Android Studio如何實現長方體表面積計算器有進一步的了解,如果還想學習更多內容,歡迎關注億速云行業資訊頻道。

向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

AI

泊头市| 申扎县| 曲水县| 永和县| 靖安县| 江孜县| 綦江县| 炎陵县| 玉溪市| 泸溪县| 宜阳县| 宜丰县| 繁昌县| 甘孜| 张家界市| 正阳县| 伊春市| 泸定县| 宜城市| 高陵县| 西乌珠穆沁旗| 绿春县| 宝丰县| 大荔县| 瓦房店市| 上犹县| 雷州市| 灵武市| 喀喇沁旗| 滨海县| 湄潭县| 腾冲县| 平武县| 越西县| 平果县| 应城市| 吉安市| 深泽县| 永年县| 黎平县| 余姚市|