David Olson has over 20 years of experience in the refrigeration industry. David began their career in 1999 as a Facility Service Manager at Americold. David then moved to Cold Logic Corp in 2010, where they served as Maintenance Manager. In 2017, they were appointed Regional Maintenance Manager at Lineage Logistics. After a year, they took on the role of Sr. Utilities Manager at Wonderful Citrus. In 2020, they became Sr. Facilities Manager at Conagra Brands, and most recently in 2022, they were promoted to Sr. Refrigeration Engineer at CrossnoKaye.
package com.example.james.helloworld;
import android.content.Context;
import android.content.Intent;
import android.content.SharedPreferences;
import android.support.v7.app.AppCompatActivity;
import android.os.Bundle;
import android.view.View;
import android.widget.Button;
import android.widget.EditText;
import android.widget.Toast;
public class MainActivity extends AppCompatActivity {
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_main);
final EditText nameEditText = findViewById(R.id.nameEditText);
Button saveButton = findViewById(R.id.saveButton);
Button nextButton = findViewById(R.id.nextButton);
saveButton.setOnClickListener(new View.OnClickListener() {
@Override
public void onClick(View v) {
String name = nameEditText.getText().toString();
SharedPreferences sharedPreferences = getSharedPreferences("com.example.james.helloworld", Context.MODE_PRIVATE);
sharedPreferences.edit().putString("name", name).apply();
Toast.makeText(MainActivity.this, "Saved!", Toast.LENGTH_SHORT).show();
}
});
nextButton.setOnClickListener(new View.OnClickListener() {
@Override
public void onClick(View v) {
Intent intent = new Intent(MainActivity.this, SecondActivity.class);
startActivity(intent);
}
});
}
}
This person is not in any teams
This person is not in any offices