Advertisement
minafaw3

astigmatism xml

Oct 12th, 2015
209
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.48 KB | None | 0 0
  1. <?xml version="1.0" encoding="utf-8"?>
  2. <ScrollView xmlns:android="http://schemas.android.com/apk/res/android"
  3. android:layout_width="match_parent"
  4. android:background="@drawable/base_back7"
  5. android:layout_height="match_parent" >
  6.  
  7. <LinearLayout
  8. android:layout_width="match_parent"
  9. android:layout_height="match_parent"
  10. android:orientation="vertical" >
  11.  
  12. <FrameLayout
  13. android:layout_width="match_parent"
  14. android:layout_height="@dimen/actionbar_dimen"
  15. android:background="@color/blue" >
  16.  
  17. <ImageView
  18. android:id="@+id/drawer_indicator"
  19. android:layout_width="@dimen/actionbar_dimen"
  20. android:layout_height="@dimen/actionbar_dimen"
  21. android:layout_gravity="right"
  22. android:background="@drawable/drawer_selector"
  23. android:scaleType="centerInside" />
  24.  
  25. <TextView
  26. android:id="@+id/indicator_style"
  27. android:layout_width="wrap_content"
  28. android:layout_height="@dimen/actionbar_dimen"
  29. android:layout_gravity="center"
  30. android:background="@drawable/drawer_selector"
  31. android:gravity="center"
  32. android:paddingLeft="12dp"
  33. android:paddingRight="12dp"
  34. android:text="@string/tests"
  35. android:textColor="@android:color/white"
  36. android:textStyle="bold" />
  37. </FrameLayout>
  38.  
  39. <TextView
  40. android:id="@+id/distance"
  41. android:layout_width="wrap_content"
  42. android:layout_height="wrap_content"
  43. android:layout_gravity="center"
  44. android:layout_margin="10dp"
  45. android:text="المسافه الان 0"
  46. android:textSize="17sp"
  47. android:visibility="gone" />
  48.  
  49. <ImageView
  50. android:id="@+id/astigmatism_img"
  51. android:layout_width="wrap_content"
  52. android:layout_height="wrap_content"
  53. android:layout_gravity="center"
  54. android:layout_margin="20dp"
  55. android:src="@drawable/astigmatism_one" />
  56.  
  57. <Button
  58. android:id="@+id/gwab"
  59. style="?android:attr/buttonStyleSmall"
  60. android:layout_width="match_parent"
  61. android:layout_height="wrap_content"
  62. android:layout_gravity="center"
  63. android:layout_margin="10dp"
  64. android:background="@drawable/button_click"
  65. android:padding="20dp"
  66. android:text="جاوب"
  67. android:textColor="@android:color/white" />
  68.  
  69. </LinearLayout>
  70. </ScrollView>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement