-
Notifications
You must be signed in to change notification settings - Fork 494
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Second project work, BaseListDiffCallback Instead of ListDiffCallback #1
base: main
Are you sure you want to change the base?
Conversation
return newItem; | ||
} | ||
|
||
// @Override |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Закомментированный код лучше убрать.
@@ -0,0 +1,5 @@ | |||
package ru.yandex.practicum.contacts.utils.android; | |||
|
|||
public interface OnDebounceListener { |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
А зачем это? По заданию не нужно.
@@ -33,7 +33,13 @@ protected void onCreate(@Nullable Bundle savedInstanceState) { | |||
super.onCreate(savedInstanceState); | |||
binding = SplashActivityBinding.inflate(getLayoutInflater()); | |||
setContentView(binding.getRoot()); | |||
binding.settingsButton.setOnClickListener(view -> navigateToSettings()); | |||
binding.settingsButton.setOnClickListener(new View.OnClickListener() { |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Это тоже лишние изменения
No description provided.