mirror of
https://github.com/bspeice/UNCCGameDay
synced 2025-07-06 08:15:06 -04:00
Refactor, don't use the application context
This commit is contained in:
@ -10,11 +10,8 @@ import com.uncc.gameday.R;
|
||||
|
||||
public class Alerts extends MenuActivity {
|
||||
|
||||
Context ctx;
|
||||
|
||||
protected void onCreate(Bundle savedInstanceState) {
|
||||
super.onCreate(savedInstanceState);
|
||||
this.ctx = getApplicationContext();
|
||||
setContentView(R.layout.activity_alerts);
|
||||
}
|
||||
|
||||
@ -22,29 +19,29 @@ public class Alerts extends MenuActivity {
|
||||
int toastDuration = Toast.LENGTH_SHORT;
|
||||
if (((CheckBox) view).isChecked())
|
||||
// Enable Timed alerts
|
||||
Toast.makeText(this.ctx, "Timed alerts enabled.", toastDuration).show();
|
||||
Toast.makeText(this, "Timed alerts enabled.", toastDuration).show();
|
||||
else
|
||||
// Disable Timed alerts
|
||||
Toast.makeText(this.ctx, "Timed alerts disabled.", toastDuration).show();
|
||||
Toast.makeText(this, "Timed alerts disabled.", toastDuration).show();
|
||||
}
|
||||
|
||||
public void onClickOrganizationAlerts(View view) {
|
||||
int toastDuration = Toast.LENGTH_SHORT;
|
||||
if (((CheckBox) view).isChecked())
|
||||
// Enable Organization alerts
|
||||
Toast.makeText(this.ctx, "Organization alerts enabled.", toastDuration).show();
|
||||
Toast.makeText(this, "Organization alerts enabled.", toastDuration).show();
|
||||
else
|
||||
// Disable Organization alerts
|
||||
Toast.makeText(this.ctx, "Organization alerts disabled.", toastDuration).show();
|
||||
Toast.makeText(this, "Organization alerts disabled.", toastDuration).show();
|
||||
}
|
||||
|
||||
public void onClickUniversityAlerts(View view) {
|
||||
int toastDuration = Toast.LENGTH_SHORT;
|
||||
if (((CheckBox) view).isChecked())
|
||||
// Enable University alerts
|
||||
Toast.makeText(this.ctx, "University alerts enabled.", toastDuration).show();
|
||||
Toast.makeText(this, "University alerts enabled.", toastDuration).show();
|
||||
else
|
||||
// Disable University alerts
|
||||
Toast.makeText(this.ctx, "University alerts disabled.", toastDuration).show();
|
||||
Toast.makeText(this, "University alerts disabled.", toastDuration).show();
|
||||
}
|
||||
}
|
||||
|
Reference in New Issue
Block a user