Posts

Showing posts from April, 2019

ASCII value finder app (ASCII Finder)

Image
Whole code available at my GitHub: https://github.com/aditya0072001/ASCII-FINDER Screenshots:

Login App made with firebase as database(CommonLogger)

Image
So the app starts with a registration menu and an option to login if you are an old user and redirect you to the login screen and if the login is successful it redirects to welcome screen with log out button. Backend: MainActivity.java(Registration menu): login.java: welcome.java Frontend: activity_main.xml: activity_login.xml: activity_welcome.xml: So that is how the app integrates and comes out as ->

Reverse String Android App (Reversed)

Image
This is my first app made which reverse any input a user give. Software Required: 1. Android Studio 2.Adobe Xd Designing: It is done in adobe Xd Coding: XML part: <? xml version= "1.0" encoding= "utf-8" ?> <android.support.constraint.ConstraintLayout xmlns: android = "http://schemas.android.com/apk/res/android" xmlns: app = "http://schemas.android.com/apk/res-auto" xmlns: tools = "http://schemas.android.com/tools" android :layout_width= "match_parent" android :layout_height= "match_parent" android :background= "@drawable/screen" tools :context= ".MainActivity" > <EditText android :id= "@+id/reverse" android :layout_width= "334dp" android :layout_height= "57dp" android :layout_marginStart= "8dp" android :layout_marginTop= "8dp" android :lay...