Create HabitTypeDialog

This commit is contained in:
2020-06-17 07:00:25 -05:00
parent 6070a7af2e
commit 72ad14119a
12 changed files with 248 additions and 46 deletions

View File

@@ -61,14 +61,9 @@ public class ListHabitsMenuBehavior
updateAdapterFilter();
}
public void onCreateBooleanHabit()
public void onCreateHabit()
{
screen.showCreateBooleanHabitScreen();
}
public void onCreateNumericalHabit()
{
screen.showCreateNumericalHabitScreen();
screen.showSelectHabitTypeDialog();
}
public void onViewFAQ()
@@ -150,12 +145,10 @@ public class ListHabitsMenuBehavior
void showAboutScreen();
void showCreateBooleanHabitScreen();
void showCreateNumericalHabitScreen();
void showFAQScreen();
void showSettingsScreen();
void showSelectHabitTypeDialog();
}
}