gpt4 book ai didi

android - 透明 RelativeLayout 容器内的不透明 TextView

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

我有一个 RelativeLayout 容器,其中包含背景图像和图像顶部 TextViews 中的一些文本。整个容器具有 95% 的不透明度(0.95 alpha),但我希望 TextViews 完全不透明。我不能只使图像 LinearLayout 具有透明度,因为我在 RelativeLayout(blue_background LinearLayout 和 blue_bottom_part ImageView)中有两个重叠图像,它们都需要处于 0.95 alpha(并且我不能将它们单独设置为 0.95 alpha,因为重叠部分会显示出来)。

我试过添加

android:alpha="1.0"

到 TextView,但这似乎并没有覆盖整个 RelativeLayout 容器的透明度。

我也尝试过以编程方式覆盖它:

myTextView.setAlpha(1.0f);

这些都不起作用。

这是布局的 XML(略微精简):

<?xml version="1.0" encoding="utf-8"?>
<MyCustomRelativeLayout
xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:alpha="0.95">
<LinearLayout
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_centerHorizontal="true"
android:layout_alignParentBottom="true"
android:orientation="vertical"
android:background="@drawable/blue_background">
<TextView
android:id="@+id/my_title_textview"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:textStyle="bold"
/>
<TextView
android:id="@+id/my_body_textview"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
/>
</LinearLayout>
<ImageView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_centerHorizontal="true"
android:layout_alignParentBottom="true"
android:background="@drawable/blue_bottom_part"
/>
</MyCustomRelativeLayout>

如何使整个容器(两个背景图像)保持 95% 的透明度,同时使文本完全不透明?

感谢任何帮助!

最佳答案

好吧,如果我没记错的话,你不能按照你想要的方式去做。

相反,我建议您使用带有 ImageView 填充的 FrameLayout。这个 ImageView 会让你的背景具有透明度,你会把你的布局和 TextViews 放在它后面,在 FrameLayout 里面,这样它就会在 ImageView 的顶部。

请搜索 FrameLayout。使用它会很容易。

关于android - 透明 RelativeLayout 容器内的不透明 TextView,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/17332527/

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