First Commit
This commit is contained in:
@@ -44,7 +44,7 @@ public class Navigation_Top extends AppCompatActivity implements NavigationView.
|
|||||||
@Override
|
@Override
|
||||||
protected void onCreate(Bundle savedInstanceState) {
|
protected void onCreate(Bundle savedInstanceState) {
|
||||||
super.onCreate(savedInstanceState);
|
super.onCreate(savedInstanceState);
|
||||||
getWindow().setFlags(WindowManager.LayoutParams.FLAG_FULLSCREEN, WindowManager.LayoutParams.FLAG_FULLSCREEN);
|
// getWindow().setFlags(WindowManager.LayoutParams.FLAG_FULLSCREEN, WindowManager.LayoutParams.FLAG_FULLSCREEN);
|
||||||
|
|
||||||
setContentView(R.layout.activity_navigation__top);
|
setContentView(R.layout.activity_navigation__top);
|
||||||
|
|
||||||
|
|||||||
|
Before Width: | Height: | Size: 40 KiB After Width: | Height: | Size: 40 KiB |
@@ -30,7 +30,7 @@
|
|||||||
<Button
|
<Button
|
||||||
android:id="@+id/report"
|
android:id="@+id/report"
|
||||||
android:layout_width="match_parent"
|
android:layout_width="match_parent"
|
||||||
android:layout_marginTop="30dp"
|
android:layout_marginTop="10dp"
|
||||||
|
|
||||||
|
|
||||||
android:background="@drawable/buttonshape"
|
android:background="@drawable/buttonshape"
|
||||||
|
|||||||
@@ -74,7 +74,7 @@
|
|||||||
android:layout_width="234dp"
|
android:layout_width="234dp"
|
||||||
android:layout_gravity="center"
|
android:layout_gravity="center"
|
||||||
|
|
||||||
android:src="@drawable/Sample_image1"
|
android:src="@drawable/sample1"
|
||||||
android:layout_height="234dp"
|
android:layout_height="234dp"
|
||||||
app:civ_border_width="2dp"/>
|
app:civ_border_width="2dp"/>
|
||||||
<View
|
<View
|
||||||
|
|||||||
@@ -1,433 +0,0 @@
|
|||||||
<?xml version="1.0" encoding="utf-8"?>
|
|
||||||
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
|
||||||
|
|
||||||
android:layout_width="match_parent"
|
|
||||||
|
|
||||||
android:layout_height="match_parent"
|
|
||||||
android:orientation="vertical"
|
|
||||||
>
|
|
||||||
<LinearLayout
|
|
||||||
android:layout_marginTop="@android:dimen/app_icon_size"
|
|
||||||
|
|
||||||
android:layout_width="fill_parent"
|
|
||||||
android:layout_height="fill_parent"
|
|
||||||
android:orientation="vertical">
|
|
||||||
|
|
||||||
<LinearLayout
|
|
||||||
android:layout_width="match_parent"
|
|
||||||
android:layout_height="match_parent"
|
|
||||||
android:orientation="vertical">
|
|
||||||
|
|
||||||
<LinearLayout
|
|
||||||
android:layout_width="match_parent"
|
|
||||||
android:layout_height="180dp"
|
|
||||||
android:gravity="center"
|
|
||||||
|
|
||||||
android:orientation="vertical">
|
|
||||||
<ImageView
|
|
||||||
android:layout_width="match_parent"
|
|
||||||
android:layout_height="70dp"
|
|
||||||
android:src="@drawable/logo_app"/>
|
|
||||||
|
|
||||||
<TextView
|
|
||||||
android:layout_width="wrap_content"
|
|
||||||
android:layout_height="wrap_content"
|
|
||||||
android:layout_marginTop="20dp"
|
|
||||||
android:gravity="center"
|
|
||||||
android:text="Test Report"
|
|
||||||
android:textColor="#131313"
|
|
||||||
android:textSize="24sp"
|
|
||||||
android:textStyle="bold">
|
|
||||||
|
|
||||||
</TextView>
|
|
||||||
|
|
||||||
</LinearLayout>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<TableLayout
|
|
||||||
|
|
||||||
android:layout_width="fill_parent"
|
|
||||||
|
|
||||||
android:layout_height="fill_parent">
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<View
|
|
||||||
android:layout_marginLeft="40dp"
|
|
||||||
android:layout_marginRight="40dp"
|
|
||||||
android:layout_width="fill_parent"
|
|
||||||
|
|
||||||
android:layout_height="4dp"
|
|
||||||
android:background="@color/colorPrimary" />
|
|
||||||
|
|
||||||
<TableLayout
|
|
||||||
|
|
||||||
android:layout_width="wrap_content"
|
|
||||||
android:layout_height="wrap_content">
|
|
||||||
|
|
||||||
<TableRow
|
|
||||||
android:padding="15dp"
|
|
||||||
|
|
||||||
android:layout_width="0dp"
|
|
||||||
android:layout_height="wrap_content"
|
|
||||||
android:layout_weight="10"
|
|
||||||
>
|
|
||||||
|
|
||||||
<TextView
|
|
||||||
android:text="Patient ID : "
|
|
||||||
android:textSize="18sp"
|
|
||||||
android:lines="2"
|
|
||||||
|
|
||||||
android:layout_weight="5"
|
|
||||||
android:layout_width="0dp"
|
|
||||||
android:layout_height="wrap_content"
|
|
||||||
android:layout_column="1" />
|
|
||||||
|
|
||||||
<TextView
|
|
||||||
android:layout_width="0dp"
|
|
||||||
android:textSize="18sp"
|
|
||||||
|
|
||||||
android:text="Female"
|
|
||||||
android:layout_weight="5"
|
|
||||||
android:layout_height="wrap_content" />
|
|
||||||
</TableRow>
|
|
||||||
<View
|
|
||||||
android:layout_marginLeft="15dp"
|
|
||||||
android:layout_marginRight="15dp"
|
|
||||||
android:layout_width="fill_parent"
|
|
||||||
|
|
||||||
android:layout_height="2dp"
|
|
||||||
android:background="#eee" />
|
|
||||||
|
|
||||||
</TableLayout>
|
|
||||||
<TableLayout
|
|
||||||
|
|
||||||
android:layout_width="wrap_content"
|
|
||||||
android:layout_height="wrap_content">
|
|
||||||
|
|
||||||
<TableRow
|
|
||||||
android:padding="15dp"
|
|
||||||
|
|
||||||
android:layout_width="0dp"
|
|
||||||
android:layout_height="wrap_content"
|
|
||||||
android:layout_weight="10"
|
|
||||||
>
|
|
||||||
|
|
||||||
<TextView
|
|
||||||
android:layout_width="0dp"
|
|
||||||
android:layout_height="wrap_content"
|
|
||||||
android:layout_column="1"
|
|
||||||
android:layout_weight="5"
|
|
||||||
android:lines="2"
|
|
||||||
android:text="Patient Gender :"
|
|
||||||
android:textSize="18sp" />
|
|
||||||
|
|
||||||
<TextView
|
|
||||||
android:layout_width="0dp"
|
|
||||||
android:textSize="18sp"
|
|
||||||
|
|
||||||
android:text="Female"
|
|
||||||
android:layout_weight="5"
|
|
||||||
android:layout_height="wrap_content" />
|
|
||||||
</TableRow>
|
|
||||||
<View
|
|
||||||
android:layout_marginLeft="15dp"
|
|
||||||
android:layout_marginRight="15dp"
|
|
||||||
android:layout_width="fill_parent"
|
|
||||||
|
|
||||||
android:layout_height="2dp"
|
|
||||||
android:background="#eee" />
|
|
||||||
|
|
||||||
</TableLayout>
|
|
||||||
<TableLayout
|
|
||||||
|
|
||||||
android:layout_width="wrap_content"
|
|
||||||
android:layout_height="wrap_content">
|
|
||||||
|
|
||||||
<TableRow
|
|
||||||
android:padding="15dp"
|
|
||||||
|
|
||||||
android:layout_width="0dp"
|
|
||||||
android:layout_height="wrap_content"
|
|
||||||
android:layout_weight="10"
|
|
||||||
>
|
|
||||||
|
|
||||||
<TextView
|
|
||||||
android:layout_width="0dp"
|
|
||||||
android:layout_height="wrap_content"
|
|
||||||
android:layout_column="1"
|
|
||||||
android:layout_weight="5"
|
|
||||||
android:lines="2"
|
|
||||||
android:text="Date of Birth :"
|
|
||||||
android:textSize="18sp" />
|
|
||||||
|
|
||||||
<TextView
|
|
||||||
android:layout_width="0dp"
|
|
||||||
android:textSize="18sp"
|
|
||||||
|
|
||||||
android:text="Female"
|
|
||||||
android:layout_weight="5"
|
|
||||||
android:layout_height="wrap_content" />
|
|
||||||
</TableRow>
|
|
||||||
<View
|
|
||||||
android:layout_marginLeft="15dp"
|
|
||||||
android:layout_marginRight="15dp"
|
|
||||||
android:layout_width="fill_parent"
|
|
||||||
|
|
||||||
android:layout_height="2dp"
|
|
||||||
android:background="#eee" />
|
|
||||||
|
|
||||||
</TableLayout>
|
|
||||||
<TableLayout
|
|
||||||
|
|
||||||
android:layout_width="wrap_content"
|
|
||||||
android:layout_height="wrap_content">
|
|
||||||
|
|
||||||
<TableRow
|
|
||||||
android:padding="15dp"
|
|
||||||
|
|
||||||
android:layout_width="0dp"
|
|
||||||
android:layout_height="wrap_content"
|
|
||||||
android:layout_weight="10"
|
|
||||||
>
|
|
||||||
|
|
||||||
<TextView
|
|
||||||
android:layout_width="0dp"
|
|
||||||
android:layout_height="wrap_content"
|
|
||||||
android:layout_column="1"
|
|
||||||
android:layout_weight="5"
|
|
||||||
android:lines="2"
|
|
||||||
android:text="Age :"
|
|
||||||
android:textSize="18sp" />
|
|
||||||
|
|
||||||
<TextView
|
|
||||||
android:layout_width="0dp"
|
|
||||||
android:textSize="18sp"
|
|
||||||
|
|
||||||
android:text="Female"
|
|
||||||
android:layout_weight="5"
|
|
||||||
android:layout_height="wrap_content" />
|
|
||||||
</TableRow>
|
|
||||||
<View
|
|
||||||
android:layout_marginLeft="15dp"
|
|
||||||
android:layout_marginRight="15dp"
|
|
||||||
android:layout_width="fill_parent"
|
|
||||||
|
|
||||||
android:layout_height="2dp"
|
|
||||||
android:background="#eee" />
|
|
||||||
|
|
||||||
</TableLayout>
|
|
||||||
<TableLayout
|
|
||||||
|
|
||||||
android:layout_width="wrap_content"
|
|
||||||
android:layout_height="wrap_content">
|
|
||||||
|
|
||||||
<TableRow
|
|
||||||
android:padding="15dp"
|
|
||||||
|
|
||||||
android:layout_width="0dp"
|
|
||||||
android:layout_height="wrap_content"
|
|
||||||
android:layout_weight="10"
|
|
||||||
>
|
|
||||||
|
|
||||||
<TextView
|
|
||||||
android:layout_width="0dp"
|
|
||||||
android:layout_height="wrap_content"
|
|
||||||
android:layout_column="1"
|
|
||||||
android:layout_weight="5"
|
|
||||||
android:lines="2"
|
|
||||||
android:text="Nikshay ID :"
|
|
||||||
android:textSize="18sp" />
|
|
||||||
|
|
||||||
<TextView
|
|
||||||
android:layout_width="0dp"
|
|
||||||
android:textSize="18sp"
|
|
||||||
|
|
||||||
android:text="Female"
|
|
||||||
android:layout_weight="5"
|
|
||||||
android:layout_height="wrap_content" />
|
|
||||||
</TableRow>
|
|
||||||
<View
|
|
||||||
android:layout_marginLeft="15dp"
|
|
||||||
android:layout_marginRight="15dp"
|
|
||||||
android:layout_width="fill_parent"
|
|
||||||
|
|
||||||
android:layout_height="2dp"
|
|
||||||
android:background="#eee" />
|
|
||||||
|
|
||||||
</TableLayout>
|
|
||||||
<TableLayout
|
|
||||||
|
|
||||||
android:layout_width="wrap_content"
|
|
||||||
android:layout_height="wrap_content">
|
|
||||||
|
|
||||||
<TableRow
|
|
||||||
android:padding="15dp"
|
|
||||||
|
|
||||||
android:layout_width="0dp"
|
|
||||||
android:layout_height="wrap_content"
|
|
||||||
android:layout_weight="10"
|
|
||||||
>
|
|
||||||
|
|
||||||
<TextView
|
|
||||||
android:layout_width="0dp"
|
|
||||||
android:layout_height="wrap_content"
|
|
||||||
android:layout_column="1"
|
|
||||||
android:layout_weight="5"
|
|
||||||
android:lines="2"
|
|
||||||
android:text="NIRT Lab Number :"
|
|
||||||
android:textSize="18sp" />
|
|
||||||
|
|
||||||
<TextView
|
|
||||||
android:layout_width="0dp"
|
|
||||||
android:textSize="18sp"
|
|
||||||
|
|
||||||
android:text="Female"
|
|
||||||
android:layout_weight="5"
|
|
||||||
android:layout_height="wrap_content" />
|
|
||||||
</TableRow>
|
|
||||||
<View
|
|
||||||
android:layout_marginLeft="15dp"
|
|
||||||
android:layout_marginRight="15dp"
|
|
||||||
android:layout_width="fill_parent"
|
|
||||||
|
|
||||||
android:layout_height="2dp"
|
|
||||||
android:background="#eee" />
|
|
||||||
|
|
||||||
</TableLayout>
|
|
||||||
<TableLayout
|
|
||||||
|
|
||||||
android:layout_width="wrap_content"
|
|
||||||
android:layout_height="wrap_content">
|
|
||||||
|
|
||||||
<TableRow
|
|
||||||
android:padding="15dp"
|
|
||||||
|
|
||||||
android:layout_width="0dp"
|
|
||||||
android:layout_height="wrap_content"
|
|
||||||
android:layout_weight="10"
|
|
||||||
>
|
|
||||||
|
|
||||||
<TextView
|
|
||||||
android:text="SPIN Tube ID :"
|
|
||||||
android:textSize="18sp"
|
|
||||||
android:lines="2"
|
|
||||||
android:layout_weight="5"
|
|
||||||
android:layout_width="0dp"
|
|
||||||
android:layout_height="wrap_content"
|
|
||||||
android:layout_column="1" />
|
|
||||||
|
|
||||||
<TextView
|
|
||||||
android:layout_width="0dp"
|
|
||||||
android:textSize="18sp"
|
|
||||||
|
|
||||||
android:text="Female"
|
|
||||||
android:layout_weight="5"
|
|
||||||
android:layout_height="wrap_content" />
|
|
||||||
</TableRow>
|
|
||||||
<View
|
|
||||||
android:layout_marginLeft="15dp"
|
|
||||||
android:layout_marginRight="15dp"
|
|
||||||
android:layout_width="fill_parent"
|
|
||||||
|
|
||||||
android:layout_height="2dp"
|
|
||||||
android:background="#eee" />
|
|
||||||
|
|
||||||
</TableLayout>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<TableLayout
|
|
||||||
|
|
||||||
android:layout_width="wrap_content"
|
|
||||||
android:layout_height="wrap_content">
|
|
||||||
|
|
||||||
<TableRow
|
|
||||||
android:padding="15dp"
|
|
||||||
|
|
||||||
android:layout_width="0dp"
|
|
||||||
android:layout_height="wrap_content"
|
|
||||||
android:layout_weight="10"
|
|
||||||
>
|
|
||||||
|
|
||||||
<TextView
|
|
||||||
android:text="Type of Sample :"
|
|
||||||
android:textSize="18sp"
|
|
||||||
android:lines="2"
|
|
||||||
android:layout_weight="5"
|
|
||||||
android:layout_width="0dp"
|
|
||||||
android:layout_height="wrap_content"
|
|
||||||
android:layout_column="1" />
|
|
||||||
|
|
||||||
<TextView
|
|
||||||
android:layout_width="0dp"
|
|
||||||
android:textSize="18sp"
|
|
||||||
|
|
||||||
android:text="Female"
|
|
||||||
android:layout_weight="5"
|
|
||||||
android:layout_height="wrap_content" />
|
|
||||||
</TableRow>
|
|
||||||
<View
|
|
||||||
android:layout_marginLeft="15dp"
|
|
||||||
android:layout_marginRight="15dp"
|
|
||||||
android:layout_width="fill_parent"
|
|
||||||
|
|
||||||
android:layout_height="2dp"
|
|
||||||
android:background="#eee" />
|
|
||||||
|
|
||||||
</TableLayout>
|
|
||||||
<TableLayout
|
|
||||||
|
|
||||||
android:layout_width="wrap_content"
|
|
||||||
android:layout_height="wrap_content">
|
|
||||||
|
|
||||||
<TableRow
|
|
||||||
android:padding="15dp"
|
|
||||||
|
|
||||||
android:layout_width="0dp"
|
|
||||||
android:layout_height="wrap_content"
|
|
||||||
android:layout_weight="10"
|
|
||||||
>
|
|
||||||
|
|
||||||
<TextView
|
|
||||||
android:text="Tube Validity :"
|
|
||||||
android:textSize="18sp"
|
|
||||||
android:lines="2"
|
|
||||||
android:layout_weight="5"
|
|
||||||
android:layout_width="0dp"
|
|
||||||
android:layout_height="wrap_content"
|
|
||||||
android:layout_column="1" />
|
|
||||||
|
|
||||||
<TextView
|
|
||||||
android:layout_width="0dp"
|
|
||||||
android:textSize="18sp"
|
|
||||||
|
|
||||||
android:text="Female"
|
|
||||||
android:layout_weight="5"
|
|
||||||
android:layout_height="wrap_content" />
|
|
||||||
</TableRow>
|
|
||||||
<View
|
|
||||||
android:layout_marginLeft="15dp"
|
|
||||||
android:layout_marginRight="15dp"
|
|
||||||
android:layout_width="fill_parent"
|
|
||||||
|
|
||||||
android:layout_height="2dp"
|
|
||||||
android:background="#eee" />
|
|
||||||
|
|
||||||
</TableLayout>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
</TableLayout>
|
|
||||||
</LinearLayout>
|
|
||||||
|
|
||||||
|
|
||||||
</LinearLayout>
|
|
||||||
|
|
||||||
</LinearLayout>
|
|
||||||
Reference in New Issue
Block a user