From b314fc3fccc2266a14f462999538cb92b54c2973 Mon Sep 17 00:00:00 2001 From: williamito Date: Tue, 14 Mar 2023 02:20:16 -0700 Subject: [PATCH] Update starter code to match latest codelab. (#1908) * Update starter code to match latest codelab. * spotless --- .../java/com/google/codelab/sdclibrary/MainActivity.kt | 8 +++----- 1 file changed, 3 insertions(+), 5 deletions(-) diff --git a/codelabs/datacapture/app/src/main/java/com/google/codelab/sdclibrary/MainActivity.kt b/codelabs/datacapture/app/src/main/java/com/google/codelab/sdclibrary/MainActivity.kt index e35d850ed8..7854c412a9 100644 --- a/codelabs/datacapture/app/src/main/java/com/google/codelab/sdclibrary/MainActivity.kt +++ b/codelabs/datacapture/app/src/main/java/com/google/codelab/sdclibrary/MainActivity.kt @@ -29,16 +29,14 @@ class MainActivity : AppCompatActivity() { super.onCreate(savedInstanceState) setContentView(R.layout.activity_main) - // 5.2 Replace with code from the codelab to configure a questionnaire fragment. - - // 5.3 Replace with code from the codelab to add the questionnaire to the FragmentContainerView. + // 4.2 Replace with code from the codelab to add a questionnaire fragment. } private fun submitQuestionnaire() { - // 6 Replace with code from the codelab to get a questionnaire response. + // 5 Replace with code from the codelab to get a questionnaire response. - // 7 Replace with code from the codelab to extract FHIR resources from QuestionnaireResponse. + // 6 Replace with code from the codelab to extract FHIR resources from QuestionnaireResponse. } override fun onCreateOptionsMenu(menu: Menu): Boolean {