Posts

Showing posts from January, 2018

Number To Words - android

Image
Simple application to convert a number into word. This app may be quite handy when you have to fill a check or any other bank documents where you have to enter the amount both in figure and words Splash screen Splash screen will appear for about 3 seconds when the application is starting up public class SplashScreen extends AppCompatActivity { private final int SPLASH_DISPLAY_LENGTH = 3000 ; @ Override protected void onCreate ( Bundle savedInstanceState ) { super . onCreate ( savedInstanceState ) ; getWindow ( ) . setFlags ( WindowManager . LayoutParams . FLAG_FULLSCREEN , WindowManager . LayoutParams . FLAG_FULLSCREEN ) ; requestWindowFeature ( Window . FEATURE_NO_TITLE ) ; //2 lines of code make app fullscreen setContentView ( R . layout . activity_splash_screen ) ; new Handler ( ) . postDelayed ( new Runnable ( ) { @ Override public void run ( ) {

Shopping List Compare - Android

Image
This is a simple Android application created with the intention to make user save money at the end of the month or while doing shopping. This application will compare the prices of a particular product at different stores and output the result. With this version 1.0, the user will have to feed the application with the store that they want to compare and prices of products but version 2.0 the user will only have to select their favorite stores and the application will automatically retrieve the product with the price using internet connection. MainActivity The main activity consists of the list previously added by the user. The user can perform actions like view the list, which will show the stores selected for that particular list and their products. If you want to delete the list long press on the list name and then in the pop-up menu select Delete. Simple and elegant drawer. To add a new list select Add List in the drawer menu or you can click on the float add b