Sickle Cell App

This commit is contained in:
Ramandeep
2021-08-02 18:14:45 +05:30
commit 7dca70e512
45 changed files with 1622 additions and 0 deletions

1
app/.gitignore vendored Normal file
View File

@@ -0,0 +1 @@
/build

49
app/build.gradle Normal file
View File

@@ -0,0 +1,49 @@
plugins {
id 'com.android.application'
id 'com.google.firebase.crashlytics'
id 'com.google.gms.google-services'
}
android {
compileSdkVersion 30
buildToolsVersion "30.0.3"
defaultConfig {
applicationId "com.smi.SickleCell"
minSdkVersion 19
targetSdkVersion 30
versionCode 1
versionName "1.0"
multiDexEnabled true
testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"
}
buildTypes {
release {
minifyEnabled false
proguardFiles getDefaultProguardFile('proguard-android-optimize.txt'), 'proguard-rules.pro'
}
}
compileOptions {
sourceCompatibility JavaVersion.VERSION_1_8
targetCompatibility JavaVersion.VERSION_1_8
}
}
dependencies {
implementation 'androidx.appcompat:appcompat:1.3.0'
implementation 'com.google.android.material:material:1.4.0'
implementation 'androidx.constraintlayout:constraintlayout:2.0.4'
implementation 'com.google.firebase:firebase-database:20.0.1'
testImplementation 'junit:junit:4.+'
implementation 'com.google.firebase:firebase-database:19.5.1'
androidTestImplementation 'androidx.test.ext:junit:1.1.3'
androidTestImplementation 'androidx.test.espresso:espresso-core:3.4.0'
}

39
app/google-services.json Normal file
View File

@@ -0,0 +1,39 @@
{
"project_info": {
"project_number": "93211969564",
"project_id": "sicklecell-app",
"storage_bucket": "sicklecell-app.appspot.com"
},
"client": [
{
"client_info": {
"mobilesdk_app_id": "1:93211969564:android:b83a52de2d54f94f21b7d9",
"android_client_info": {
"package_name": "com.smi.SickleCell"
}
},
"oauth_client": [
{
"client_id": "93211969564-kd1qj9bgi5ol338u3smjq2jgr9d0hav7.apps.googleusercontent.com",
"client_type": 3
}
],
"api_key": [
{
"current_key": "AIzaSyDlTMjlvLcXPdbfCi2UWNKeyanaHaWEoZo"
}
],
"services": {
"appinvite_service": {
"other_platform_oauth_client": [
{
"client_id": "93211969564-kd1qj9bgi5ol338u3smjq2jgr9d0hav7.apps.googleusercontent.com",
"client_type": 3
}
]
}
}
}
],
"configuration_version": "1"
}

21
app/proguard-rules.pro vendored Normal file
View File

@@ -0,0 +1,21 @@
# Add project specific ProGuard rules here.
# You can control the set of applied configuration files using the
# proguardFiles setting in build.gradle.
#
# For more details, see
# http://developer.android.com/guide/developing/tools/proguard.html
# If your project uses WebView with JS, uncomment the following
# and specify the fully qualified class name to the JavaScript interface
# class:
#-keepclassmembers class fqcn.of.javascript.interface.for.webview {
# public *;
#}
# Uncomment this to preserve the line number information for
# debugging stack traces.
#-keepattributes SourceFile,LineNumberTable
# If you keep the line number information, uncomment this to
# hide the original source file name.
#-renamesourcefileattribute SourceFile

View File

@@ -0,0 +1,26 @@
package com.smi.SickleCell;
import android.content.Context;
import androidx.test.platform.app.InstrumentationRegistry;
import androidx.test.ext.junit.runners.AndroidJUnit4;
import org.junit.Test;
import org.junit.runner.RunWith;
import static org.junit.Assert.*;
/**
* Instrumented test, which will execute on an Android device.
*
* @see <a href="http://d.android.com/tools/testing">Testing documentation</a>
*/
@RunWith(AndroidJUnit4.class)
public class ExampleInstrumentedTest {
@Test
public void useAppContext() {
// Context of the app under test.
Context appContext = InstrumentationRegistry.getInstrumentation().getTargetContext();
assertEquals("com.example.appandroid", appContext.getPackageName());
}
}

