Advertisement
Guest User

Untitled

a guest
Sep 14th, 2018
70
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.17 KB | None | 0 0
  1. <?xml version="1.0" encoding="utf-8"?>
  2. <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
  3. xmlns:app="http://schemas.android.com/apk/res-auto"
  4. xmlns:tools="http://schemas.android.com/tools"
  5. android:layout_width="match_parent"
  6. android:layout_height="match_parent"
  7. tools:context=".TeacherActivity"
  8. android:orientation="vertical"
  9. android:background="#7fecb7">
  10.  
  11. <TextView
  12. android:layout_width="wrap_content"
  13. android:layout_height="wrap_content"
  14. android:text="Faculty Info"
  15. android:textSize="40dp"
  16. android:textStyle="bold"
  17. android:layout_gravity="center"
  18. android:layout_marginTop="40dp"/>
  19.  
  20. <LinearLayout
  21.  
  22. android:layout_marginTop="60dp"
  23. android:layout_width="match_parent"
  24. android:layout_height="200dp"
  25. android:orientation="horizontal"
  26. android:background="#51f1ce">
  27.  
  28. <ImageView
  29. android:layout_width="100dp"
  30. android:layout_height="100dp"
  31. android:layout_marginTop="45dp"
  32. android:background="#97affd"
  33. />
  34. <TextView
  35. android:layout_width="wrap_content"
  36. android:layout_height="wrap_content"
  37. android:text="Room No"
  38. android:textSize="25dp"
  39. android:layout_marginTop="25dp"
  40. android:layout_marginLeft="20sp"
  41. android:textStyle="bold"/>
  42. <TextView
  43. android:layout_width="wrap_content"
  44. android:layout_height="wrap_content"
  45. android:text="3100"
  46. android:layout_marginTop="25dp"
  47. android:layout_marginLeft="20sp"
  48. android:textStyle="bold"
  49. android:textSize="25dp"/>
  50.  
  51. <LinearLayout
  52. android:layout_width="wrap_content"
  53. android:layout_height="wrap_content"
  54. android:orientation="horizontal">
  55.  
  56. <TextView
  57. android:layout_width="wrap_content"
  58. android:layout_height="wrap_content"
  59. android:text="abcd"/>
  60.  
  61.  
  62.  
  63.  
  64. </LinearLayout>
  65.  
  66.  
  67.  
  68.  
  69.  
  70.  
  71.  
  72. </LinearLayout>
  73.  
  74.  
  75.  
  76.  
  77.  
  78. </LinearLayout>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement