我自己解决了
Intent intent11 = new Intent(context, MainClass.class);
int strName = -1;
intent11.putExtra("STRING_I_NEED", strName);
intent11.putExtra("Width", Width);
intent11.putExtra("height", height);
intent11.addFlags(Intent.FLAG_ACTIVITY_NEW_TASK);
context.startActivity(intent11);
Bundle bundle = getIntent().getExtras();
if (bundle != null) {
if (bundle.getInt("STRING_I_NEED") == -1) {
Width = Double.parseDouble(bundle.getString("Width"));
height = Double.parseDouble(bundle.getString("height"));
}
}