View File

@@ -0,0 +1,45 @@
<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="com.smi.SickleCell">
<uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE"/>
<uses-permission android:name="android.permission.ACCESS_COARSE_LOCATION" />
<uses-permission android:name="android.permission.ACCESS_NETWORK_STATE" />
<uses-permission android:name="android.permission.INTERNET" />
<uses-permission android:name="android.permission.ACCESS_FINE_LOCATION" />
<uses-permission android:name="android.permission.READ_EXTERNAL_STORAGE" />
<uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE" />
<uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE" />
<uses-permission android:name="android.permission.READ_EXTERNAL_STORAGE" />
<uses-permission android:name="android.permission.ACCESS_MEDIA_LOCATION"/>
<application
android:allowBackup="true"
android:icon="@drawable/shanmukha_logo_small"
android:label="@string/app_name"
android:requestLegacyExternalStorage="true"
android:roundIcon="@mipmap/ic_launcher_round"
android:supportsRtl="true"
android:theme="@style/Theme.AppAndroid">
<provider
android:name="androidx.core.content.FileProvider"
android:authorities="${applicationId}.fileprovider"
android:exported="false"
android:grantUriPermissions="true">
<meta-data
android:name="android.support.FILE_PROVIDER_PATHS"
android:resource="@xml/file_path" />
</provider>
<activity
android:name="com.smi.SickleCell.MainActivity"
android:screenOrientation="portrait">
<intent-filter>
<action android:name="android.intent.action.MAIN" />
<category android:name="android.intent.category.LAUNCHER" />
</intent-filter>
</activity>
</application>
</manifest>

View File

