在安卓中如何使一个视图覆盖在其他所有视图之上?

huangapple 未分类评论45阅读模式
英文:

make a view overlay all other views in android?

问题

  1. <?xml version="1.0" encoding="utf-8"?>
  2. <FrameLayout 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="wrap_content">
  7. <androidx.cardview.widget.CardView
  8. android:layout_width="wrap_content"
  9. android:layout_height="wrap_content"
  10. android:layout_marginLeft="0dp"
  11. android:layout_marginTop="7dp"
  12. android:layout_marginRight="0dp"
  13. android:layout_marginBottom="7dp"
  14. app:cardCornerRadius="0dp"
  15. app:cardElevation="@dimen/cardview_default_elevation">
  16. <RelativeLayout
  17. android:id="@+id/relative1"
  18. android:layout_width="match_parent"
  19. android:layout_height="wrap_content">
  20. <ImageView
  21. android:id="@+id/img"
  22. android:layout_width="match_parent"
  23. android:layout_height="fill_parent"
  24. android:adjustViewBounds="true"
  25. android:transitionName="img"
  26. tools:ignore="UnusedAttribute" />
  27. <ImageView
  28. android:id="@+id/shadow_bottom"
  29. android:layout_width="match_parent"
  30. android:layout_height="80dp"
  31. android:layout_alignBottom="@id/img"
  32. android:src="@drawable/bottom_shadow" />
  33. <ProgressBar
  34. android:id="@+id/progress_load_photo"
  35. style="@android:style/Widget.ProgressBar.Small"
  36. android:layout_width="match_parent"
  37. android:layout_height="wrap_content"
  38. android:layout_above="@+id/shadow_bottom"
  39. android:layout_alignParentTop="true"
  40. android:layout_alignParentEnd="true"
  41. android:layout_marginTop="251dp"
  42. android:layout_marginEnd="2dp"
  43. android:layout_marginBottom="298dp" />
  44. <TextView
  45. android:id="@+id/author"
  46. android:layout_width="match_parent"
  47. android:layout_height="30dp"
  48. android:layout_below="@+id/img"
  49. android:layout_alignStart="@+id/title"
  50. android:layout_alignLeft="@+id/title"
  51. android:layout_alignTop="@+id/title"
  52. android:layout_alignEnd="@id/title"
  53. android:layout_alignRight="@+id/title"
  54. android:layout_marginRight="160dp"
  55. android:drawablePadding="10dp"
  56. android:ellipsize="end"
  57. android:gravity="bottom"
  58. android:maxLines="1"
  59. android:singleLine="true"
  60. android:text="Author"
  61. android:textColor="@android:color/white" />
  62. <!-- Other views are not translated to keep code concise -->
  63. <ro.andreidobrescu.emojilike.EmojiLikeView
  64. android:id="@+id/emojiView"
  65. android:layout_width="match_parent"
  66. android:layout_height="110dp"
  67. android:layout_alignBottom="@+id/like"
  68. android:layout_marginBottom="10dp" />
  69. <!-- Other views are not translated to keep code concise -->
  70. </RelativeLayout>
  71. </androidx.cardview.widget.CardView>
  72. </FrameLayout>
英文:

I want to add facebook-like emoji to my application. I used a library called emojilike-android. It works but I can't see the whole part of the view. It goes under a text view called desc. I tried bringToFront() but couldn't achieve it. How to make emojiView overlay everything?

emojiView opens when long-click to like.

