How to pass context?
问题 I want to pass the context of the main activity to another class in order to create a Toast. My main activity calls a class that will delete a file. The class that deletes files will call a toast if the file does not exist. Here is my code: public class MyActivity extends AppCompatActivity { public void onCreate(Bundle savedInstanceState) { // create a file Button buttoncreate = (Button)findViewById(R.id.create_button); Button buttondelete = (Button)findViewById(R.id.delete_button); ...