@@ -0,0 +1,573 @@
package com.smi.SickleCell;
import androidx.annotation.MainThread;
import androidx.annotation.NonNull;
import androidx.appcompat.app.AppCompatActivity;
import androidx.appcompat.app.AppCompatDelegate;
import androidx.core.app.ActivityCompat;
import androidx.core.content.ContextCompat;
import android.Manifest;
import android.content.ContentValues;
import android.content.Intent;
import android.content.SharedPreferences;
import android.content.pm.PackageManager;
import android.net.Uri;
import android.os.Bundle;
import android.os.Environment;
import android.util.Log;
import android.view.View;
import android.widget.AdapterView;
import android.widget.ArrayAdapter;
import android.widget.Button;
import android.widget.Spinner;
import android.widget.TextView;
import android.widget.Toast;
import com.google.android.gms.tasks.OnCompleteListener;
import com.google.android.gms.tasks.Task;
import com.google.firebase.database.DatabaseReference;
import com.google.firebase.database.FirebaseDatabase;
import java.io.BufferedReader;
import java.io.File;
import java.io.FileInputStream;
import java.io.IOException;
import java.io.InputStream;
import java.io.InputStreamReader;
import java.text.SimpleDateFormat;
import java.util.Calendar;
import java.util.HashMap;
public class MainActivity extends AppCompatActivity implements AdapterView.OnItemSelectedListener{
private Button confirmatory,screening;
private static final int REQUEST_CODE_PICK_FILE = 300;
String FilePath;
private TextView result;
float number1;
float number2;
private String TestRandomKey,saveCurrentDate, saveCurrentTime;
private DatabaseReference TestRef;
private TextView result_confirmatory;
String device;
String result_test;
String result_test1;
String targetUri;
String directory_path;
float value;
int flag=0;
File file=null;
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_main);
String directory_path = Environment.getExternalStorageDirectory().getPath() + "/SickleCell/";
screening=findViewById(R.id.screening);
confirmatory=findViewById(R.id.confirmatory);
TestRef = FirebaseDatabase.getInstance().getReference().child("Test_Data");
AppCompatDelegate.setDefaultNightMode(AppCompatDelegate.MODE_NIGHT_YES);
Spinner Spinner_gender = findViewById(R.id.spinner_device);
ArrayAdapter<CharSequence> adapter = ArrayAdapter.createFromResource(this,
R.array.instrument, android.R.layout.simple_spinner_item);
adapter.setDropDownViewResource(android.R.layout.simple_spinner_dropdown_item);
Spinner_gender.setAdapter(adapter);
Spinner_gender.setOnItemSelectedListener(this);
result=findViewById(R.id.result);
result_confirmatory=findViewById(R.id.result_confirmatory);
if(ContextCompat.checkSelfPermission(this, Manifest.permission.WRITE_EXTERNAL_STORAGE)!= PackageManager.PERMISSION_GRANTED)
{
ActivityCompat.requestPermissions(this,new String[]{Manifest.permission.WRITE_EXTERNAL_STORAGE},23);
directory_path = Environment.getExternalStorageDirectory().getPath() + "/SickleCell/";
File file = new File(directory_path);
if (!file.exists()) {
file.mkdirs();
}
}
if (ContextCompat.checkSelfPermission(this, Manifest.permission.READ_EXTERNAL_STORAGE) == PackageManager.PERMISSION_GRANTED) {
directory_path = Environment.getExternalStorageDirectory().getPath() + "/SickleCell/";
File file = new File(directory_path);
if (!file.exists()) {
file.mkdirs();
}
} else {
// Request permission from the user
ActivityCompat.requestPermissions(this,
new String[]{Manifest.permission.READ_EXTERNAL_STORAGE}, 0);
}
directory_path = Environment.getExternalStorageDirectory().getPath() + "/SickleCell/";
File file = new File(directory_path);
if (!file.exists()) {
file.mkdirs();
}
directory_path = Environment.getExternalStorageDirectory().getPath() + "/SickleCell/";
file = new File(directory_path);
if (!file.exists()) {
file.mkdirs();
}
screening.setOnClickListener(new View.OnClickListener() {
@Override
public void onClick(View v) {
flag=1;
createfolder();
selectCSVFile();
}
});
confirmatory.setOnClickListener(new View.OnClickListener() {
@Override
public void onClick(View v) {
flag=2;
createfolder();
selectCSVFile();
}
});
}
private void selectCSVFile(){
if (ContextCompat.checkSelfPermission(MainActivity.this, Manifest.permission.WRITE_EXTERNAL_STORAGE) != PackageManager.PERMISSION_GRANTED) {
ActivityCompat.requestPermissions(MainActivity.this, new String[]{Manifest.permission.WRITE_EXTERNAL_STORAGE}, 23);
}
Uri uri = Uri.parse((Environment.getExternalStorageDirectory().getPath() + "/SickleCell/"));
Intent intent = new Intent(Intent.ACTION_GET_CONTENT);
intent.setDataAndType(uri, "*/*");
// intent.setType("*/*");
startActivityForResult(intent,REQUEST_CODE_PICK_FILE);
}
@Override
protected void onActivityResult(int requestCode, int resultCode, Intent data) {
super.onActivityResult(requestCode, resultCode, data);
switch (requestCode) {
case REQUEST_CODE_PICK_FILE: {
if (resultCode == RESULT_OK) {
Log.e("file",data.getData().getPath());
FilePath = data.getData().getPath();
Log.e("Filepath",FilePath);
String filename1=FilePath.substring(FilePath.lastIndexOf("/")+1);
Log.e("file",filename1);
String s = FilePath;
directory_path = Environment.getExternalStorageDirectory().getPath() + "/SickleCell/";
targetUri = directory_path+filename1;
if(flag==1)
{
ImportCSV(new File(targetUri));
}
else if(flag==2)
{
ImportCSV2(new File(targetUri));
}
}
}
}
}
private void ImportCSV(File from) {
ContentValues cv = new ContentValues();
result_confirmatory.setText("");
result.setText("");
try {
InputStream inputStream = new FileInputStream(from);
BufferedReader br = new BufferedReader(new InputStreamReader(inputStream));
String line;
if(device.equals("TestRight"))
{
result_confirmatory.setText("");
result.setText("");
Log.e("device", "Test right");
while ((line = br.readLine()) != null) {
String[] values = line.split(",");
if (values[0].equals("427.084")) {
number1 = Float.parseFloat(String.valueOf(values[1]));
Log.e("number1", String.valueOf(number1));
}
else if(values[0].equals("555.035"))
{
number2 = Float.parseFloat(String.valueOf(values[1]));
Log.e("number2", String.valueOf(number2));
}
}
value= number2/number1;
Log.e("value",String.valueOf(value));
if(value<0.16)
{
result_confirmatory.setText("");
result.setText("Negative");
result_test=result.getText().toString();
result_test1=result_confirmatory.getText().toString();
SaveProductInfoToDatabase();
}
else
{
result.setText("Positive");
result_confirmatory.setText("");
result_test=result.getText().toString();
result_test1=result_confirmatory.getText().toString();
SaveProductInfoToDatabase();
}
}
else if (device.equals("Denovix"))
{
result_confirmatory.setText("");
result.setText("");
Log.e("device", "denovix");
while ((line = br.readLine()) != null) {
String[] values = line.split(",");
if (values[2].equals("427.084")) {
number1 = Float.parseFloat(String.valueOf(values[3]));
Log.e("number1", String.valueOf(number1));
}
else if(values[2].equals("555.035"))
{
number2 = Float.parseFloat(String.valueOf(values[3]));
Log.e("number2", String.valueOf(number2));
}
}
value=number2/number1;
Log.e("value",String.valueOf(value));
if(value<0.16)
{
result.setText("Negative");
result_test=result.getText().toString();
result_test1=result_confirmatory.getText().toString();
SaveProductInfoToDatabase();
}
else
{
result.setText("Positive");
result_test=result.getText().toString();
result_test1=result_confirmatory.getText().toString();
SaveProductInfoToDatabase();
}
}
} catch (IOException ex) {
throw new RuntimeException("Error in reading CSV file: " + ex);
}
}
private void ImportCSV2(File from) {
result_confirmatory.setText("");
result.setText("");
try {
InputStream inputStream = new FileInputStream(from);
BufferedReader br = new BufferedReader(new InputStreamReader(inputStream));
String line;
if(device.equals("TestRight"))
{
result_confirmatory.setText("");
result.setText("");
Log.e("device", "Test right");
while ((line = br.readLine()) != null) {
String[] values = line.split(",");
if (values[0].equals("427.084")) {
number1 = Float.parseFloat(String.valueOf(values[1]));
Log.e("number1", String.valueOf(number1));
}
else if(values[0].equals("555.035"))
{
number2 = Float.parseFloat(String.valueOf(values[1]));
Log.e("number2", String.valueOf(number2));
}
}
value=number2/number1;
Log.e("value",String.valueOf(value));
if(value<0.16)
{
result.setText("Negative");
result_test=result.getText().toString();
result_test1=result_confirmatory.getText().toString();
}
else
{
result.setText("Positive");
result_test=result.getText().toString();
result_test1=result_confirmatory.getText().toString();
}
if(value>=0.16 && value < 0.24)
{
result_confirmatory.setText("Sickle Cell Trait");
result_test=result.getText().toString();
result_test1=result_confirmatory.getText().toString();
SaveProductInfoToDatabase();
}
else if( value >=0.24)
{
result_confirmatory.setText("Sickle-Cell Disease");
result_test=result.getText().toString();
result_test1=result_confirmatory.getText().toString();
SaveProductInfoToDatabase();
}
}
else if (device.equals("Denovix"))
{
result_confirmatory.setText("");
result.setText("");
Log.e("device", "denovix");
while ((line = br.readLine()) != null) {
String[] values = line.split(",");
if (values[2].equals("427.084")) {
number1 = Float.parseFloat(String.valueOf(values[3]));
Log.e("number1", String.valueOf(number1));
}
else if(values[2].equals("555.035"))
{
number2 = Float.parseFloat(String.valueOf(values[3]));
Log.e("number2", String.valueOf(number2));
}
}
value=number2/number1;
Log.e("value",String.valueOf(value));
if(value<0.16)
{
result.setText("Negative");
}
else
{
result.setText("Positive");
}
if(value>=0.16 && value < 0.24)
{
result_confirmatory.setText("Sickle Cell Trait ");
SaveProductInfoToDatabase();
}
else if( value >0.24)
{
result_confirmatory.setText("Sickle-Cell Disease");
SaveProductInfoToDatabase();
}
}
} catch (IOException ex) {
throw new RuntimeException("Error in reading CSV file: " + ex);
}
}
@Override
public void onItemSelected(AdapterView<?> parent, View view, int position, long id) {
if(parent.getId() == R.id.spinner_device)
{
device = parent.getItemAtPosition(position).toString();
}
}
@Override
public void onNothingSelected(AdapterView<?> parent) {
}
private void createfolder()
{
directory_path = Environment.getExternalStorageDirectory().getPath() + "/SickleCell/";
file = new File(directory_path);
if (!file.exists()) {
file.mkdirs();
}
}
private void SaveProductInfoToDatabase()
{
HashMap<String, Object> productMap = new HashMap<>();
productMap.put("Value", String.valueOf(value));
productMap.put("number1", String.valueOf(number1));
productMap.put("number2",String.valueOf(number2));
productMap.put("Device",device);
productMap.put("Result",result_test);
productMap.put("Result Confirmatory",result_test1);
productMap.put("Directory Path",directory_path);
productMap.put("Full Path",targetUri);
// productMap("Result",String.valueOf(result.getText().toString()));
Calendar calendar = Calendar.getInstance();
SimpleDateFormat currentDate = new SimpleDateFormat("MMM dd, yyyy");
saveCurrentDate = currentDate.format(calendar.getTime());
saveCurrentDate = saveCurrentDate .replaceAll("[^A-Za-z0-9 ]","");
SimpleDateFormat currentTime = new SimpleDateFormat("h:mm a");
saveCurrentTime = currentTime.format(calendar.getTime());
TestRandomKey = saveCurrentDate + saveCurrentTime+String.valueOf( Math.random());
TestRandomKey = TestRandomKey .replaceAll("[^A-Za-z0-9 ]","");
TestRef.child(TestRandomKey).updateChildren(productMap)
.addOnCompleteListener(new OnCompleteListener<Void>() {
@Override
public void onComplete(@NonNull Task<Void> task)
{
if (task.isSuccessful()) {
Toast.makeText(MainActivity.this, "Test Result added in backend successfully ", Toast.LENGTH_SHORT).show();
}
else
{
String message = task.getException().toString();
Toast.makeText(MainActivity.this, "Error: " + message, Toast.LENGTH_SHORT).show();
}
}
});
}
}

