Posts

Showing posts with the label Android

BMI Calculator Android App on Google Play

Image
Introduction My first android application that i published on google play. it is a simple application to calculate an individual body fat. This app was beautifully crafted using material design as font end implementation and the new official language of android which is Kotlin. Google Play You can download the application on Google play using this link:  https://play.google.com/store/apps/details?id=com.kaveersoftware.kaveer.bmicalculator How it works Splash screen The splash screen will load components which will be used in the next activity which is the main activuty where all the process and calculation of BMI will take place Main Activity The main activity is used to prompt user to enter details such as their weight and height either in metric or imperial measurement system The app will perform validation check on the user input data. If all data are valid the application will use the data to perform calculation of BMI. below is a code sni

Login/Sign up and authentication process - Asp.net Web API, C#, Android Application, SQL server

Image
Implement Login/Sign up and authentication process to demonstrate my skills and understanding using technologies like ASP.NET C#, WebApi, Java and SQL server Tools Microsoft Visual Studio 2017 or latest Android Studio SQL server 2017 No-IP desktop application Additional Information and plugin To register For NO-IP service  Here For the tutorial on NO-IP and forwarding rule, click  Here To download and install UNITY.WEBAPI for repository pattern and dependency injection in ASP.NET WebApi click  Here Creating projects, solution and database Android studio Step 1 Step 2 Step 3 Visual Studio 2017 Step 1: Create a new project Step 2: Install Unity.WebAPI Open "Package manager console " and paste the following command SQL server Step 1: Create a database Right click on database folder in SQL server from the context menu select New Database Step 2: Login  Right click on login under Security/Login.

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

Google reCAPTCHA implementation - ASP.NET C#, ASP.NET Web API, Android

Image
Google reCAPTCHA implementation ASP.NET C# Steps to implement Google reCAPTCHA in your website using technologies such as ASP.NET C#, ASP.NET web API, HTML and javascript. First you need to use your google account to login to Google reCAPTCHA  to register a new site. Add a label of your choice in the label section and for web implementation select the reCAPTCHA V2 radio button. Next in the domain section you can add several domains, for testing purposes you can add localhost also followed by another domain in the next line. Accept the terms and conditions and click on the button register. After you click register, google will generate a site key and a secret key and  instructions how to integrate it on both client and server side. Create ASP.NET Web API Next step is to open Microsoft Visual Studio and create a new project by selecting File > New from the menu bar and then select Project.  Select ASP.NET Web Application(.NET Framework) in the popup windows,