web-dev-qa-db-ja.com

Androidで文字列をダブルに変換する

別のIntentに渡す前に、EditTextから二重の値を取得して操作しようとしています。プリミティブデータ型を使用していないため、toStringメソッドを使用できます。

問題は、protein = Double.valueOf(p).doubleValue();を含めるときです。スタイルコマンドでは、プログラムはlogcatに情報を残さずにすぐに強制終了します。問題なく動作します。同じことがプリミティブデータ型で発生し、doubleを解析します。このコードは、通常のJavaのダミーデータで完全に機能します。私は何を間違えていますか?

EditText txtProt, txtCarb, txtFat, txtFiber, txtPoints;
String p, c, f, fi;
Double protein, carbs, fat, fiber;
double temp;
Integer points;

@Override
public void onCreate(Bundle savedInstanceState) {
     super.onCreate(savedInstanceState);
     Log.v("Create Prompt", "ready for layout");
     setContentView(R.layout.main);
     Log.v("Layout Created", "ready for variable assignment");
     txtProt = (EditText) findViewById(R.id.Protein);
     txtCarb = (EditText) findViewById(R.id.Carbs);
     txtFat = (EditText) findViewById(R.id.Fat);
     txtFiber = (EditText) findViewById(R.id.Fiber);
     txtPoints = (EditText) findViewById(R.id.Points);
     btnCalc = (Button) findViewById(R.id.Calc);
     Log.v("Variables Assigned", "ready for double assignment");

     p = txtProt.getText().toString();
     c = txtCarb.getText().toString();
     f = txtFat.getText().toString();
     fi = txtFiber.getText().toString();


     protein=Double.valueOf(p).doubleValue();
     carbs=Double.valueOf(c).doubleValue();
     fat=Double.valueOf(f).doubleValue();
     fiber=Double.valueOf(fi).doubleValue();
     Log.v("Doubles parsed", "ready for calculations");
     //these are the problem statements

     protein = 1.0;
     carbs = 1.0;
     fat = 1.0;
     fiber = 1.0;

     protein *= 16;
     carbs *= 19;
     fat *= 45;
     fiber *= 14;

     temp = protein + carbs + fat - fiber;
     temp = temp/175;

     points = new Integer((int) temp);
21
ProfCommie

私はこのようにします:

try {
  txtProt = (EditText) findViewById(R.id.Protein); // Same
  p = txtProt.getText().toString(); // Same
  protein = Double.parseDouble(p); // Make use of autoboxing.  It's also easier to read.
} catch (NumberFormatException e) {
  // p did not contain a valid double
}

編集:「プログラムの力はlogcatに情報を残さずにすぐに閉じます」

Logcatの出力に情報が残されていないことはわかりませんが、強制終了は一般的に、NumberFormatExceptionなどのキャッチされない例外があることを意味します。

71
Izkata

これを試して:

double d= Double.parseDouble(yourString);
16

Doubleオブジェクトをネイティブdouble値フィールドに割り当てるようです。それは本当にコンパイルされますか?

Double.valueOf()はDoubleオブジェクトを作成するため、.doubleValue()は必要ないはずです。

ネイティブdoubleフィールドが必要な場合は、フィールドをdoubleとして定義してから.doubleValue()を使用する必要があります

5
jkj

同様の問題があります。 EditTextテキストコンテンツの値を2倍に正しくフォーマットするには、このコードを使用します。

try {
        String eAm = etAmount.getText().toString();
        DecimalFormat dF = new DecimalFormat("0.00");
        Number num = dF.parse(eAm);
        mPayContext.amount = num.doubleValue();
    } catch (Exception e) {
        mPayContext.amount = 0.0d;
    }

これは、現在の電話ロケールから独立しており、正しいdouble値を返します。

それが助けになることを願っています。

2
bershadskiy

Double(String)コンストラクターの使用はどうですか?そう、

protein = new Double(p);

なぜ違うのかはわかりませんが、一見の価値があるかもしれません。

2
MikeTheReader

私は同じ問題を抱えていましたが、私はそれを理解しました:

  • oncreateメソッドでEditText値を解析すると、アプリの起動時に解析する値がないか、または文字であるプレースホルダーがないため、アプリがクラッシュしました。

私のコード:

package com.example.herodav.volumeapp;

import Android.renderscript.Double2;
import Android.support.v7.app.AppCompatActivity;
import Android.os.Bundle;
import Android.view.*;
import Android.widget.*;

import org.w3c.dom.Text;

public class MainActivity extends AppCompatActivity {

    EditText height, length, depth;
    TextView volume;
    double h,l,d,vol;


    @Override
    protected void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);
        setContentView(R.layout.activity_main);

        height = (EditText)findViewById(R.id.h);
        length = (EditText)findViewById(R.id.l);
        depth = (EditText)findViewById(R.id.d);
        volume = (TextView)findViewById(R.id.v);

        Button btn = (Button)findViewById(R.id.btn);
        btn.setOnClickListener(new View.OnClickListener() {
            @Override
            public void onClick(View v) {
                calculateVolume();
                volume.setText("Volume = " + String.valueOf(vol));
            }
        });
    }

    public void calculateVolume(){
        h = Double.parseDouble(height.getText().toString());
        l = Double.parseDouble(length.getText().toString());
        d = Double.parseDouble(depth.getText().toString());
        vol = h*l*d;
    }
}

2
Hero
  kw=(EditText)findViewById(R.id.kw);
    btn=(Button)findViewById(R.id.btn);
    cost=(TextView )findViewById(R.id.cost);


            btn.setOnClickListener(new View.OnClickListener() {
        @Override
        public void onClick(View v) { cst =  Double.valueOf(kw.getText().toString());
            cst = cst*0.551;
            cost.setText(cst.toString());
        }
    });
1
Areej Qasrawi
String sc1="0.0";
Double s1=Double.parseDouble(sc1.toString());
0
Neha Trivedi