View File

@@ -0,0 +1,30 @@
<vector xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:aapt="http://schemas.android.com/aapt"
android:width="108dp"
android:height="108dp"
android:viewportWidth="108"
android:viewportHeight="108">
<path android:pathData="M31,63.928c0,0 6.4,-11 12.1,-13.1c7.2,-2.6 26,-1.4 26,-1.4l38.1,38.1L107,108.928l-32,-1L31,63.928z">
<aapt:attr name="android:fillColor">
<gradient
android:endX="85.84757"
android:endY="92.4963"
android:startX="42.9492"
android:startY="49.59793"
android:type="linear">
<item
android:color="#44000000"
android:offset="0.0" />
<item
android:color="#00000000"
android:offset="1.0" />
</gradient>
</aapt:attr>
</path>
<path
android:fillColor="#FFFFFF"
android:fillType="nonZero"
android:pathData="M65.3,45.828l3.8,-6.6c0.2,-0.4 0.1,-0.9 -0.3,-1.1c-0.4,-0.2 -0.9,-0.1 -1.1,0.3l-3.9,6.7c-6.3,-2.8 -13.4,-2.8 -19.7,0l-3.9,-6.7c-0.2,-0.4 -0.7,-0.5 -1.1,-0.3C38.8,38.328 38.7,38.828 38.9,39.228l3.8,6.6C36.2,49.428 31.7,56.028 31,63.928h46C76.3,56.028 71.8,49.428 65.3,45.828zM43.4,57.328c-0.8,0 -1.5,-0.5 -1.8,-1.2c-0.3,-0.7 -0.1,-1.5 0.4,-2.1c0.5,-0.5 1.4,-0.7 2.1,-0.4c0.7,0.3 1.2,1 1.2,1.8C45.3,56.528 44.5,57.328 43.4,57.328L43.4,57.328zM64.6,57.328c-0.8,0 -1.5,-0.5 -1.8,-1.2s-0.1,-1.5 0.4,-2.1c0.5,-0.5 1.4,-0.7 2.1,-0.4c0.7,0.3 1.2,1 1.2,1.8C66.5,56.528 65.6,57.328 64.6,57.328L64.6,57.328z"
android:strokeWidth="1"
android:strokeColor="#00000000" />
</vector>

