gpt4 book ai didi

java - 将 FrameLayout 置于每个 View 之上

转载 作者:行者123 更新时间:2023-11-30 05:09:08 24 4
gpt4 key购买 nike

我有这样的布局:

<android.support.v7.widget.CardView
android:id="@+id/description_root_View"
android:layout_height="wrap_content"
android:layout_width="match_parent"
app:cardCornerRadius="@dimen/CardView_CornerRadius"
app:cardElevation="@dimen/CardView_elevation"
app:cardUseCompatPadding="true"
android:background="@color/escription_background"
app:layout_constraintStart_toStartOf="parent"
app:layout_constraintEnd_toEndOf="parent"
app:layout_constraintTop_toTopOf="@id/SwipeView">

<android.support.constraint.ConstraintLayout
android:layout_width="match_parent"
android:layout_height="match_parent"
android:padding="@dimen/View_margins">

<FrameLayout
android:id="@+id/description_FrameLayout_profile"
android:layout_width="@dimen/description_FrameLayout_profile"
android:layout_height="@dimen/description_FrameLayout_profile"
android:background="?selectableItemBackground"
app:layout_constraintStart_toStartOf="parent"
app:layout_constraintTop_toTopOf="parent">

<ImageView
android:id="@+id/description_ImageView_profile"
android:layout_width="@dimen/description_ImageView_profile"
android:layout_height="@dimen/description_ImageView_profile"
android:src="@drawable/profile_photo"
android:scaleType="fitCenter"
android:layout_gravity="center"/>

</FrameLayout>

</android.support.constraint.ConstraintLayout>

</android.support.v7.widget.CardView>

<View
android:id="@+id/View_layer_over"
android:layout_width="match_parent"
android:layout_height="0dp"
android:background="@color/fragment_tutorial_layer_background"
android:elevation="@dimen/adapter_versus_CardView_elevation"
android:clickable="true"
app:layout_constraintTop_toTopOf="parent"
app:layout_constraintBottom_toBottomOf="parent"/>

一开始, View View_layer_over 是一个半透明 View ,位于我布局中所有内容的顶部。当我按下按钮时,我想将 description_FrameLayout_profile FrameLayout 置于 View_layer_over View 之上。我尝试了 View.bringToFront() 方法和 ViewCompat.setTranslationZ(),在这两个方法之后我都调用了 Parent.invalidate() ,但他们都不适合我。我认为这与海拔属性有关。

任何帮助将不胜感激。谢谢!

最佳答案

我不是 100% 确定我完全理解你想要什么,但在这种情况下我会做的是让 ConstraintLayout 成为父/ Root View ,它将包含你的“View_layer_over” View ,以及你的 CardView . 如果你正确地设置了你的约束,你会得到我认为你想要的行为......

关于java - 将 FrameLayout 置于每个 View 之上,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/54007336/

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