├── .idea ├── .name ├── copyright │ └── profiles_settings.xml ├── scopes │ └── scope_settings.xml ├── encodings.xml ├── vcs.xml ├── libraries │ ├── Parse_1_5_0.xml │ ├── appcompat_v7_19_0_1.xml │ └── support_v4_19_0_1.xml ├── modules.xml ├── misc.xml ├── gradle.xml └── compiler.xml ├── app ├── .gitignore ├── libs │ ├── Parse-1.5.0-javadoc │ │ ├── package-list │ │ ├── resources │ │ │ └── inherit.gif │ │ ├── index.html │ │ ├── style.css │ │ ├── allclasses-noframe.html │ │ ├── allclasses-frame.html │ │ └── com │ │ │ └── parse │ │ │ ├── class-use │ │ │ ├── Parse.html │ │ │ ├── ParsePush.html │ │ │ ├── ParseCloud.html │ │ │ ├── PushService.html │ │ │ ├── ParseAnalytics.html │ │ │ ├── ParseImageView.html │ │ │ ├── ParseQueryAdapter.html │ │ │ ├── ParseTwitterUtils.html │ │ │ ├── ParseFacebookUtils.html │ │ │ └── ParseAnonymousUtils.html │ │ │ └── package-frame.html │ ├── Parse-1.5.0.jar.properties │ └── Parse-1.5.0.jar ├── src │ └── main │ │ ├── res │ │ ├── drawable-hdpi │ │ │ └── ic_launcher.png │ │ ├── drawable-mdpi │ │ │ └── ic_launcher.png │ │ ├── drawable-xhdpi │ │ │ └── ic_launcher.png │ │ ├── drawable-xxhdpi │ │ │ └── ic_launcher.png │ │ ├── values │ │ │ ├── styles.xml │ │ │ ├── dimens.xml │ │ │ ├── strings_activity_login.xml │ │ │ └── strings.xml │ │ ├── anim │ │ │ ├── activity_open_translate.xml │ │ │ ├── activity_close_translate.xml │ │ │ ├── activity_in.xml │ │ │ ├── activity_out.xml │ │ │ ├── old_activity_in.xml │ │ │ ├── old_activity_out.xml │ │ │ ├── activity_close_scale.xml │ │ │ └── activity_open_scale.xml │ │ ├── drawable │ │ │ └── oval.xml │ │ ├── values-w820dp │ │ │ └── dimens.xml │ │ ├── menu │ │ │ ├── enter_email.xml │ │ │ ├── enter_name.xml │ │ │ ├── main.xml │ │ │ ├── display_doc.xml │ │ │ ├── doctor_home.xml │ │ │ ├── display_patient.xml │ │ │ ├── enter_password.xml │ │ │ ├── enter_user_type.xml │ │ │ ├── patient_home.xml │ │ │ ├── patient_home2.xml │ │ │ ├── display_message.xml │ │ │ ├── doctor_home_page.xml │ │ │ ├── enter_hospital_det.xml │ │ │ ├── enter_speciality.xml │ │ │ ├── make_appointment.xml │ │ │ ├── write_presciption.xml │ │ │ ├── patient_prescriptions.xml │ │ │ └── display_patient_appointments.xml │ │ └── layout │ │ │ ├── activity_display_message.xml │ │ │ ├── activity_doctor_home.xml │ │ │ ├── activity_patient_prescriptions.xml │ │ │ ├── activity_display_patient_appointments.xml │ │ │ ├── rowlayout.xml │ │ │ ├── search_activity.xml │ │ │ ├── activity_patient_home2.xml │ │ │ ├── activity_write_presciption.xml │ │ │ ├── activity_patient_home.xml │ │ │ ├── activity_enter_speciality.xml │ │ │ ├── activity_enter_email.xml │ │ │ ├── activity_enter_password.xml │ │ │ ├── activity_main.xml │ │ │ ├── activity_enter_name.xml │ │ │ ├── activity_enter_hospital_det.xml │ │ │ ├── activity_make_appointment.xml │ │ │ ├── activity_enter_user_type.xml │ │ │ ├── activity_display_patient.xml │ │ │ └── activity_display_doc.xml │ │ ├── java │ │ └── com │ │ │ └── example │ │ │ └── docapp │ │ │ └── app │ │ │ ├── DoctorInfo │ │ │ └── Doctor.java │ │ │ ├── Patient_home2.java │ │ │ ├── EnterSpeciality.java │ │ │ ├── EnterHospitalDet.java │ │ │ ├── EnterEmail.java │ │ │ ├── WritePresciption.java │ │ │ ├── EnterPassword.java │ │ │ ├── MakeAppointment.java │ │ │ ├── EnterName.java │ │ │ ├── DisplayPatient.java │ │ │ ├── DisplayDoc.java │ │ │ ├── PatientPrescriptions.java │ │ │ └── DisplayPatientAppointments.java │ │ └── AndroidManifest.xml ├── proguard-rules.txt ├── build.gradle └── app.iml ├── settings.gradle ├── .gitignore ├── gradle └── wrapper │ ├── gradle-wrapper.jar │ └── gradle-wrapper.properties ├── DOCAPP.iml ├── gradle.properties ├── README.md ├── gradlew.bat └── gradlew /.idea/.name: -------------------------------------------------------------------------------- 1 | DOCAPP -------------------------------------------------------------------------------- /app/.gitignore: -------------------------------------------------------------------------------- 1 | /build 2 | -------------------------------------------------------------------------------- /settings.gradle: -------------------------------------------------------------------------------- 1 | include ':app' 2 | -------------------------------------------------------------------------------- /app/libs/Parse-1.5.0-javadoc/package-list: -------------------------------------------------------------------------------- 1 | com.parse 2 | -------------------------------------------------------------------------------- /app/libs/Parse-1.5.0.jar.properties: -------------------------------------------------------------------------------- 1 | doc=Parse-1.5.0-javadoc 2 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | .gradle 2 | /local.properties 3 | /.idea/workspace.xml 4 | .DS_Store 5 | -------------------------------------------------------------------------------- /app/libs/Parse-1.5.0.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder46/DOCAPP/HEAD/app/libs/Parse-1.5.0.jar -------------------------------------------------------------------------------- /gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder46/DOCAPP/HEAD/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /.idea/copyright/profiles_settings.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /app/src/main/res/drawable-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder46/DOCAPP/HEAD/app/src/main/res/drawable-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder46/DOCAPP/HEAD/app/src/main/res/drawable-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder46/DOCAPP/HEAD/app/src/main/res/drawable-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder46/DOCAPP/HEAD/app/src/main/res/drawable-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /app/libs/Parse-1.5.0-javadoc/resources/inherit.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder46/DOCAPP/HEAD/app/libs/Parse-1.5.0-javadoc/resources/inherit.gif -------------------------------------------------------------------------------- /.idea/scopes/scope_settings.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 5 | -------------------------------------------------------------------------------- /.idea/encodings.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /.idea/vcs.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /app/src/main/res/values/styles.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /app/src/main/res/values/dimens.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 16dp 4 | 16dp 5 | 6 | 7 | -------------------------------------------------------------------------------- /.idea/libraries/Parse_1_5_0.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- 1 | #Wed Apr 10 15:27:10 PDT 2013 2 | distributionBase=GRADLE_USER_HOME 3 | distributionPath=wrapper/dists 4 | zipStoreBase=GRADLE_USER_HOME 5 | zipStorePath=wrapper/dists 6 | distributionUrl=http\://services.gradle.org/distributions/gradle-1.10-all.zip 7 | -------------------------------------------------------------------------------- /app/src/main/res/anim/activity_open_translate.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 8 | 9 | -------------------------------------------------------------------------------- /app/src/main/res/anim/activity_close_translate.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 8 | 9 | -------------------------------------------------------------------------------- /app/src/main/res/anim/activity_in.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 5 | 8 | -------------------------------------------------------------------------------- /app/src/main/res/anim/activity_out.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 5 | 8 | -------------------------------------------------------------------------------- /app/src/main/res/anim/old_activity_in.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 5 | 8 | -------------------------------------------------------------------------------- /app/src/main/res/drawable/oval.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 11 | 12 | 13 | 14 | -------------------------------------------------------------------------------- /app/src/main/res/anim/old_activity_out.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 5 | 9 | -------------------------------------------------------------------------------- /.idea/modules.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | -------------------------------------------------------------------------------- /app/src/main/res/values-w820dp/dimens.xml: -------------------------------------------------------------------------------- 1 | 2 | 5 | 64dp 6 | 7 | -------------------------------------------------------------------------------- /.idea/misc.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | -------------------------------------------------------------------------------- /.idea/libraries/appcompat_v7_19_0_1.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /app/src/main/res/menu/enter_email.xml: -------------------------------------------------------------------------------- 1 | 5 | 6 | 10 | 11 | -------------------------------------------------------------------------------- /app/src/main/res/menu/enter_name.xml: -------------------------------------------------------------------------------- 1 | 5 | 6 | 10 | 11 | -------------------------------------------------------------------------------- /app/src/main/res/menu/main.xml: -------------------------------------------------------------------------------- 1 | 5 | 6 | 10 | 11 | -------------------------------------------------------------------------------- /app/src/main/res/menu/display_doc.xml: -------------------------------------------------------------------------------- 1 | 5 | 6 | 10 | 11 | -------------------------------------------------------------------------------- /app/src/main/res/menu/doctor_home.xml: -------------------------------------------------------------------------------- 1 | 5 | 6 | 10 | 11 | -------------------------------------------------------------------------------- /app/src/main/res/menu/display_patient.xml: -------------------------------------------------------------------------------- 1 | 5 | 6 | 10 | 11 | -------------------------------------------------------------------------------- /app/src/main/res/menu/enter_password.xml: -------------------------------------------------------------------------------- 1 | 5 | 6 | 10 | 11 | -------------------------------------------------------------------------------- /app/src/main/res/menu/enter_user_type.xml: -------------------------------------------------------------------------------- 1 | 5 | 6 | 10 | 11 | -------------------------------------------------------------------------------- /app/src/main/res/menu/patient_home.xml: -------------------------------------------------------------------------------- 1 | 5 | 6 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /app/src/main/res/menu/patient_home2.xml: -------------------------------------------------------------------------------- 1 | 5 | 6 | 10 | 11 | -------------------------------------------------------------------------------- /app/src/main/res/menu/display_message.xml: -------------------------------------------------------------------------------- 1 | 5 | 6 | 10 | 11 | -------------------------------------------------------------------------------- /app/src/main/res/menu/doctor_home_page.xml: -------------------------------------------------------------------------------- 1 | 5 | 6 | 10 | 11 | -------------------------------------------------------------------------------- /app/src/main/res/menu/enter_hospital_det.xml: -------------------------------------------------------------------------------- 1 | 5 | 6 | 10 | 11 | -------------------------------------------------------------------------------- /app/src/main/res/menu/enter_speciality.xml: -------------------------------------------------------------------------------- 1 | 5 | 6 | 10 | 11 | -------------------------------------------------------------------------------- /app/src/main/res/menu/make_appointment.xml: -------------------------------------------------------------------------------- 1 | 5 | 6 | 10 | 11 | -------------------------------------------------------------------------------- /app/src/main/res/menu/write_presciption.xml: -------------------------------------------------------------------------------- 1 | 5 | 6 | 10 | 11 | -------------------------------------------------------------------------------- /app/src/main/res/menu/patient_prescriptions.xml: -------------------------------------------------------------------------------- 1 | 5 | 6 | 10 | 11 | -------------------------------------------------------------------------------- /app/src/main/res/menu/display_patient_appointments.xml: -------------------------------------------------------------------------------- 1 | 5 | 6 | 10 | 11 | -------------------------------------------------------------------------------- /.idea/libraries/support_v4_19_0_1.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | -------------------------------------------------------------------------------- /.idea/gradle.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 16 | 17 | 18 | 19 | -------------------------------------------------------------------------------- /app/src/main/java/com/example/docapp/app/DoctorInfo/Doctor.java: -------------------------------------------------------------------------------- 1 | package com.example.docapp.app.DoctorInfo; 2 | import com.parse.ParseObject; 3 | import com.parse.ParseClassName; 4 | /** 5 | * Created by faisal on 23/5/14. 6 | */ 7 | @ParseClassName("Doctor") 8 | public class Doctor extends ParseObject{ 9 | public Doctor(){ 10 | 11 | } 12 | 13 | public String getFname(){ 14 | return getString("Fname"); 15 | 16 | } 17 | 18 | public String getLname(){ 19 | return getString("Lname"); 20 | 21 | } 22 | 23 | public String getDoctorId(){ 24 | return getString("doctor_id"); 25 | } 26 | 27 | 28 | 29 | } 30 | -------------------------------------------------------------------------------- /DOCAPP.iml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | -------------------------------------------------------------------------------- /app/proguard-rules.txt: -------------------------------------------------------------------------------- 1 | # Add project specific ProGuard rules here. 2 | # By default, the flags in this file are appended to flags specified 3 | # in /home/faisal/android-studio/sdk/tools/proguard/proguard-android.txt 4 | # You can edit the include path and order by changing the ProGuard 5 | # include property in project.properties. 6 | # 7 | # For more details, see 8 | # http://developer.android.com/guide/developing/tools/proguard.html 9 | 10 | # Add any project specific keep options here: 11 | 12 | # If your project uses WebView with JS, uncomment the following 13 | # and specify the fully qualified class name to the JavaScript interface 14 | # class: 15 | #-keepclassmembers class fqcn.of.javascript.interface.for.webview { 16 | # public *; 17 | #} -------------------------------------------------------------------------------- /app/src/main/res/values/strings_activity_login.xml: -------------------------------------------------------------------------------- 1 | 2 | Sign in 3 | 4 | 5 | Email 6 | Password (optional) 7 | Sign in or register 8 | Sign in 9 | 10 | This email address is invalid 11 | This password is too short 12 | This password is incorrect 13 | This field is required 14 | 15 | -------------------------------------------------------------------------------- /app/src/main/res/anim/activity_close_scale.xml: -------------------------------------------------------------------------------- 1 | 2 | Scale Down Animation for old activity <--> 3 | http://blog.quentinrousseau.fr/index.php/2013/06/activity-transition-animations-like-the-vine-android-application/<--> 4 | 5 | 12 | 13 | 16 | 17 | -------------------------------------------------------------------------------- /app/src/main/res/layout/activity_display_message.xml: -------------------------------------------------------------------------------- 1 | 10 | 11 | 15 | 16 | 17 | -------------------------------------------------------------------------------- /app/src/main/res/layout/activity_doctor_home.xml: -------------------------------------------------------------------------------- 1 | 10 | 11 | 15 | 16 | 17 | -------------------------------------------------------------------------------- /.idea/compiler.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 22 | 23 | 24 | -------------------------------------------------------------------------------- /app/src/main/res/anim/activity_open_scale.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | Closing transition animations 4 | Scale up animation for new activity 5 | http://blog.quentinrousseau.fr/index.php/2013/06/activity-transition-animations-like-the-vine-android-application/ 6 | <--> 7 | 8 | 9 | 16 | 17 | 20 | -------------------------------------------------------------------------------- /app/src/main/res/layout/activity_patient_prescriptions.xml: -------------------------------------------------------------------------------- 1 | 10 | 11 | 15 | 16 | 17 | -------------------------------------------------------------------------------- /app/src/main/res/layout/activity_display_patient_appointments.xml: -------------------------------------------------------------------------------- 1 | 10 | 11 | 15 | 16 | 17 | -------------------------------------------------------------------------------- /app/src/main/res/layout/rowlayout.xml: -------------------------------------------------------------------------------- 1 | 2 | 5 | 6 | 14 | 15 | 16 | 22 | 23 | 24 | -------------------------------------------------------------------------------- /gradle.properties: -------------------------------------------------------------------------------- 1 | # Project-wide Gradle settings. 2 | 3 | # IDE (e.g. Android Studio) users: 4 | # Settings specified in this file will override any Gradle settings 5 | # configured through the IDE. 6 | 7 | # For more details on how to configure your build environment visit 8 | # http://www.gradle.org/docs/current/userguide/build_environment.html 9 | 10 | # Specifies the JVM arguments used for the daemon process. 11 | # The setting is particularly useful for tweaking memory settings. 12 | # Default value: -Xmx10248m -XX:MaxPermSize=256m 13 | # org.gradle.jvmargs=-Xmx2048m -XX:MaxPermSize=512m -XX:+HeapDumpOnOutOfMemoryError -Dfile.encoding=UTF-8 14 | 15 | # When configured, Gradle will run in incubating parallel mode. 16 | # This option should only be used with decoupled projects. More details, visit 17 | # http://www.gradle.org/docs/current/userguide/multi_project_builds.html#sec:decoupled_projects 18 | # org.gradle.parallel=true -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | DOCAPP 2 | ====== 3 | 4 | This Android app was built during AngelHack Dubai. 5 | 6 | The main aim of the app was to make it easier to connect Patients and Doctors. 7 | 8 | Goals of the app are: 9 | 10 | 1) Searching doctors using any one or a combination of the following parameters:- Disease/Condition,Specialty, Location, Insurance company 11 | 12 | 2) Enable patients to book appointments with doctors 13 | 14 | 3) Doctor can write prescriptions directly through the app 15 | 16 | 4) Patients can view prescriptions 17 | 18 | 5) Doctors have a view called "Today's Schedule" through which they can view their appointments for that day and manage patients 19 | 20 | 6) Similarly Patients too have a view called "My Appointments" where they can view all the appointments which they have booked. 21 | 22 | (All the above features have been implemented) 23 | 24 | Some additional feature I have thought of: 25 | 26 | 7) Add a doctor rating system. Not something like out of 5 stars. Instead patients can "Like" a doctor. So it'll be number of likes. 27 | 28 | 8) Allow the patient to see his/her medical history with the doctor. Test reports, vaccines taken, diagnosis, etc will be part of the history. 29 | -------------------------------------------------------------------------------- /app/src/main/res/layout/search_activity.xml: -------------------------------------------------------------------------------- 1 | 9 | 10 | 14 | 15 | 23 | 24 | 25 | 26 |