Passing a double value through to a different clas

2020-01-29 15:10发布

I am just wondering what ways there are to pass two or more double values from classA to ClassB

at the minute i have found code that give me this method:

double a, b;
double a = 2.456;
double b = 764.2353;
Intent i = new Intent();
i.setClassName("com.b00348312.application","com.b00348312.application.ClassB");
double number = getIntent().getDoubleExtra("value1", a);
double number = getIntent().getDoubleExtra("value2", b);
startActivity(i); 

This does not pass the values through nor can i find a way of retrieving these values

Another question on here suggested the method of creating an instance of the class but trying that i cant seem to pass the values through properly.

I am programming for Android, so I don't know if the method will be different

4条回答
Evening l夕情丶
2楼-- · 2020-01-29 15:24

You need to use:

i.putExtra("number1", number1);
i.putExtra("number2", number1);
查看更多
Root(大扎)
3楼-- · 2020-01-29 15:25

This is nearly the correct technique for sending information between Activities. You need to use the putDouble() method like so:

i.putDouble("value1", a);
i.putDouble("value2", b);

In order to access these values you need to pull them out of the Extras map on the receiving Activity end like so:

public void onCreate(Bundle savedInstanceState) {
     super.onCreate(savedInstanceState);
     setContentView(R.layout.main2);
     Intent intent=getIntent();
     double a=intent.getExtras().getDouble("value1");
     double b=intent.getExtras().getDouble("value2");
查看更多
甜甜的少女心
4楼-- · 2020-01-29 15:33

You're not actually placing your doubles into your Intent

Intent yourInent = new Intent(thisActivity.this, nextActivity.class);
Bundle b = new Bundle();
b.putDouble("key", doubleVal);
yourIntent.putExtras(b);
startActivity(yourIntent);

Then, get it in your next Activity:

Bundle b = getIntent().getExtras();
double result = b.getDouble("key");
查看更多
男人必须洒脱
5楼-- · 2020-01-29 15:40

You can try by this way

double a, b;
Intent i = new Intent(classA.this, classB.class);

Bundle params = new Bundle();
params.putDouble("doubleA", a);
params.putDouble("doubleB", b);
i.putExtras(params);
startActivity(i);

At other side you need something like this

double a, b;
// Get Params from intent
Intent it = getIntent();        
if (it != null)
{
    Bundle params = it.getExtras();
    if  (params != null)
    {
         a = params.getDouble("doubleA");
         b = params.getDouble("doubleB");               
     }
}
查看更多
登录 后发表回答