Advertisement
minafaw3

profile

Sep 7th, 2015
207
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 5.50 KB | None | 0 0
  1. <?xml version="1.0" encoding="utf-8"?>
  2. <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
  3. android:layout_width="match_parent"
  4. android:layout_height="match_parent"
  5. android:background="@drawable/base_back7"
  6. android:orientation="vertical" >
  7.  
  8. <RelativeLayout
  9. android:layout_width="match_parent"
  10. android:layout_height="wrap_content"
  11. android:background="@drawable/blue"
  12. android:gravity="right"
  13. android:orientation="horizontal" >
  14.  
  15. <LinearLayout
  16. android:layout_width="match_parent"
  17. android:layout_height="wrap_content"
  18. android:layout_marginTop="10dp"
  19. android:orientation="vertical" >
  20. <FrameLayout
  21. android:layout_width="match_parent"
  22. android:layout_height="wrap_content"
  23. >
  24. <FrameLayout
  25. android:layout_width="wrap_content"
  26. android:layout_height="wrap_content"
  27. android:layout_gravity="center"
  28. android:layout_margin="10dp" >
  29.  
  30. <ImageView
  31. android:id="@+id/profileuserimage"
  32. android:layout_width="105dp"
  33. android:layout_height="105dp"
  34. ProfileStyle="CIRCLE"
  35. android:src="@drawable/download" />
  36.  
  37. <ProgressBar
  38. android:id="@+id/userimageprogress"
  39. android:layout_width="wrap_content"
  40. android:layout_height="wrap_content"
  41. android:layout_gravity="center"
  42. android:visibility="gone" />
  43.  
  44. <LinearLayout
  45. android:layout_width="105dp"
  46. android:layout_height="105dp"
  47. android:layout_gravity="start"
  48. android:background="@drawable/imagefram" >
  49. </LinearLayout>
  50. </FrameLayout>
  51.  
  52. <ImageView
  53. android:id="@+id/edit"
  54. android:layout_width="wrap_content"
  55. android:layout_height="wrap_content"
  56. android:layout_gravity="right"
  57. android:layout_margin="10dp"
  58. android:background="@android:drawable/ic_menu_edit" />
  59.  
  60.  
  61. </FrameLayout>
  62.  
  63. <LinearLayout
  64. android:layout_width="match_parent"
  65. android:layout_height="80dp"
  66. android:layout_marginBottom="10dp"
  67. android:layout_marginLeft="10dp"
  68. android:layout_marginRight="10dp"
  69. android:layout_marginTop="10dp"
  70. android:orientation="vertical" >
  71.  
  72. <TextView
  73. android:id="@+id/prof_username"
  74. android:layout_width="wrap_content"
  75. android:layout_height="0dp"
  76. android:layout_gravity="center"
  77. android:layout_weight="1"
  78. android:text="TextView"
  79. android:textColor="@android:color/white"
  80. android:textSize="17sp"
  81. android:textStyle="bold" />
  82.  
  83. <TextView
  84. android:id="@+id/prof_age "
  85. android:layout_width="wrap_content"
  86. android:layout_height="0dp"
  87. android:layout_gravity="center"
  88. android:layout_weight="1"
  89. android:text="22 سنه"
  90. android:textColor="@android:color/white"
  91. android:textSize="17sp"
  92. android:textStyle="bold" />
  93.  
  94. <TextView
  95. android:id="@+id/prof_email"
  96. android:layout_width="wrap_content"
  97. android:layout_height="0dp"
  98. android:layout_gravity="center"
  99. android:layout_weight="1"
  100. android:text="dd"
  101. android:textColor="@android:color/white"
  102. android:textSize="17sp"
  103. android:textStyle="bold" />
  104. </LinearLayout>
  105. </LinearLayout>
  106. </RelativeLayout>
  107.  
  108. <LinearLayout
  109. android:layout_width="match_parent"
  110. android:layout_height="wrap_content"
  111. android:layout_margin="10dp"
  112. android:background="@color/grey"
  113. android:orientation="vertical"
  114. android:visibility="gone" >
  115.  
  116. <TextView
  117. android:id="@+id/textView1"
  118. android:layout_width="wrap_content"
  119. android:layout_height="wrap_content"
  120. android:layout_gravity="center_horizontal"
  121. android:padding="10dp"
  122. android:text="@string/myques"
  123. android:textColor="@android:color/white" />
  124. </LinearLayout>
  125.  
  126. <FrameLayout
  127. android:layout_width="match_parent"
  128. android:layout_height="wrap_content"
  129. android:layout_marginTop="5dp"
  130. >
  131.  
  132. <ListView
  133. android:id="@+id/prof_questions"
  134. android:layout_width="match_parent"
  135. android:layout_height="wrap_content" >
  136. </ListView>
  137.  
  138. <ProgressBar
  139. android:id="@+id/prof_tweetslist_prog"
  140. style="?android:attr/progressBarStyleLarge"
  141. android:layout_width="wrap_content"
  142. android:layout_height="wrap_content"
  143. android:layout_gravity="center"
  144. android:visibility="gone" />
  145. </FrameLayout>
  146.  
  147. </LinearLayout>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement