How to make age Calculator app in Android Studio

Create a new project in Android Studio and name it “AgeCalculatorApp”. Open the activity_main.xml file located in the res/layout directory. Replace the existing code with the following XML layout:

Open the MainActivity.java file located in the java/<your_package_name> directory. Replace the existing code with the following Java code:  

Open the AndroidManifest.xml file located … Read more

How to make Tic Tac Toe game App in Android Studio

Here are Tic Tac Toe game android App code below Create a new project in Android Studio and name it “TicTacToeApp”. Open the activity_main.xml file located in the res/layout directory. Replace the existing code with the following XML layout:

Open the MainActivity.java file located in the java/<your_package_name> directory. Replace the existing code with the … Read more