Guest User

Xml Code

a guest
Jun 2nd, 2014
345
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
XML 30.09 KB | None | 0 0
  1. <?xml version="1.0" encoding="utf-8"?>
  2. <RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
  3.    xmlns:tools="http://schemas.android.com/tools"
  4.    android:id="@+id/container"
  5.    android:layout_width="match_parent"
  6.    android:layout_height="match_parent"
  7.    android:background="#FFFAFF" >
  8.  
  9.     <!-- Header aligned to top -->
  10.  
  11.     <LinearLayout
  12.        android:id="@+id/header"
  13.        android:layout_width="fill_parent"
  14.        android:layout_height="wrap_content"
  15.        android:layout_alignParentTop="true"
  16.        android:gravity="center"
  17.        android:orientation="vertical" >
  18.  
  19.         <LinearLayout
  20.            android:layout_width="fill_parent"
  21.            android:layout_height="wrap_content"
  22.            android:layout_marginTop="3sp"
  23.            android:baselineAligned="false"
  24.            android:orientation="horizontal"
  25.            android:weightSum="1.0" >
  26.  
  27.             <LinearLayout
  28.                android:layout_width="0dp"
  29.                android:layout_height="wrap_content"
  30.                android:layout_weight=".90"
  31.                android:gravity="center"
  32.                android:orientation="horizontal" >
  33.  
  34.                 <TextView
  35.                    android:layout_width="wrap_content"
  36.                    android:layout_height="wrap_content"
  37.                    android:layout_gravity="center"
  38.                    android:layout_marginLeft="50dp"
  39.                    android:text="@string/pp_str_header"
  40.                    android:textColor="#000000"
  41.                    android:textSize="35sp" />
  42.             </LinearLayout>
  43.  
  44.             <LinearLayout
  45.                android:layout_width="0dp"
  46.                android:layout_height="wrap_content"
  47.                android:layout_weight=".10"
  48.                android:gravity="center"
  49.                android:orientation="horizontal" >
  50.  
  51.                 <Button
  52.                    android:id="@+id/PP_Btn_Home"
  53.                    android:layout_width="45dp"
  54.                    android:layout_height="45dp"
  55.                    android:layout_marginRight="5sp"
  56.                    android:background="@drawable/home" />
  57.             </LinearLayout>
  58.         </LinearLayout>
  59.  
  60.         <TextView
  61.            android:layout_width="fill_parent"
  62.            android:layout_height="1sp"
  63.            android:background="#000000" />
  64.     </LinearLayout>
  65.  
  66.     <!-- Footer aligned to bottom -->
  67.  
  68.     <LinearLayout
  69.        android:id="@+id/footer"
  70.        android:layout_width="fill_parent"
  71.        android:layout_height="wrap_content"
  72.        android:layout_alignParentBottom="true"
  73.        android:layout_marginBottom="2sp"
  74.        android:layout_marginTop="2sp"
  75.        android:orientation="vertical" >
  76.  
  77.         <LinearLayout
  78.            android:layout_width="fill_parent"
  79.            android:layout_height="wrap_content"
  80.            android:layout_marginTop="2sp"
  81.            android:gravity="center"
  82.            android:orientation="horizontal"
  83.            android:weightSum="1.0" >
  84.  
  85.             <Button
  86.                android:id="@+id/Btn_Diagnosis"
  87.                style="@style/btnStyle"
  88.                android:layout_width="wrap_content"
  89.                android:layout_height="wrap_content"
  90.                android:layout_weight="0.50"
  91.                android:text="@string/str_btn_diagnosis"
  92.                android:textSize="18sp" />
  93.  
  94.             <Button
  95.                android:id="@+id/Btn_Disease"
  96.                style="@style/btnStyle"
  97.                android:layout_width="wrap_content"
  98.                android:layout_height="wrap_content"
  99.                android:layout_marginLeft="1sp"
  100.                android:layout_weight="0.50"
  101.                android:text="@string/str_btn_disease"
  102.                android:textSize="18sp" />
  103.         </LinearLayout>
  104.  
  105.         <LinearLayout
  106.            android:layout_width="fill_parent"
  107.            android:layout_height="wrap_content"
  108.            android:layout_marginTop="2sp"
  109.            android:gravity="center"
  110.            android:orientation="horizontal"
  111.            android:weightSum="1.0" >
  112.  
  113.             <Button
  114.                android:id="@+id/Btn_Allergy"
  115.                style="@style/btnStyle"
  116.                android:layout_width="wrap_content"
  117.                android:layout_height="wrap_content"
  118.                android:layout_weight="0.20"
  119.                android:text="@string/str_btn_allergy"
  120.                android:textSize="18sp" />
  121.  
  122.             <Button
  123.                android:id="@+id/Btn_Medicine"
  124.                style="@style/btnStyle"
  125.                android:layout_width="wrap_content"
  126.                android:layout_height="wrap_content"
  127.                android:layout_marginLeft="1sp"
  128.                android:layout_marginRight="1sp"
  129.                android:layout_weight="0.20"
  130.                android:text="@string/str_btn_medicine"
  131.                android:textSize="18sp" />
  132.  
  133.             <Button
  134.                android:id="@+id/Btn_Prescription"
  135.                style="@style/btnStyle"
  136.                android:layout_width="wrap_content"
  137.                android:layout_height="wrap_content"
  138.                android:layout_weight="0.20"
  139.                android:background="#000066"
  140.                android:text="@string/str_btn_prescription"
  141.                android:textSize="18sp" />
  142.  
  143.             <Button
  144.                android:id="@+id/Btn_History"
  145.                style="@style/btnStyle"
  146.                android:layout_width="wrap_content"
  147.                android:layout_height="wrap_content"
  148.                android:layout_marginLeft="1sp"
  149.                android:layout_marginRight="1sp"
  150.                android:layout_weight="0.20"
  151.                android:text="@string/str_btn_history"
  152.                android:textSize="18sp" />
  153.  
  154.             <Button
  155.                android:id="@+id/Btn_Detail"
  156.                style="@style/btnStyle"
  157.                android:layout_width="wrap_content"
  158.                android:layout_height="wrap_content"
  159.                android:layout_weight="0.20"
  160.                android:text="@string/str_btn_detail"
  161.                android:textSize="18sp" />
  162.         </LinearLayout>
  163.     </LinearLayout>
  164.  
  165.     <!-- Content below header and above footer -->
  166.  
  167.     <ScrollView
  168.        android:id="@+id/PP_Scroll"
  169.        android:layout_width="fill_parent"
  170.        android:layout_height="fill_parent"
  171.        android:layout_above="@id/footer"
  172.        android:layout_below="@id/header" >
  173.  
  174.         <LinearLayout
  175.            android:id="@+id/PP_Ll"
  176.            android:layout_width="fill_parent"
  177.            android:layout_height="wrap_content"
  178.            android:layout_marginLeft="3sp"
  179.            android:orientation="vertical" >
  180.  
  181.             <TextView
  182.                android:id="@+id/pdate"
  183.                android:layout_width="wrap_content"
  184.                android:layout_height="wrap_content"
  185.                android:layout_gravity="right"
  186.                android:layout_marginRight="5sp"
  187.                android:hint="@string/pp_str_h_currentDate"
  188.                android:textColor="#000000" />
  189.  
  190.             <TextView
  191.                android:id="@+id/hospitalname"
  192.                android:layout_width="wrap_content"
  193.                android:layout_height="wrap_content"
  194.                android:layout_gravity="center"
  195.                android:layout_marginRight="5sp"
  196.                android:hint="@string/pp_str_h_hospitalName"
  197.                android:textColor="#000066"
  198.                android:textStyle="bold"
  199.                android:typeface="serif" />
  200.  
  201.             <TextView
  202.                android:id="@+id/addresss"
  203.                android:layout_width="wrap_content"
  204.                android:layout_height="wrap_content"
  205.                android:layout_gravity="right"
  206.                android:layout_marginRight="5sp"
  207.                android:hint="@string/pp_str_h_hospitalAddress"
  208.                android:textColor="#000000" />
  209.  
  210.             <LinearLayout
  211.                android:layout_width="fill_parent"
  212.                android:layout_height="wrap_content"
  213.                android:layout_marginRight="5sp"
  214.                android:gravity="right"
  215.                android:orientation="horizontal" >
  216.  
  217.                 <TextView
  218.                    android:id="@+id/Namee"
  219.                    android:layout_width="wrap_content"
  220.                    android:layout_height="wrap_content"
  221.                    android:hint="@string/pp_str_h_docName"
  222.                    android:textColor="#000000" />
  223.  
  224.                 <TextView
  225.                    android:layout_width="wrap_content"
  226.                    android:layout_height="wrap_content"
  227.                    android:layout_marginRight="5sp"
  228.                    android:text="@string/pp_str_comma"
  229.                    android:textColor="#000000" />
  230.  
  231.                 <TextView
  232.                    android:id="@+id/Degree"
  233.                    android:layout_width="wrap_content"
  234.                    android:layout_height="wrap_content"
  235.                    android:hint="@string/pp_str_h_degree"
  236.                    android:textColor="#000000" />
  237.             </LinearLayout>
  238.  
  239.             <LinearLayout
  240.                android:layout_width="fill_parent"
  241.                android:layout_height="wrap_content"
  242.                android:layout_marginRight="5sp"
  243.                android:gravity="right"
  244.                android:orientation="horizontal" >
  245.  
  246.                 <TextView
  247.                    android:layout_width="wrap_content"
  248.                    android:layout_height="wrap_content"
  249.                    android:text="@string/pp_str_speciality"
  250.                    android:textColor="#000066" />
  251.  
  252.                 <TextView
  253.                    android:id="@+id/Speciality"
  254.                    android:layout_width="wrap_content"
  255.                    android:layout_height="wrap_content"
  256.                    android:layout_marginLeft="5sp"
  257.                    android:hint="@string/pp_str_h_speciality"
  258.                    android:textColor="#000000" />
  259.             </LinearLayout>
  260.  
  261.             <LinearLayout
  262.                android:layout_width="fill_parent"
  263.                android:layout_height="wrap_content"
  264.                android:layout_marginRight="5sp"
  265.                android:gravity="right"
  266.                android:orientation="horizontal" >
  267.  
  268.                 <TextView
  269.                    android:layout_width="wrap_content"
  270.                    android:layout_height="wrap_content"
  271.                    android:text="@string/pp_str_phone"
  272.                    android:textColor="#000066" />
  273.  
  274.                 <TextView
  275.                    android:id="@+id/phonee"
  276.                    android:layout_width="wrap_content"
  277.                    android:layout_height="wrap_content"
  278.                    android:layout_marginLeft="5sp"
  279.                    android:hint="@string/pp_str_h_phone"
  280.                    android:textColor="#000000" />
  281.             </LinearLayout>
  282.  
  283.             <LinearLayout
  284.                android:layout_width="fill_parent"
  285.                android:layout_height="wrap_content"
  286.                android:layout_marginRight="5sp"
  287.                android:gravity="right"
  288.                android:orientation="horizontal" >
  289.  
  290.                 <TextView
  291.                    android:layout_width="wrap_content"
  292.                    android:layout_height="wrap_content"
  293.                    android:text="@string/pp_str_email"
  294.                    android:textColor="#000066" />
  295.  
  296.                 <TextView
  297.                    android:id="@+id/emaill"
  298.                    android:layout_width="wrap_content"
  299.                    android:layout_height="wrap_content"
  300.                    android:layout_marginLeft="5sp"
  301.                    android:hint="@string/pp_str_h_email"
  302.                    android:textColor="#000000" />
  303.             </LinearLayout>
  304.  
  305.             <LinearLayout
  306.                android:layout_width="fill_parent"
  307.                android:layout_height="wrap_content"
  308.                android:layout_marginRight="5sp"
  309.                android:gravity="right"
  310.                android:orientation="horizontal" >
  311.  
  312.                 <TextView
  313.                    android:layout_width="wrap_content"
  314.                    android:layout_height="wrap_content"
  315.                    android:text="@string/pp_str_license"
  316.                    android:textColor="#000066" />
  317.  
  318.                 <TextView
  319.                    android:id="@+id/licencee"
  320.                    android:layout_width="wrap_content"
  321.                    android:layout_height="wrap_content"
  322.                    android:layout_marginLeft="5sp"
  323.                    android:hint="@string/pp_str_h_license"
  324.                    android:textColor="#000000" />
  325.             </LinearLayout>
  326.  
  327.             <TextView
  328.                android:layout_width="fill_parent"
  329.                android:layout_height="1sp"
  330.                android:background="#000000" />
  331.            
  332.             <LinearLayout
  333.                android:id="@+id/PP_Ll1"
  334.                android:layout_width="fill_parent"
  335.                android:layout_height="wrap_content"
  336.                android:orientation="vertical">
  337.            
  338.             <TextView
  339.                android:layout_width="fill_parent"
  340.                android:layout_height="wrap_content"
  341.                android:layout_marginTop="2sp"
  342.                android:gravity="center"
  343.                android:text="@string/h_str_patient_detail"
  344.                android:textColor="#000066"
  345.                android:textSize="16sp" />
  346.  
  347.             <LinearLayout
  348.                android:layout_width="fill_parent"
  349.                android:layout_height="wrap_content"
  350.                android:orientation="horizontal" >
  351.  
  352.                 <TextView
  353.                    android:layout_width="100dp"
  354.                    android:layout_height="wrap_content"
  355.                    android:text="@string/pp_str_patientName"
  356.                    android:textColor="#000066" />
  357.  
  358.                 <TextView
  359.                    android:id="@+id/PP_Txtv_Name"
  360.                    android:layout_width="wrap_content"
  361.                    android:layout_height="wrap_content"
  362.                    android:layout_marginLeft="5sp"
  363.                    android:hint="@string/pp_str_h_patientName"
  364.                    android:textColor="#000000" />
  365.             </LinearLayout>
  366.  
  367.             <LinearLayout
  368.                android:layout_width="fill_parent"
  369.                android:layout_height="wrap_content"
  370.                android:orientation="horizontal" >
  371.  
  372.                 <TextView
  373.                    android:layout_width="100dp"
  374.                    android:layout_height="wrap_content"
  375.                    android:text="@string/pp_str_patientId"
  376.                    android:textColor="#000066" />
  377.  
  378.                 <TextView
  379.                    android:id="@+id/PP_Txtv_UHID"
  380.                    android:layout_width="wrap_content"
  381.                    android:layout_height="wrap_content"
  382.                    android:layout_marginLeft="5sp"
  383.                    android:hint="@string/pp_str_h_patientId"
  384.                    android:textColor="#000000" />
  385.             </LinearLayout>
  386.  
  387.             <LinearLayout
  388.                android:layout_width="fill_parent"
  389.                android:layout_height="wrap_content"
  390.                android:orientation="horizontal" >
  391.  
  392.                 <TextView
  393.                    android:layout_width="100dp"
  394.                    android:layout_height="wrap_content"
  395.                    android:text="@string/pp_str_sex"
  396.                    android:textColor="#000066" />
  397.  
  398.                 <TextView
  399.                    android:id="@+id/PP_Txtv_Sex"
  400.                    android:layout_width="wrap_content"
  401.                    android:layout_height="wrap_content"
  402.                    android:layout_marginLeft="5sp"
  403.                    android:hint="@string/pp_str_h_sex"
  404.                    android:textColor="#000000" />
  405.             </LinearLayout>
  406.  
  407.             <LinearLayout
  408.                android:layout_width="fill_parent"
  409.                android:layout_height="wrap_content"
  410.                android:orientation="horizontal" >
  411.  
  412.                 <TextView
  413.                    android:layout_width="100dp"
  414.                    android:layout_height="wrap_content"
  415.                    android:text="@string/pp_str_age"
  416.                    android:textColor="#000066" />
  417.  
  418.                 <TextView
  419.                    android:id="@+id/PP_Txtv_Age"
  420.                    android:layout_width="wrap_content"
  421.                    android:layout_height="wrap_content"
  422.                    android:layout_marginLeft="5sp"
  423.                    android:hint="@string/pp_str_h_age"
  424.                    android:textColor="#000000" />
  425.             </LinearLayout>
  426.  
  427.             <LinearLayout
  428.                android:layout_width="fill_parent"
  429.                android:layout_height="wrap_content"
  430.                android:orientation="horizontal" >
  431.  
  432.                 <TextView
  433.                    android:layout_width="100dp"
  434.                    android:layout_height="wrap_content"
  435.                    android:text="@string/pp_str_height"
  436.                    android:textColor="#000066" />
  437.  
  438.                 <TextView
  439.                    android:id="@+id/PP_Txtv_Height"
  440.                    android:layout_width="wrap_content"
  441.                    android:layout_height="wrap_content"
  442.                    android:layout_marginLeft="5sp"
  443.                    android:hint="@string/pp_str_h_height"
  444.                    android:textColor="#000000" />
  445.             </LinearLayout>
  446.  
  447.             <LinearLayout
  448.                android:layout_width="fill_parent"
  449.                android:layout_height="wrap_content"
  450.                android:orientation="horizontal" >
  451.  
  452.                 <TextView
  453.                    android:layout_width="100dp"
  454.                    android:layout_height="wrap_content"
  455.                    android:text="@string/pp_str_weight"
  456.                    android:textColor="#000066" />
  457.  
  458.                 <TextView
  459.                    android:id="@+id/PP_Txtv_Weight"
  460.                    android:layout_width="wrap_content"
  461.                    android:layout_height="wrap_content"
  462.                    android:layout_marginLeft="5sp"
  463.                    android:hint="@string/pp_str_h_weight"
  464.                    android:textColor="#000000" />
  465.             </LinearLayout>
  466.  
  467.             <LinearLayout
  468.                android:layout_width="fill_parent"
  469.                android:layout_height="wrap_content"
  470.                android:orientation="horizontal" >
  471.  
  472.                 <TextView
  473.                    android:layout_width="100dp"
  474.                    android:layout_height="wrap_content"
  475.                    android:text="@string/pp_str_temp"
  476.                    android:textColor="#000066" />
  477.  
  478.                 <TextView
  479.                    android:id="@+id/PP_Txtv_Temp"
  480.                    android:layout_width="wrap_content"
  481.                    android:layout_height="wrap_content"
  482.                    android:layout_marginLeft="5sp"
  483.                    android:hint="@string/pp_str_h_temp"
  484.                    android:textColor="#000000" />
  485.             </LinearLayout>
  486.  
  487.             <LinearLayout
  488.                android:layout_width="fill_parent"
  489.                android:layout_height="wrap_content"
  490.                android:orientation="horizontal" >
  491.  
  492.                 <TextView
  493.                    android:layout_width="100dp"
  494.                    android:layout_height="wrap_content"
  495.                    android:text="@string/pp_str_pulse"
  496.                    android:textColor="#000066" />
  497.  
  498.                 <TextView
  499.                    android:id="@+id/PP_Txtv_Pulse"
  500.                    android:layout_width="wrap_content"
  501.                    android:layout_height="wrap_content"
  502.                    android:layout_marginLeft="5sp"
  503.                    android:hint="@string/pp_str_h_pulse"
  504.                    android:textColor="#000000" />
  505.             </LinearLayout>
  506.  
  507.             <LinearLayout
  508.                android:layout_width="fill_parent"
  509.                android:layout_height="wrap_content"
  510.                android:orientation="horizontal" >
  511.  
  512.                 <TextView
  513.                    android:layout_width="100dp"
  514.                    android:layout_height="wrap_content"
  515.                    android:text="@string/pp_str_bp"
  516.                    android:textColor="#000066" />
  517.  
  518.                 <TextView
  519.                    android:id="@+id/PP_Txtv_BP"
  520.                    android:layout_width="wrap_content"
  521.                    android:layout_height="wrap_content"
  522.                    android:layout_marginLeft="5sp"
  523.                    android:hint="@string/pp_str_h_bp"
  524.                    android:textColor="#000000" />
  525.             </LinearLayout>
  526.  
  527.             <LinearLayout
  528.                android:layout_width="fill_parent"
  529.                android:layout_height="wrap_content"
  530.                android:orientation="horizontal" >
  531.  
  532.                 <TextView
  533.                    android:layout_width="100dp"
  534.                    android:layout_height="wrap_content"
  535.                    android:text="@string/pp_str_bmi"
  536.                    android:textColor="#000066" />
  537.  
  538.                 <TextView
  539.                    android:id="@+id/PP_Txtv_Bmi"
  540.                    android:layout_width="wrap_content"
  541.                    android:layout_height="wrap_content"
  542.                    android:layout_marginLeft="5sp"
  543.                    android:hint="@string/pp_str_h_bmi"
  544.                    android:textColor="#000000" />
  545.             </LinearLayout>
  546.  
  547.             <LinearLayout
  548.                android:layout_width="fill_parent"
  549.                android:layout_height="wrap_content"
  550.                android:orientation="horizontal" >
  551.  
  552.                 <TextView
  553.                    android:layout_width="100dp"
  554.                    android:layout_height="wrap_content"
  555.                    android:text="@string/pp_str_obesity"
  556.                    android:textColor="#000066" />
  557.  
  558.                 <TextView
  559.                    android:id="@+id/PP_Txtv_Obesity"
  560.                    android:layout_width="wrap_content"
  561.                    android:layout_height="wrap_content"
  562.                    android:layout_marginLeft="5sp"
  563.                    android:hint="@string/pp_str_h_obesity"
  564.                    android:textColor="#000000" />
  565.             </LinearLayout>
  566.  
  567.             <LinearLayout
  568.                android:layout_width="fill_parent"
  569.                android:layout_height="wrap_content"
  570.                android:orientation="horizontal" >
  571.  
  572.                 <TextView
  573.                    android:layout_width="100dp"
  574.                    android:layout_height="wrap_content"
  575.                    android:text="@string/pp_str_bg"
  576.                    android:textColor="#000066" />
  577.  
  578.                 <TextView
  579.                    android:id="@+id/PP_Txtv_Bg"
  580.                    android:layout_width="wrap_content"
  581.                    android:layout_height="wrap_content"
  582.                    android:layout_marginLeft="5sp"
  583.                    android:hint="@string/pp_str_h_bg"
  584.                    android:textColor="#000000" />
  585.             </LinearLayout>
  586.  
  587.             <LinearLayout
  588.                android:layout_width="fill_parent"
  589.                android:layout_height="wrap_content"
  590.                android:orientation="horizontal" >
  591.  
  592.                 <TextView
  593.                    android:layout_width="100dp"
  594.                    android:layout_height="wrap_content"
  595.                    android:text="@string/pp_str_contact"
  596.                    android:textColor="#000066" />
  597.  
  598.                 <TextView
  599.                    android:id="@+id/PP_Txtv_Contact"
  600.                    android:layout_width="wrap_content"
  601.                    android:layout_height="wrap_content"
  602.                    android:layout_marginLeft="5sp"
  603.                    android:hint="@string/pp_str_h_contact"
  604.                    android:textColor="#000000" />
  605.             </LinearLayout>
  606.  
  607.             <LinearLayout
  608.                android:layout_width="fill_parent"
  609.                android:layout_height="wrap_content"
  610.                android:orientation="horizontal" >
  611.  
  612.                 <TextView
  613.                    android:layout_width="100dp"
  614.                    android:layout_height="wrap_content"
  615.                    android:text="@string/pp_str_email"
  616.                    android:textColor="#000066" />
  617.  
  618.                 <TextView
  619.                    android:id="@+id/PP_Txtv_Email"
  620.                    android:layout_width="wrap_content"
  621.                    android:layout_height="wrap_content"
  622.                    android:layout_marginLeft="5sp"
  623.                    android:hint="@string/pp_str_h_email"
  624.                    android:textColor="#000000" />
  625.             </LinearLayout>
  626.  
  627.             <LinearLayout
  628.                android:layout_width="fill_parent"
  629.                android:layout_height="wrap_content"
  630.                android:orientation="horizontal" >
  631.  
  632.                 <TextView
  633.                    android:layout_width="100dp"
  634.                    android:layout_height="wrap_content"
  635.                    android:text="@string/pp_str_address"
  636.                    android:textColor="#000066" />
  637.  
  638.                 <TextView
  639.                    android:id="@+id/PP_Txtv_Address"
  640.                    android:layout_width="wrap_content"
  641.                    android:layout_height="wrap_content"
  642.                    android:layout_marginLeft="5sp"
  643.                    android:hint="@string/pp_str_h_address"
  644.                    android:textColor="#000000" />
  645.             </LinearLayout>
  646.  
  647.             <TextView
  648.                android:layout_width="fill_parent"
  649.                android:layout_height="1sp"
  650.                android:background="#000000" />
  651.  
  652.             <TextView
  653.                android:id="@+id/PP_Txtv_ComplaintDetail"
  654.                android:layout_width="fill_parent"
  655.                android:layout_height="wrap_content"
  656.                android:layout_marginBottom="2sp"
  657.                android:layout_marginTop="2sp"
  658.                android:gravity="center"
  659.                android:text="@string/h_str_complaint_detail"
  660.                android:textColor="#000066"
  661.                android:textSize="16sp"
  662.                android:visibility="gone" />
  663.  
  664.             <LinearLayout
  665.                android:id="@+id/PP_Ll_Complaint"
  666.                android:layout_width="fill_parent"
  667.                android:layout_height="wrap_content"
  668.                android:orientation="vertical" >
  669.             </LinearLayout>
  670.  
  671.             <TextView
  672.                android:id="@+id/PP_Txtv_DiseaseDetail"
  673.                android:layout_width="fill_parent"
  674.                android:layout_height="wrap_content"
  675.                android:layout_marginBottom="2sp"
  676.                android:layout_marginTop="2sp"
  677.                android:gravity="center"
  678.                android:text="@string/h_str_disease_detail"
  679.                android:textColor="#000066"
  680.                android:textSize="16sp"
  681.                android:visibility="gone" />
  682.  
  683.             <LinearLayout
  684.                android:id="@+id/PP_Ll_Disease"
  685.                android:layout_width="fill_parent"
  686.                android:layout_height="wrap_content"
  687.                android:orientation="vertical" >
  688.             </LinearLayout>
  689.  
  690.             <TextView
  691.                android:id="@+id/PP_Txtv_AllergicDetail"
  692.                android:layout_width="fill_parent"
  693.                android:layout_height="wrap_content"
  694.                android:layout_marginBottom="2sp"
  695.                android:layout_marginTop="2sp"
  696.                android:gravity="center"
  697.                android:text="@string/h_str_allergic_detail"
  698.                android:textColor="#000066"
  699.                android:textSize="16sp"
  700.                android:visibility="gone" />
  701.  
  702.             <LinearLayout
  703.                android:id="@+id/PP_Ll_Allergy"
  704.                android:layout_width="fill_parent"
  705.                android:layout_height="wrap_content"
  706.                android:orientation="vertical" >
  707.             </LinearLayout>
  708.  
  709.             <TextView
  710.                android:id="@+id/PP_Txtv_MedicineDetail"
  711.                android:layout_width="fill_parent"
  712.                android:layout_height="wrap_content"
  713.                android:layout_marginBottom="2sp"
  714.                android:layout_marginTop="2sp"
  715.                android:gravity="center"
  716.                android:text="@string/h_str_medicine_detail"
  717.                android:textColor="#000066"
  718.                android:textSize="16sp"
  719.                android:visibility="gone" />
  720.  
  721.             <LinearLayout
  722.                android:id="@+id/PP_Ll_Medicine"
  723.                android:layout_width="fill_parent"
  724.                android:layout_height="wrap_content"
  725.                android:orientation="vertical" >
  726.             </LinearLayout>
  727.  
  728.             <TextView
  729.                android:layout_width="fill_parent"
  730.                android:layout_height="20sp"
  731.                android:text="@string/pp_str_Note"
  732.                android:textColor="#000066" />
  733.  
  734.             <TextView
  735.                android:layout_width="fill_parent"
  736.                android:layout_height="20sp"
  737.                android:text="@string/pp_str_assessment"
  738.                android:textColor="#000066" />
  739.  
  740.             <Button
  741.                android:id="@+id/Btn_Save"
  742.                style="@style/btnStyle"
  743.                android:layout_width="100sp"
  744.                android:layout_height="wrap_content"
  745.                android:layout_gravity="center"
  746.                android:layout_marginBottom="10sp"
  747.                android:layout_marginTop="10sp"
  748.                android:text="@string/str_btn_submit"
  749.                android:textSize="18sp" />
  750.            
  751.             <Button
  752.                android:id="@+id/Btn_Capture"
  753.                style="@style/btnStyle"
  754.                android:layout_width="100sp"
  755.                android:layout_height="wrap_content"
  756.                android:layout_gravity="center"
  757.                android:layout_marginBottom="10sp"
  758.                android:text="Capture"
  759.                android:textSize="18sp" />
  760.             </LinearLayout>
  761.         </LinearLayout>
  762.     </ScrollView>
  763.  
  764. </RelativeLayout>
Advertisement
Add Comment
Please, Sign In to add comment