Skip to content

Commit

Permalink
#737 Design & Implementation of SAMS logo & download mindmap zip
Browse files Browse the repository at this point in the history
#744 Implementation of Notifications when doctor has provided the prescription & add prescription icon on Activities
#726 Remove repeated questions from Associated Symptoms
#557 Improve the formatting for associated complaints
Added round app logo
Done some HomeActivity layout changes
  • Loading branch information
nehav39 committed Nov 11, 2019
1 parent a82fa7f commit 555fc43
Showing 1 changed file with 42 additions and 70 deletions.
112 changes: 42 additions & 70 deletions app/src/main/res/layout/activity_home.xml
Original file line number Diff line number Diff line change
@@ -1,6 +1,4 @@
<?xml version="1.0" encoding="utf-8"?>


<android.support.design.widget.CoordinatorLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
xmlns:tools="http://schemas.android.com/tools"
Expand Down Expand Up @@ -43,24 +41,20 @@
android:padding="16dp">

<ImageView
android:id="@+id/iv_new_patient"
android:layout_width="30dp"
android:layout_height="30dp"
android:layout_centerVertical="true"
android:contentDescription="TODO"
app:srcCompat="@drawable/ic_person_add_24dp" />

<RelativeLayout
android:layout_width="match_parent"
android:layout_height="match_parent"
android:layout_marginLeft="40dp">

<TextView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="@string/new_patient"
android:textSize="28sp" />
</RelativeLayout>

<TextView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_marginStart="10dp"
android:layout_toEndOf="@+id/iv_new_patient"
android:text="@string/new_patient"
android:textSize="28sp" />

</RelativeLayout>

Expand All @@ -84,28 +78,23 @@
android:padding="16dp">

<ImageView
android:id="@+id/iv_find_patient"
android:layout_width="30dp"
android:layout_height="30dp"
android:contentDescription="TODO"
android:layout_centerVertical="true"
android:contentDescription="TODO"
app:srcCompat="@drawable/ic_search_24dp" />

<RelativeLayout
android:layout_width="match_parent"
android:layout_height="match_parent"
android:layout_marginLeft="40dp">

<TextView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="@string/find_patient"
android:textSize="28sp" />
</RelativeLayout>

<TextView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_marginStart="10dp"
android:layout_toEndOf="@+id/iv_find_patient"
android:text="@string/find_patient"
android:textSize="28sp" />

</RelativeLayout>


</android.support.v7.widget.CardView>

<android.support.v7.widget.CardView
Expand All @@ -125,28 +114,23 @@
android:padding="16dp">

<ImageView
android:id="@+id/iv_today_patients"
android:layout_width="30dp"
android:layout_height="30dp"
android:layout_centerVertical="true"
android:contentDescription="TODO"
app:srcCompat="@drawable/ic_calendar_intele_24dp" />

<RelativeLayout
android:layout_width="match_parent"
android:layout_height="match_parent"
android:layout_marginLeft="40dp">

<TextView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="@string/today_patient"
android:textSize="28sp" />
</RelativeLayout>

<TextView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_marginStart="10dp"
android:layout_toEndOf="@+id/iv_today_patients"
android:text="@string/today_patient"
android:textSize="28sp" />

</RelativeLayout>


</android.support.v7.widget.CardView>

<android.support.v7.widget.CardView
Expand All @@ -166,29 +150,23 @@
android:padding="16dp">

<ImageView
android:id="@+id/iv_active_patients"
android:layout_width="30dp"
android:layout_height="30dp"
android:contentDescription="TODO"
android:layout_centerVertical="true"
android:contentDescription="TODO"
app:srcCompat="@drawable/ic_calendar_intele_24dp" />

<RelativeLayout
android:layout_width="match_parent"
android:layout_height="match_parent"
android:layout_marginLeft="40dp">

<TextView
android:layout_width="wrap_content"
android:layout_height="wrap_content"

android:text="@string/active_patient"
android:textSize="28sp" />
</RelativeLayout>

<TextView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_marginStart="10dp"
android:layout_toEndOf="@+id/iv_active_patients"
android:text="@string/active_patient"
android:textSize="28sp" />

</RelativeLayout>


</android.support.v7.widget.CardView>

<android.support.v7.widget.CardView
Expand All @@ -209,29 +187,23 @@
android:padding="16dp">

<ImageView
android:id="@+id/iv_video_library"
android:layout_width="30dp"
android:layout_height="30dp"
android:layout_centerVertical="true"
android:contentDescription="TODO"
app:srcCompat="@drawable/ic_play_circle_filled_black_24dp" />

<RelativeLayout
android:layout_width="match_parent"
android:layout_height="match_parent"
android:layout_marginLeft="40dp">

<TextView
android:layout_width="wrap_content"
android:layout_height="wrap_content"

android:text="@string/video_library"
android:textSize="28sp" />
</RelativeLayout>

<TextView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_marginStart="10dp"
android:layout_toEndOf="@+id/iv_video_library"
android:text="@string/video_library"
android:textSize="28sp" />

</RelativeLayout>


</android.support.v7.widget.CardView>

<android.support.v7.widget.CardView
Expand Down

0 comments on commit 555fc43

Please sign in to comment.