gpt4 book ai didi

java - 让一个 View 覆盖android中的所有其他 View ?

转载 作者:行者123 更新时间:2023-12-02 08:46:34 27 4
gpt4 key购买 nike

我想将类似 facebook 的表情符号添加到我的应用程序中。我使用了一个名为 emojilike-android 的库。它有效,但我看不到 View 的整个部分。它位于名为 desc 的 TextView 下。我尝试bringToFront()但无法实现。如何让 emojiView 覆盖所有内容?

长按点赞时,emojiView 会打开。

我的 xml 文件:

<?xml version="1.0" encoding="utf-8"?>
<FrameLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="wrap_content">

<androidx.cardview.widget.CardView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_marginLeft="0dp"
android:layout_marginTop="7dp"
android:layout_marginRight="0dp"
android:layout_marginBottom="7dp"
app:cardCornerRadius="0dp"
app:cardElevation="@dimen/cardview_default_elevation">

<RelativeLayout
android:id="@+id/relative1"
android:layout_width="match_parent"
android:layout_height="wrap_content">

<ImageView
android:id="@+id/img"
android:layout_width="match_parent"
android:layout_height="fill_parent"
android:adjustViewBounds="true"
android:transitionName="img"
tools:ignore="UnusedAttribute" />

<ImageView
android:id="@+id/shadow_bottom"
android:layout_width="match_parent"
android:layout_height="80dp"
android:layout_alignBottom="@id/img"
android:src="@drawable/bottom_shadow" />

<ProgressBar
android:id="@+id/progress_load_photo"
style="@android:style/Widget.ProgressBar.Small"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_above="@+id/shadow_bottom"
android:layout_alignParentTop="true"
android:layout_alignParentEnd="true"
android:layout_marginTop="251dp"
android:layout_marginEnd="2dp"
android:layout_marginBottom="298dp" />

<TextView
android:id="@+id/author"
android:layout_width="match_parent"
android:layout_height="30dp"
android:layout_below="@+id/img"
android:layout_alignStart="@+id/title"
android:layout_alignLeft="@+id/title"
android:layout_alignTop="@+id/title"
android:layout_alignEnd="@id/title"
android:layout_alignRight="@+id/title"
android:layout_marginRight="160dp"
android:drawablePadding="10dp"
android:ellipsize="end"
android:gravity="bottom"
android:maxLines="1"
android:singleLine="true"
android:text="Author"
android:textColor="@android:color/white" />


<TextView
android:id="@+id/title"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_below="@+id/img"
android:layout_marginLeft="16dp"
android:layout_marginTop="10dp"
android:layout_marginRight="16dp"
android:fontFamily="sans-serif-light"
android:text="Title"
android:textColor="@color/colorTextTitle"
android:textSize="17sp"
android:textStyle="bold" />

<TextView
android:id="@+id/desc"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_below="@+id/title"
android:layout_marginLeft="16dp"
android:layout_marginTop="5dp"
android:layout_marginRight="16dp"
android:text="Desc" />


<TextView
android:id="@+id/time"
android:layout_width="wrap_content"
android:layout_height="24dp"
android:layout_below="@+id/desc"
android:layout_marginTop="10dp"
android:layout_marginBottom="10dp"
android:layout_toEndOf="@+id/title"
android:drawablePadding="10dp"
android:ellipsize="end"
android:maxLines="1"
android:singleLine="true"
android:text="Time" />

<LinearLayout
android:id="@+id/buttonPanel"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_below="@+id/desc"
android:orientation="vertical">

<RelativeLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:padding="8dp">

<ImageView
android:id="@+id/like"
android:layout_width="30dp"
android:layout_height="30dp"
android:src="@drawable/like" />

<ro.andreidobrescu.emojilike.EmojiLikeView
android:layout_width="match_parent"
android:layout_height="110dp"
android:id="@+id/emojiView"
android:layout_alignBottom="@+id/like"
android:layout_marginBottom="10dp"/>

<ImageView
android:id="@+id/comment"
android:layout_width="30dp"
android:layout_height="30dp"
android:layout_marginStart="10dp"
android:layout_toEndOf="@id/like"
android:src="@drawable/ic_comment" />

<ImageView
android:id="@+id/save"
android:layout_width="30dp"
android:layout_height="30dp"
android:layout_alignParentEnd="true"
android:src="@drawable/ic_savee_black" />

</RelativeLayout>

<TextView
android:id="@+id/likes"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_marginStart="8dp"
android:textColor="@color/colorPrimaryDark"
android:textStyle="bold" />


<RelativeLayout
android:id="@+id/commentsAndDate"
android:layout_width="match_parent"
android:layout_height="match_parent">

<TextView
android:id="@+id/comments"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_marginStart="8dp"
android:layout_marginTop="5dp"
android:layout_marginBottom="10dp"
android:text="@string/view_all_20_comments"
android:textColor="@color/colorAccent" />

<FrameLayout
android:id="@+id/layoutDate"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_alignParentRight="true"
android:layout_marginStart="8dp"
android:layout_marginRight="5dp"
android:layout_marginBottom="10dp"
android:background="@drawable/round_white"
android:padding="5dp">

<ImageView
android:layout_width="18dp"
android:layout_height="18dp"
android:layout_marginLeft="5dp"
android:layout_marginRight="5dp"
android:src="@drawable/ic_date" />

<TextView
android:id="@+id/publishedAt"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_marginLeft="27dp"
android:layout_marginRight="10dp"
android:text="01 January 1990"
android:textColor="#606060" />

</FrameLayout>

</RelativeLayout>
</LinearLayout>

</RelativeLayout>

</androidx.cardview.widget.CardView>


</FrameLayout>

最佳答案

最好使用 ConstraintLayout。它比 RelativeLayout 更灵活,而 RelativeLayout 具有旧版小部件。

关于java - 让一个 View 覆盖android中的所有其他 View ?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/61044520/

27 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com