第七色在线视频,2021少妇久久久久久久久久,亚洲欧洲精品成人久久av18,亚洲国产精品特色大片观看完整版,孙宇晨将参加特朗普的晚宴

為了賬號安全,請及時(shí)綁定郵箱和手機(jī)立即綁定
已解決430363個(gè)問題,去搜搜看,總會有你想問的

如何將較暗的透明度添加到我的相對布局中,如圖所示?

如何將較暗的透明度添加到我的相對布局中,如圖所示?

寶慕林4294392 2023-09-20 14:33:02
我嘗試做很多事情:設(shè)置 alpha 值,設(shè)置背景:透明度,設(shè)置背景不同的顏色,如“#90000000”,我什至在我的 recilerView 上方創(chuàng)建了另一個(gè)具有透明度的視圖。但我總是有一個(gè)結(jié)果:(不要看白圖,稍后我會設(shè)置)我需要這樣的透明度:正如您所看到的,圖像和線條不處于透明狀態(tài)。你有什么想法如何解決它嗎?
查看完整描述

3 回答

?
繁星淼淼

TA貢獻(xiàn)1775條經(jīng)驗(yàn) 獲得超11個(gè)贊

我認(rèn)為你在root的前面聲明了RecyclerView,如果你在xml布局中使用像主View一樣的RelativeLayout,你必須確保你的透明View位于RecyclerView下方,這是一個(gè)例子:


<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>



查看完整回答
反對 回復(fù) 2023-09-20
?
胡說叔叔

TA貢獻(xiàn)1804條經(jīng)驗(yàn) 獲得超8個(gè)贊

您可以定義兩個(gè)圖像視圖,首先設(shè)置圖像的背景,然后設(shè)置另一個(gè)背景。但必須設(shè)置相同的大小。



查看完整回答
反對 回復(fù) 2023-09-20
?
慕容708150

TA貢獻(xiàn)1831條經(jīng)驗(yàn) 獲得超4個(gè)贊

您可以在此回收器視圖上方顯示疊加層。像這樣。


<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 用作疊加層


查看完整回答
反對 回復(fù) 2023-09-20
  • 3 回答
  • 0 關(guān)注
  • 137 瀏覽

添加回答

舉報(bào)

0/150
提交
取消
微信客服

購課補(bǔ)貼
聯(lián)系客服咨詢優(yōu)惠詳情

幫助反饋 APP下載

慕課網(wǎng)APP
您的移動學(xué)習(xí)伙伴

公眾號

掃描二維碼
關(guān)注慕課網(wǎng)微信公眾號