View File

@@ -0,0 +1,170 @@
<?xml version="1.0" encoding="utf-8"?>
<vector xmlns:android="http://schemas.android.com/apk/res/android"
android:width="108dp"
android:height="108dp"
android:viewportWidth="108"
android:viewportHeight="108">
<path
android:fillColor="#3DDC84"
android:pathData="M0,0h108v108h-108z" />
<path
android:fillColor="#00000000"
android:pathData="M9,0L9,108"
android:strokeWidth="0.8"
android:strokeColor="#33FFFFFF" />
<path
android:fillColor="#00000000"
android:pathData="M19,0L19,108"
android:strokeWidth="0.8"
android:strokeColor="#33FFFFFF" />
<path
android:fillColor="#00000000"
android:pathData="M29,0L29,108"
android:strokeWidth="0.8"
android:strokeColor="#33FFFFFF" />
<path
android:fillColor="#00000000"
android:pathData="M39,0L39,108"
android:strokeWidth="0.8"
android:strokeColor="#33FFFFFF" />
<path
android:fillColor="#00000000"
android:pathData="M49,0L49,108"
android:strokeWidth="0.8"
android:strokeColor="#33FFFFFF" />
<path
android:fillColor="#00000000"
android:pathData="M59,0L59,108"
android:strokeWidth="0.8"
android:strokeColor="#33FFFFFF" />
<path
android:fillColor="#00000000"
android:pathData="M69,0L69,108"
android:strokeWidth="0.8"
android:strokeColor="#33FFFFFF" />
<path
android:fillColor="#00000000"
android:pathData="M79,0L79,108"
android:strokeWidth="0.8"
android:strokeColor="#33FFFFFF" />
<path
android:fillColor="#00000000"
android:pathData="M89,0L89,108"
android:strokeWidth="0.8"
android:strokeColor="#33FFFFFF" />
<path
android:fillColor="#00000000"
android:pathData="M99,0L99,108"
android:strokeWidth="0.8"
android:strokeColor="#33FFFFFF" />
<path
android:fillColor="#00000000"
android:pathData="M0,9L108,9"
android:strokeWidth="0.8"
android:strokeColor="#33FFFFFF" />
<path
android:fillColor="#00000000"
android:pathData="M0,19L108,19"
android:strokeWidth="0.8"
android:strokeColor="#33FFFFFF" />
<path
android:fillColor="#00000000"
android:pathData="M0,29L108,29"
android:strokeWidth="0.8"
android:strokeColor="#33FFFFFF" />
<path
android:fillColor="#00000000"
android:pathData="M0,39L108,39"
android:strokeWidth="0.8"
android:strokeColor="#33FFFFFF" />
<path
android:fillColor="#00000000"
android:pathData="M0,49L108,49"
android:strokeWidth="0.8"
android:strokeColor="#33FFFFFF" />
<path
android:fillColor="#00000000"
android:pathData="M0,59L108,59"
android:strokeWidth="0.8"
android:strokeColor="#33FFFFFF" />
<path
android:fillColor="#00000000"
android:pathData="M0,69L108,69"
android:strokeWidth="0.8"
android:strokeColor="#33FFFFFF" />
<path
android:fillColor="#00000000"
android:pathData="M0,79L108,79"
android:strokeWidth="0.8"
android:strokeColor="#33FFFFFF" />
<path
android:fillColor="#00000000"
android:pathData="M0,89L108,89"
android:strokeWidth="0.8"
android:strokeColor="#33FFFFFF" />
<path
android:fillColor="#00000000"
android:pathData="M0,99L108,99"
android:strokeWidth="0.8"
android:strokeColor="#33FFFFFF" />
<path
android:fillColor="#00000000"
android:pathData="M19,29L89,29"
android:strokeWidth="0.8"
android:strokeColor="#33FFFFFF" />
<path
android:fillColor="#00000000"
android:pathData="M19,39L89,39"
android:strokeWidth="0.8"
android:strokeColor="#33FFFFFF" />
<path
android:fillColor="#00000000"
android:pathData="M19,49L89,49"
android:strokeWidth="0.8"
android:strokeColor="#33FFFFFF" />
<path
android:fillColor="#00000000"
android:pathData="M19,59L89,59"
android:strokeWidth="0.8"
android:strokeColor="#33FFFFFF" />
<path
android:fillColor="#00000000"
android:pathData="M19,69L89,69"
android:strokeWidth="0.8"
android:strokeColor="#33FFFFFF" />
<path
android:fillColor="#00000000"
android:pathData="M19,79L89,79"
android:strokeWidth="0.8"
android:strokeColor="#33FFFFFF" />
<path
android:fillColor="#00000000"
android:pathData="M29,19L29,89"
android:strokeWidth="0.8"
android:strokeColor="#33FFFFFF" />
<path
android:fillColor="#00000000"
android:pathData="M39,19L39,89"
android:strokeWidth="0.8"
android:strokeColor="#33FFFFFF" />
<path
android:fillColor="#00000000"
android:pathData="M49,19L49,89"
android:strokeWidth="0.8"
android:strokeColor="#33FFFFFF" />
<path
android:fillColor="#00000000"
android:pathData="M59,19L59,89"
android:strokeWidth="0.8"
android:strokeColor="#33FFFFFF" />
<path
android:fillColor="#00000000"
android:pathData="M69,19L69,89"
android:strokeWidth="0.8"
android:strokeColor="#33FFFFFF" />
<path
android:fillColor="#00000000"
android:pathData="M79,19L79,89"
android:strokeWidth="0.8"
android:strokeColor="#33FFFFFF" />
</vector>

Binary file not shown.

After

Width:  |  Height:  |  Size: 49 KiB

View File

@@ -0,0 +1,177 @@
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
android:layout_width="match_parent"
android:orientation="vertical"
android:layout_height="match_parent"
>
<ScrollView
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:layout_alignParentStart="true"
android:layout_alignParentLeft="true">
<LinearLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:orientation="vertical">
<ImageView
android:layout_width="wrap_content"
android:layout_height="120dp"
android:layout_marginTop="80dp"
android:layout_gravity="center_horizontal"
android:src="@drawable/shanmukha_logo_small"
android:textColor="#131313"
android:textSize="24sp"
android:textStyle="bold">
</ImageView>
<TextView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_marginTop="10dp"
android:layout_gravity="center_horizontal"
android:src="@drawable/shanmukha_logo_small"
android:text="Sickle Cell App 0.0.2"
android:textColor="#fff"
android:textSize="18sp"
android:textStyle="bold">
</TextView>
<View
android:layout_margin="20dp"
android:layout_width="fill_parent"
android:layout_height="2dp"
android:background="#EEE" />
<TableLayout
android:id="@+id/table45"
android:layout_width="wrap_content"
android:layout_height="wrap_content">
<TableRow android:layout_marginTop="20dp">
<TextView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_column="1"
android:layout_marginLeft="10dp"
android:paddingStart="5dp"
android:paddingLeft="5dp"
android:textSize="17sp"
android:id="@+id/instrument_type"
android:textColor="#fff"
android:text="Select the instrument*"
/>
<Spinner
android:id="@+id/spinner_device"
android:layout_width="150dp"
android:layout_height="wrap_content"
android:layout_marginLeft="20dp" />
</TableRow>
</TableLayout>
<View
android:layout_margin="20dp"
android:layout_width="fill_parent"
android:layout_height="2dp"
android:background="#EEE" />
<LinearLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_margin="5dp"
android:orientation="vertical">
<TextView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_gravity="center_horizontal"
android:textSize="17sp"
android:id="@+id/type"
android:layout_margin="5dp"
android:textColor="#fff"
android:text="Select Test Type *"
/>
<Button
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_marginLeft="23dp"
android:layout_marginRight="23dp"
android:text="Screening"
android:textColor="#fff"
android:layout_marginTop="5dp"
android:id="@+id/screening"
/>
<Button
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:text="confirmatory"
android:layout_marginTop="5dp"
android:textColor="#fff"
android:layout_marginLeft="23dp"
android:layout_marginRight="23dp"
android:id="@+id/confirmatory"
/>
</LinearLayout>
<View
android:layout_margin="20dp"
android:layout_width="fill_parent"
android:layout_height="2dp"
android:background="#EEE" />
<TextView
android:id="@+id/result"
android:layout_width="wrap_content"
android:layout_height="40dp"
android:layout_gravity="center"
android:textColor="#fff"
android:textSize="23dp" />
<TextView
android:id="@+id/result_confirmatory"
android:layout_width="wrap_content"
android:layout_height="40dp"
android:layout_gravity="center"
android:textColor="#fff"
android:textSize="23dp" />
</LinearLayout>
</ScrollView>
</LinearLayout>

