The Kids Learning App organises its game library into four distinct categories so children can quickly find the type of game they want to play. Each category has its own dedicated Activity (Documentation Index
Fetch the complete documentation index at: https://mintlify.com/SaadAhmed1122/Kids_learnig_App/llms.txt
Use this file to discover all available pages before exploring further.
Racing, Action, Cards, Classic) that presents a grid of game tiles. Tapping any tile passes the game’s URL to GameLoader via the WEB_PASSING Intent extra, which opens the game inside a full-screen WebView.
How Categories Work
TheCategory Activity is reachable from the bottom navigation bar in GameMainAct. From there, players drill into a genre-specific screen. Every category Activity follows the same pattern:
User selects a game tile
The category Activity (e.g.,
Racing.java) creates an Intent targeting GameLoader and attaches the game URL as the WEB_PASSING string extra.All category Activities share the same
GameLoader destination. The only difference between tiles is the URL string passed as WEB_PASSING.Racing
The Racing category (Racing.java) contains six high-speed games sourced from Famobi. Layout IDs r_item1–r_item6 map to the following titles:
| ID | Game |
|---|---|
r_item1 | Moto X3M |
r_item2 | Highway Rider Extreme |
r_item3 | Don’t Crash |
r_item4 | Racing Cars |
r_item5 | Truck Trials |
r_item6 | Race Right |
Action
The Action category (Action.java) serves six fast-paced games hosted on topgames.com. Layout IDs a_item1–a_item6 map to:
| ID | Game |
|---|---|
a_item1 | Jail Breaker |
a_item2 | Shortcut Run |
a_item3 | Epic Race 3D |
a_item4 | Halloween Magic Tiles |
a_item5 | Light It Up Online |
a_item6 | Block City Wars |
Cards
The Cards category (Cards.java) offers four classic card games from Famobi. Layout IDs crd_item1–crd_item4 map to:
| ID | Game |
|---|---|
crd_item1 | Duo Cards |
crd_item2 | Gin Rummy Plus |
crd_item3 | Crossover 21 |
crd_item4 | Solitaire Classic Easter |
Classic
The Classic category (Classic.java) brings timeless favourites from Famobi and Google. Layout IDs c_item1–c_item6 map to:
| ID | Game |
|---|---|
c_item1 | Pac-Man |
c_item2 | Bubble Woods |
c_item3 | Cannon Balls 3D |
c_item4 | Color Shape |
c_item5 | Knife Rain |
c_item6 | 3D Chess |
Category Navigation Flow
The
Category Activity itself is a navigation hub — the genre-specific Activities (Racing, Action, Cards, Classic) are launched from within it. Users reach it through the Category icon in GameMainAct’s bottom navigation bar.