一時的に消していた処理を復元

This commit is contained in:
ろむねこ 2024-07-09 13:06:29 +09:00
parent 364f580fbc
commit 4d2f177a88
Signed by: Fujimatsu
GPG Key ID: FA1F39A1BA37D168

View File

@ -168,12 +168,12 @@ public class CommonHomeFragment extends Fragment {
slideUp.setAnimationListener(new Animation.AnimationListener() { slideUp.setAnimationListener(new Animation.AnimationListener() {
@Override @Override
public void onAnimationStart(Animation animation) { public void onAnimationStart(Animation animation) {
recyclerViewRefresh();
} }
@Override @Override
public void onAnimationEnd(Animation animation) { public void onAnimationEnd(Animation animation) {
calendarContainer.setVisibility(View.GONE); calendarContainer.setVisibility(View.GONE);
recyclerViewRefresh();
} }
@Override @Override
@ -187,11 +187,11 @@ public class CommonHomeFragment extends Fragment {
@Override @Override
public void onAnimationStart(Animation animation) { public void onAnimationStart(Animation animation) {
calendarContainer.setVisibility(View.VISIBLE); calendarContainer.setVisibility(View.VISIBLE);
recyclerViewRefresh();
} }
@Override @Override
public void onAnimationEnd(Animation animation) { public void onAnimationEnd(Animation animation) {
recyclerViewRefresh();
} }
@Override @Override
@ -205,6 +205,9 @@ public class CommonHomeFragment extends Fragment {
} }
}); });
initCalender();
updateData();
return view; return view;
} }
@ -223,7 +226,6 @@ public class CommonHomeFragment extends Fragment {
@Override @Override
public void onResume() { public void onResume() {
super.onResume(); super.onResume();
// updateData();
if (isChildMode) { if (isChildMode) {
setupFabChild(); setupFabChild();
} else { } else {