Showing posts with label Android. Show all posts
Showing posts with label Android. Show all posts

Saturday, 29 May 2021

AtoZ Fitness BP Module

 This App has the Following Screens.1. Registration.2. Add BP Readings3.View BP Readings.4. Welcome Screen5. Graphical View The Above Code can be found at the Github from the link here....

GraphView in Android

Add the following Gradle dependenciesThe Following Code defines the Graph View of line Graph Series.implementation group: 'com.jjoe64', name: 'graphview', version: '4.2.2'package com.atozfit.Activity;import android.graphics.Color;import android.os.Bundle;import androidx.appcompat.app.AppCompatActivity;import com.atozfit.R;import com.atozfit.Service.AtoZBPService;import com.atozfit.main.AtoZBPAttributes;import com.jjoe64.graphview.DefaultLabelFormatter;import com.jjoe64.graphview.GraphView;import com.jjoe64.graphview.helper.StaticLabelsFormatter;import...

Displaying the Table View In Android

 The Following Activity defines the Table View of the Patient BP Data.package com.atozfit.Activity;import android.app.ProgressDialog;import android.content.Context;import android.graphics.Color;import android.os.AsyncTask;import android.os.Bundle;import android.util.TypedValue;import android.view.Gravity;import android.view.View;import android.widget.LinearLayout;import android.widget.TableLayout;import android.widget.TableRow;import android.widget.TextView;import androidx.appcompat.app.AppCompatActivity;import com.atozfit.R;import com.atozfit.Service.AtoZBPService;import com.atozfit.main.AtoZBPAttributes;import java.text.SimpleDateFormat;import java.util.List;import...

Activity Navigation in Android

 In the following posts, we can see how to navigate to the other activity in android. In the Below, Example is the addUserBtn is the Button created, on clicking this button...

Passing Data Between Activity in Android

 Use of the Intent We can Pass the Data between the Activity in the android application below the sample code to set the data in the Intent.Consider the Below Activity Named...

Creating My First Android Application

In order to start with your first android app, download the android studio IDE and install the required features. It’s a long Process and downloads a lot of google library and...