gpt4 book ai didi

android - 不想将不透明度传递给 android 中的字体

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

我已经获取了一张卡片 View 。在其背景上应用了黑色,我已经获取了 TextView 并应用了背景图像并将不透明度传递给 textview 以在输出中获得黑色图像。但我没有想对图像上的字体应用不透明度。请帮忙。这是代码。

<android.support.v7.widget.CardView
xmlns:card_view="http://schemas.android.com/apk/res-auto"
android:layout_gravity="center"
android:layout_width="match_parent"
android:layout_height="140dp"
card_view:cardCornerRadius="10dp"
android:layout_margin="15dp"
card_view:cardElevation="20dp"
android:textColorHighlight="@color/cardview_dark_background"
app:cardBackgroundColor="#000000"
>

<TextView
android:layout_width="match_parent"
android:layout_height="match_parent"
android:text="ICE CREAM WITH CRANBERRY SYRUP"
android:textAlignment="center"
android:textColor="#FFFFFF"
android:alpha="0.5"
android:background="@drawable/recp_one"
/>
</android.support.v7.widget.CardView>

enter image description here

最佳答案

Textview 应用图像背景在您的情况下并不好,您可以创建不同的 ImageViewTextview 并应用什么您需要的任何属性。

它应该如下所示。

<android.support.v7.widget.CardView
xmlns:card_view="http://schemas.android.com/apk/res-auto"
android:layout_gravity="center"
android:layout_width="match_parent"
android:layout_height="140dp"
card_view:cardCornerRadius="10dp"
android:layout_margin="15dp"
card_view:cardElevation="20dp"
android:textColorHighlight="@color/cardview_dark_background"
app:cardBackgroundColor="#000000"
>

<ImageView
android:layout_width="match_parent"
android:layout_height="match_parent"
android:background="@drawable/recp_one"
android:alpha="0.5"/>

<TextView
android:layout_width="match_parent"
android:layout_height="match_parent"
android:text="ICE CREAM WITH CRANBERRY SYRUP"
android:textAlignment="center"
android:textColor="#FFFFFF" />

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

关于android - 不想将不透明度传递给 android 中的字体,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/53846384/

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