my xml file:

  1. &lt;?xml version=&quot;1.0&quot; encoding=&quot;utf-8&quot;?&gt;
  2. &lt;FrameLayout xmlns:android=&quot;http://schemas.android.com/apk/res/android&quot;
  3. xmlns:app=&quot;http://schemas.android.com/apk/res-auto&quot;
  4. xmlns:tools=&quot;http://schemas.android.com/tools&quot;
  5. android:layout_width=&quot;match_parent&quot;
  6. android:layout_height=&quot;wrap_content&quot;&gt;
  7. &lt;androidx.cardview.widget.CardView
  8. android:layout_width=&quot;wrap_content&quot;
  9. android:layout_height=&quot;wrap_content&quot;
  10. android:layout_marginLeft=&quot;0dp&quot;
  11. android:layout_marginTop=&quot;7dp&quot;
  12. android:layout_marginRight=&quot;0dp&quot;
  13. android:layout_marginBottom=&quot;7dp&quot;
  14. app:cardCornerRadius=&quot;0dp&quot;
  15. app:cardElevation=&quot;@dimen/cardview_default_elevation&quot;&gt;
  16. &lt;RelativeLayout
  17. android:id=&quot;@+id/relative1&quot;
  18. android:layout_width=&quot;match_parent&quot;
  19. android:layout_height=&quot;wrap_content&quot;&gt;
  20. &lt;ImageView
  21. android:id=&quot;@+id/img&quot;
  22. android:layout_width=&quot;match_parent&quot;
  23. android:layout_height=&quot;fill_parent&quot;
  24. android:adjustViewBounds=&quot;true&quot;
  25. android:transitionName=&quot;img&quot;
  26. tools:ignore=&quot;UnusedAttribute&quot; /&gt;
  27. &lt;ImageView
  28. android:id=&quot;@+id/shadow_bottom&quot;
  29. android:layout_width=&quot;match_parent&quot;
  30. android:layout_height=&quot;80dp&quot;
  31. android:layout_alignBottom=&quot;@id/img&quot;
  32. android:src=&quot;@drawable/bottom_shadow&quot; /&gt;
  33. &lt;ProgressBar
  34. android:id=&quot;@+id/progress_load_photo&quot;
  35. style=&quot;@android:style/Widget.ProgressBar.Small&quot;
  36. android:layout_width=&quot;match_parent&quot;
  37. android:layout_height=&quot;wrap_content&quot;
  38. android:layout_above=&quot;@+id/shadow_bottom&quot;
  39. android:layout_alignParentTop=&quot;true&quot;
  40. android:layout_alignParentEnd=&quot;true&quot;
  41. android:layout_marginTop=&quot;251dp&quot;
  42. android:layout_marginEnd=&quot;2dp&quot;
  43. android:layout_marginBottom=&quot;298dp&quot; /&gt;
  44. &lt;TextView
  45. android:id=&quot;@+id/author&quot;
  46. android:layout_width=&quot;match_parent&quot;
  47. android:layout_height=&quot;30dp&quot;
  48. android:layout_below=&quot;@+id/img&quot;
  49. android:layout_alignStart=&quot;@+id/title&quot;
  50. android:layout_alignLeft=&quot;@+id/title&quot;
  51. android:layout_alignTop=&quot;@+id/title&quot;
  52. android:layout_alignEnd=&quot;@id/title&quot;
  53. android:layout_alignRight=&quot;@+id/title&quot;
  54. android:layout_marginRight=&quot;160dp&quot;
  55. android:drawablePadding=&quot;10dp&quot;
  56. android:ellipsize=&quot;end&quot;
  57. android:gravity=&quot;bottom&quot;
  58. android:maxLines=&quot;1&quot;
  59. android:singleLine=&quot;true&quot;
  60. android:text=&quot;Author&quot;
  61. android:textColor=&quot;@android:color/white&quot; /&gt;
  62. &lt;TextView
  63. android:id=&quot;@+id/title&quot;
  64. android:layout_width=&quot;match_parent&quot;
  65. android:layout_height=&quot;wrap_content&quot;
  66. android:layout_below=&quot;@+id/img&quot;
  67. android:layout_marginLeft=&quot;16dp&quot;
  68. android:layout_marginTop=&quot;10dp&quot;
  69. android:layout_marginRight=&quot;16dp&quot;
  70. android:fontFamily=&quot;sans-serif-light&quot;
  71. android:text=&quot;Title&quot;
  72. android:textColor=&quot;@color/colorTextTitle&quot;
  73. android:textSize=&quot;17sp&quot;
  74. android:textStyle=&quot;bold&quot; /&gt;
  75. &lt;TextView
  76. android:id=&quot;@+id/desc&quot;
  77. android:layout_width=&quot;match_parent&quot;
  78. android:layout_height=&quot;wrap_content&quot;
  79. android:layout_below=&quot;@+id/title&quot;
  80. android:layout_marginLeft=&quot;16dp&quot;
  81. android:layout_marginTop=&quot;5dp&quot;
  82. android:layout_marginRight=&quot;16dp&quot;
  83. android:text=&quot;Desc&quot; /&gt;
  84. &lt;TextView
  85. android:id=&quot;@+id/time&quot;
  86. android:layout_width=&quot;wrap_content&quot;
  87. android:layout_height=&quot;24dp&quot;
  88. android:layout_below=&quot;@+id/desc&quot;
  89. android:layout_marginTop=&quot;10dp&quot;
  90. android:layout_marginBottom=&quot;10dp&quot;
  91. android:layout_toEndOf=&quot;@+id/title&quot;
  92. android:drawablePadding=&quot;10dp&quot;
  93. android:ellipsize=&quot;end&quot;
  94. android:maxLines=&quot;1&quot;
  95. android:singleLine=&quot;true&quot;
  96. android:text=&quot;Time&quot; /&gt;
  97. &lt;LinearLayout
  98. android:id=&quot;@+id/buttonPanel&quot;
  99. android:layout_width=&quot;match_parent&quot;
  100. android:layout_height=&quot;wrap_content&quot;
  101. android:layout_below=&quot;@+id/desc&quot;
  102. android:orientation=&quot;vertical&quot;&gt;
  103. &lt;RelativeLayout
  104. android:layout_width=&quot;match_parent&quot;
  105. android:layout_height=&quot;wrap_content&quot;
  106. android:padding=&quot;8dp&quot;&gt;
  107. &lt;ImageView
  108. android:id=&quot;@+id/like&quot;
  109. android:layout_width=&quot;30dp&quot;
  110. android:layout_height=&quot;30dp&quot;
  111. android:src=&quot;@drawable/like&quot; /&gt;
  112. &lt;ro.andreidobrescu.emojilike.EmojiLikeView
  113. android:layout_width=&quot;match_parent&quot;
  114. android:layout_height=&quot;110dp&quot;
  115. android:id=&quot;@+id/emojiView&quot;
  116. android:layout_alignBottom=&quot;@+id/like&quot;
  117. android:layout_marginBottom=&quot;10dp&quot;/&gt;
  118. &lt;ImageView
  119. android:id=&quot;@+id/comment&quot;
  120. android:layout_width=&quot;30dp&quot;
  121. android:layout_height=&quot;30dp&quot;
  122. android:layout_marginStart=&quot;10dp&quot;
  123. android:layout_toEndOf=&quot;@id/like&quot;
  124. android:src=&quot;@drawable/ic_comment&quot; /&gt;
  125. &lt;ImageView
  126. android:id=&quot;@+id/save&quot;
  127. android:layout_width=&quot;30dp&quot;
  128. android:layout_height=&quot;30dp&quot;
  129. android:layout_alignParentEnd=&quot;true&quot;
  130. android:src=&quot;@drawable/ic_savee_black&quot; /&gt;
  131. &lt;/RelativeLayout&gt;
  132. &lt;TextView
  133. android:id=&quot;@+id/likes&quot;
  134. android:layout_width=&quot;wrap_content&quot;
  135. android:layout_height=&quot;wrap_content&quot;
  136. android:layout_marginStart=&quot;8dp&quot;
  137. android:textColor=&quot;@color/colorPrimaryDark&quot;
  138. android:textStyle=&quot;bold&quot; /&gt;
  139. &lt;RelativeLayout
  140. android:id=&quot;@+id/commentsAndDate&quot;
  141. android:layout_width=&quot;match_parent&quot;
  142. android:layout_height=&quot;match_parent&quot;&gt;
  143. &lt;TextView
  144. android:id=&quot;@+id/comments&quot;
  145. android:layout_width=&quot;wrap_content&quot;
  146. android:layout_height=&quot;wrap_content&quot;
  147. android:layout_marginStart=&quot;8dp&quot;
  148. android:layout_marginTop=&quot;5dp&quot;
  149. android:layout_marginBottom=&quot;10dp&quot;
  150. android:text=&quot;@string/view_all_20_comments&quot;
  151. android:textColor=&quot;@color/colorAccent&quot; /&gt;
  152. &lt;FrameLayout
  153. android:id=&quot;@+id/layoutDate&quot;
  154. android:layout_width=&quot;wrap_content&quot;
  155. android:layout_height=&quot;wrap_content&quot;
  156. android:layout_alignParentRight=&quot;true&quot;
  157. android:layout_marginStart=&quot;8dp&quot;
  158. android:layout_marginRight=&quot;5dp&quot;
  159. android:layout_marginBottom=&quot;10dp&quot;
  160. android:background=&quot;@drawable/round_white&quot;
  161. android:padding=&quot;5dp&quot;&gt;
  162. &lt;ImageView
  163. android:layout_width=&quot;18dp&quot;
  164. android:layout_height=&quot;18dp&quot;
  165. android:layout_marginLeft=&quot;5dp&quot;
  166. android:layout_marginRight=&quot;5dp&quot;
  167. android:src=&quot;@drawable/ic_date&quot; /&gt;
  168. &lt;TextView
  169. android:id=&quot;@+id/publishedAt&quot;
  170. android:layout_width=&quot;wrap_content&quot;
  171. android:layout_height=&quot;wrap_content&quot;
  172. android:layout_marginLeft=&quot;27dp&quot;
  173. android:layout_marginRight=&quot;10dp&quot;
  174. android:text=&quot;01 January 1990&quot;
  175. android:textColor=&quot;#606060&quot; /&gt;
  176. &lt;/FrameLayout&gt;
  177. &lt;/RelativeLayout&gt;
  178. &lt;/LinearLayout&gt;
  179. &lt;/RelativeLayout&gt;
  180. &lt;/androidx.cardview.widget.CardView&gt;
  181. &lt;/FrameLayout&gt;

答案1

得分: 1

那最好使用 ConstraintLayout。它比 RelativeLayout 更灵活,而 RelativeLayout 则具有传统小部件。

英文:

That's better use ConstraintLayout.it's more flexible than RelativeLayout while RelativeLayout has legacy widget.

huangapple
  • 本文由 发表于 2020年4月5日 22:55:19
  • 转载请务必保留本文链接:https://java.coder-hub.com/61044520.html
匿名

发表评论

匿名网友

:?: :razz: :sad: :evil: :!: :smile: :oops: :grin: :eek: :shock: :???: :cool: :lol: :mad: :twisted: :roll: :wink: :idea: :arrow: :neutral: :cry: :mrgreen:

确定