View File

@@ -0,0 +1,5 @@
<?xml version="1.0" encoding="utf-8"?>
<adaptive-icon xmlns:android="http://schemas.android.com/apk/res/android">
<background android:drawable="@drawable/ic_launcher_background" />
<foreground android:drawable="@drawable/ic_launcher_foreground" />
</adaptive-icon>

View File

@@ -0,0 +1,5 @@
<?xml version="1.0" encoding="utf-8"?>
<adaptive-icon xmlns:android="http://schemas.android.com/apk/res/android">
<background android:drawable="@drawable/ic_launcher_background" />
<foreground android:drawable="@drawable/ic_launcher_foreground" />
</adaptive-icon>

Binary file not shown.

After

Width:  |  Height:  |  Size: 3.5 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 5.2 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 2.6 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 3.3 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 4.8 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 7.3 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 7.7 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 12 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 10 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 16 KiB

View File

@@ -0,0 +1,16 @@
<resources xmlns:tools="http://schemas.android.com/tools">
<!-- Base application theme. -->
<style name="Theme.AppAndroid" parent="Theme.MaterialComponents.DayNight.NoActionBar">
<!-- Primary brand color. -->
<item name="colorPrimary">@color/purple_200</item>
<item name="colorPrimaryVariant">@color/purple_700</item>
<item name="colorOnPrimary">#3a3a3a</item>
<!-- Secondary brand color. -->
<item name="colorSecondary">@color/teal_200</item>
<item name="colorSecondaryVariant">@color/teal_200</item>
<item name="colorOnSecondary">#3a3a3a</item>
<!-- Status bar color. -->
<item name="android:statusBarColor" tools:targetApi="l">?attr/colorPrimaryVariant</item>
<!-- Customize your theme here. -->
</style>
</resources>

