2016-06-14 77 views
-1

你好嗎?我需要第一個Android應用程序的幫助。如何顯示文字而不是數字作爲Android應用程序中的數學公式的結果?

我想計算汽油價格除以乙醇價格的結果。我已經做到了,結果顯示在應用程序中。

但現在我想讓它變得更好。如果汽油/乙醇的結果等於或大於0.7,我希望文本字段顯示「汽油」,如果結果低於0.7,則顯示「乙醇」。

我該怎麼做?我添加了我已有的代碼。謝謝!


package br.com.espacoporto.espacoporto; 

import android.os.Bundle; 
import android.support.v7.app.AppCompatActivity; 
import android.support.v7.widget.Toolbar; 
import android.view.View; 
import android.view.Menu; 
import android.view.MenuItem; 
import android.widget.Button; 
import android.widget.EditText; 
import android.widget.TextView; 

public class Inicio extends AppCompatActivity { 

    TextView totalTextView; 
    EditText gasolineTxt; 
    EditText etanolTxt; 

    @Override 
    protected void onCreate(Bundle savedInstanceState) { 
     super.onCreate(savedInstanceState); 
     setContentView(R.layout.activity_inicio); 
     Toolbar toolbar = (Toolbar) findViewById(R.id.toolbar); 
     setSupportActionBar(toolbar); 

     totalTextView = (TextView) findViewById(R.id.totalTextView); 
     gasolineTxt = (EditText) findViewById(R.id.gasolineTxt); 
     etanolTxt = (EditText) findViewById(R.id.etanolTxt); 

     Button calcBtn = (Button) findViewById(R.id.calcBtn); 
     calcBtn.setOnClickListener(new View.OnClickListener() { 
      @Override 
      public void onClick(View view) { 
       float gasoline = Float.parseFloat(gasolineTxt.getText().toString()); 
       float etanol = Float.parseFloat(etanolTxt.getText().toString()); 
       float total = etanol/gasoline; 
       totalTextView.setText(Float.toString(total)); 
      } 
     }); 
    } 

    @Override 
    public boolean onCreateOptionsMenu(Menu menu) { 
     // Inflate the menu; this adds items to the action bar if it is present. 
     getMenuInflater().inflate(R.menu.menu_inicio, menu); 
     return true; 
    } 

    @Override 
    public boolean onOptionsItemSelected(MenuItem item) { 
     // Handle action bar item clicks here. The action bar will 
     // automatically handle clicks on the Home/Up button, so long 
     // as you specify a parent activity in AndroidManifest.xml. 
     int id = item.getItemId(); 

     //noinspection SimplifiableIfStatement 
     if (id == R.id.action_settings) { 
      return true; 
     } 

     return super.onOptionsItemSelected(item); 
    } 
} 
+0

只需創建一個基於'total'一種情況:你打'totalTextView.setText( 「汽油」);'或'totalTextView.setText(」乙醇「);' –

回答

2

應該只是一個簡單的if語句,是嗎?

此外,你的問題說gasoline/etanol,所以我用它代替你在代碼中的東西。

float total = gasoline/etanol; 
if (total < 0.7) 
    totalTextView.setText("Ethanol"); 
else 
    totalTextView.setText("Gasoline"); 

或者可以單行

totalTextView.setText((gasoline/etanol) < 0.7 ? "Ethanol" : "Gasoline"); 
+0

謝謝!有效。 –

+0

你介意我問爲什麼「totalTextView.setText((汽油/乙醇)<0.7?」乙醇「:」汽油「);」工作? 我還沒有學過「?」和「:」。 謝謝 –

+1

@LucasPereira http://stackoverflow.com/questions/798545/what-is-the-java-operator-called-and-what-does-it-do – Arjan

相關問題