Hello,
I've done some research, but to no avail. Also my previous question didn't work as planned.
So here is exactly what I want to do:
1.) On my MainActivity, the User enters a Numerical value in an EditText.
2.) When they press an "OK" Button, it starts a Service to run a Timer for how long they entered.
3.) When the the Timer time runs out, the Service completes some additional Actions.
Questions:
1.) Can I simply use the Button to start the Service via an Intent, then in the Service put the code?
1b.) Can't figure out exactly how to get the User input from the EditText, from within Service.
2.) Can I run the "additional Actions" when the Timer runs out from WITHIN the Service?
2b.) Or, when the Timer is up, do I need to fire a BroadcastReceiver to complete the Actions?
3.) Do I need to add anything special such as Intent-Filters in my Manifest?
Basically, I'm having trouble figuring out what code goes where.
Currently I'm using a combination of Alarm Manager, PendingIntent, and Intent.
Any help would be greatly appreciated, as I've been trying to do this correctly for nearly a month.
I may be somewhat new to programming Android, but I'm eager to learn, so thank you in advance!
public class MainActivity extends AppCompatActivity {
@Override
protected void onCreate(Bundle savedInstanceState) {
    super.onCreate(savedInstanceState);
    setContentView(R.layout.activity_main);
}
public void timerButtonClick(View view) {
    EditText timerValue = (EditText) findViewById(R.id.timerValue);
    assert timerValue != null;
    int timerInt = Integer.parseInt(timerValue.getText().toString());
    AlarmManager alarmManager = (AlarmManager) getSystemService(ALARM_SERVICE);
    Intent timerIntent = new Intent(this, TimerService.class);
    PendingIntent timerPendingIntent = PendingIntent
            .getService(this.getApplicationContext(), 234324243, timerIntent, 0);
    alarmManager.set(AlarmManager.RTC,
            System.currentTimeMillis() + (timerInt * 1000), timerPendingIntent);
    finish();
}
}
NOTE:  Keep in mind, I'm trying to put the Timer INSIDE my Service, NOT in my Main Activity.. So I assume much of this Code needs to be moved to my Service. But again, not sure exactly how to do this.
Thanks!
 
     
    