Skip to content

Commit

Permalink
added a to do
Browse files Browse the repository at this point in the history
  • Loading branch information
ElecSpartan committed May 3, 2024
1 parent 9bdad48 commit eaadbfb
Showing 1 changed file with 4 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,8 @@
import android.widget.TimePicker;
import android.widget.Toast;

import com.google.android.material.snackbar.Snackbar;

import java.time.LocalDate;
import java.util.Calendar;

Expand Down Expand Up @@ -132,6 +134,8 @@ public void changeTime(View v){
@Override
public void onTimeSet(TimePicker view, int hourOfDay, int minute) {
Calendar selectedTime = Calendar.getInstance();
// TO DO:
// USE DATE STORED HERE
selectedTime.set(Calendar.HOUR_OF_DAY, hourOfDay);
selectedTime.set(Calendar.MINUTE, minute);

Expand Down

0 comments on commit eaadbfb

Please sign in to comment.