https://github.com/chirag3003/words-app-kotlin-beginner
https://github.com/chirag3003/words-app-kotlin-beginner
android android-developer beginner kotlin
Last synced: about 2 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/chirag3003/words-app-kotlin-beginner
- Owner: chirag3003
- License: apache-2.0
- Created: 2022-10-29T21:06:21.000Z (over 3 years ago)
- Default Branch: master
- Last Pushed: 2022-10-29T21:06:57.000Z (over 3 years ago)
- Last Synced: 2025-05-08T20:17:48.464Z (about 1 year ago)
- Topics: android, android-developer, beginner, kotlin
- Language: Kotlin
- Homepage:
- Size: 159 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- Contributing: CONTRIBUTING.md
- License: LICENSE
- Code of conduct: code-of-conduct.md
Awesome Lists containing this project
README
# Words App
This folder contains the source code for the Words app codelab.
# Introduction
Words app allows you to select a letter and use Intents to navigate to an Activity that
presents a number of words starting with that letter. Each word can be looked up via a web search.
Words app contains a scrollable list of 26 letters A to Z in a RecyclerView. The orientation
of the RecyclerView can be changed between a vertical list or a grid of items.
The app demonstrates the use of Intents in two ways:
* to navigate inside an app by specifying an explicit destination, and,
* allowing Android to service the Intent using the apps and resources present on the device.
# Pre-requisites
* Experience with Kotlin syntax.
* Able to create an Activity.
* Able to create a RecyclerView and supply it with data.
# Getting Started
1. Install Android Studio, if you don't already have it.
2. Download the sample.
3. Import the sample into Android Studio.
4. Build and run the sample.