gpt4 book ai didi

android - 低于 21 的较低 api 级别的 translationZ 的替代方案是什么

转载 作者:太空狗 更新时间:2023-10-29 16:30:28 25 4
gpt4 key购买 nike

我正在使用 translationZ 将 ImageView 放在相对布局的顶部。但 android:translationZ="2dp"似乎无法在 api 级别 21 以下工作。有什么替代方案?

PFB代码:

   RelativeLayout layout_main = (RelativeLayout) findViewById(R.id.layout_main);
ImageView myimage= (ImageView) view.findViewById(R.id.myimage);
Picasso.with(getContext()).load("image url")
.error(getContext().getResources().getDrawable(R.mipmap.ic_business_black_48dp))
.resize(200,200).centerInside()
.placeholder(getContext().getResources().getDrawable(R.mipmap.ic_business_black_48dp)).into(myimage);
layout_main.bringToFront();


<RelativeLayout
android:id="@+id/layout_main"
android:layout_width="90dip"
android:layout_height="90dip"
android:layout_centerHorizontal="true"
android:layout_marginTop="70dp"
android:background="#ededeb"
android:translationZ="3dp"
android:elevation="20dp">

<ImageView
android:id="@+id/myimage"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:background="#00000000"
android:src="@mipmap/ic_business_black_48dp" />
</RelativeLayout>

最佳答案

您可以要求将其置于最前面(类似于 How to bring view on front of everything? ),使用 View.bringToFront(),但这不会为您呈现阴影。较早的操作系统版本没有对阴影的 native 支持,因此如果您确实需要它,则需要解决它。

关于android - 低于 21 的较低 api 级别的 translationZ 的替代方案是什么,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/40293115/

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