简体   繁体   中英

How can I add darker transperency into my relativelayout, like in the image?

I tried to do many things: set alpha value, set background:transparency, set backgroud different colors like "#90000000", I even created another view with transparency above my reciclerView. But I always have one result:

(do not look at white pictures, I will set them later)

And I need transparency like that one:

在此处输入图像描述

So as you see image and line are not under transparency. Do you have any ideas how fix it?

I think you declare the RecyclerView in the front of root, if you are using a RelativeLayout like a main View in the xml layout, you have to make sur that your transparent View below your RecyclerView, this is an example:


<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent" android:layout_height="match_parent">
<RecyclerView
    android:layout_width="match_parent"
    android:layout_height="match_parent"> 
</RecyclerView>
<FrameLayout
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:background="#9A000000"> 
</FrameLayout>

you can define two image view and first set the background your image and for secondly set the other background.but you must set the same size.

You can show a overlay above this recyclerview. Just like this.

<androidx.constraintlayout.widget.ConstraintLayout 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="match_parent"
    tools:context=".MainActivity">


    <RecyclerView
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        app:layout_constraintBottom_toBottomOf="parent"
        app:layout_constraintEnd_toEndOf="parent"
        app:layout_constraintStart_toStartOf="parent"
        app:layout_constraintTop_toTopOf="parent"/>
    <LinearLayout
        android:layout_width="match_parent"
        android:layout_height="match_parent"
        android:background="#55000000"
        android:translationZ="100dp"/>


</androidx.constraintlayout.widget.ConstraintLayout>

LinearLayout works as overlay

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM