refactor/refactor #152

Merged
Fujimatsu merged 4 commits from refactor/refactor into main 2024-07-08 15:18:44 +00:00
2 changed files with 9 additions and 2 deletions

View File

@ -81,6 +81,12 @@ public class CommonHomeFragment extends Fragment {
childId = getArguments().getString(ARG_CHILD_ID);
}
logger = ksLoggerFactory.create("CommonHomeFragment");
if (isChildMode) {
logger.info("Child mode, childId: " + childId);
} else {
logger.info("Parent mode");
}
}
@Override
@ -243,7 +249,7 @@ public class CommonHomeFragment extends Fragment {
try {
Thread.sleep(500);
} catch (InterruptedException e) {
e.printStackTrace();
// do nothing
}
swipeRefreshLayout.setRefreshing(false);
});

View File

@ -24,11 +24,12 @@
android:text="PLACEHOLDER"
android:textAppearance="@style/TextAppearance.AppCompat.Medium" />
<!-- ImageButtonに変更? -->
<Button
android:id="@+id/completeButton"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="Button" />
android:text="完了" />
</LinearLayout>
</androidx.constraintlayout.widget.ConstraintLayout>