An Android app demonstrating seven common form widgets across two activities. Each widget
reports its current state to a TextView beside it, so changes are visible immediately.
MainActivity
RatingBar— shows the number of stars selectedCheckBox— shows checked / uncheckedSeekBar— shows the current progress valueButton— opens the second screen
SecondActivity
Switch— shows on / offRadioGroup— shows which radio button is selectedSpinner— shows the item picked from the drop-down (R.array.fruits)- Back button — calls
finish()to return to the first screen
./gradlew assembleDebugThe APK lands in app/build/outputs/apk/debug/. Open the project in Android Studio and run
it on an emulator or device to interact with the widgets.