View File

@@ -0,0 +1,10 @@
<?xml version="1.0" encoding="utf-8"?>
<resources>
<color name="purple_200">@android:color/holo_blue_dark</color>
<color name="purple_500">@android:color/holo_blue_dark</color>
<color name="purple_700">@android:color/holo_blue_dark</color>
<color name="teal_200">#FF03DAC5</color>
<color name="teal_700">#FF018786</color>
<color name="black">#FF000000</color>
<color name="white">#FFFFFFFF</color>
</resources>

View File

@@ -0,0 +1,8 @@
<resources>
<string name="app_name">Sickle Cell</string>
<string-array name="instrument">
<item>TestRight</item>
<item>Denovix</item>
</string-array>
</resources>

View File

@@ -0,0 +1,16 @@
<resources xmlns:tools="http://schemas.android.com/tools">
<!-- Base application theme. -->
<style name="Theme.AppAndroid" parent="Theme.MaterialComponents.DayNight.DarkActionBar">
<!-- Primary brand color. -->
<item name="colorPrimary">@color/purple_500</item>
<item name="colorPrimaryVariant">@color/purple_700</item>
<item name="colorOnPrimary">@color/white</item>
<!-- Secondary brand color. -->
<item name="colorSecondary">@color/teal_200</item>
<item name="colorSecondaryVariant">@color/teal_700</item>
<item name="colorOnSecondary">#3a3a3a</item>
<!-- Status bar color. -->
<item name="android:statusBarColor" tools:targetApi="l">?attr/colorPrimaryVariant</item>
<!-- Customize your theme here. -->
</style>
</resources>

View File

@@ -0,0 +1,3 @@
<paths xmlns:android="http://schemas.android.com/apk/res/android">
<external-path name="external_files" path="."/>
</paths>

View File

@@ -0,0 +1,17 @@
package com.smi.SickleCell;
import org.junit.Test;
import static org.junit.Assert.*;
/**
* Example local unit test, which will execute on the development machine (host).
*
* @see <a href="http://d.android.com/tools/testing">Testing documentation</a>
*/
public class ExampleUnitTest {
@Test
public void addition_isCorrect() {
assertEquals(4, 2 + 2);
}
}