我想要的是:一个RecyclerVIew,在每个单元格中显示一个ImageView和一个TextView,我想为该ImageView设置不透明度而不是TextView。
问题是:当我将Alpha(不透明度)设置为ImageView时,TextView也会受到影响。
我的问题是:如何在不影响TextView的情况下实现ImageView的不透明度?
<?xml version="1.0" encoding="utf-8"?><android.support.constraint.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">
<FrameLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:orientation="horizontal">
<ImageView
android:id="@+id/idImagen"
android:layout_width="wrap_content"
android:layout_height="200dp"
android:src="@drawable/beers"
android:layout_marginTop="10dp"
android:alpha="0.5"/> --- (Opacity)
<TextView
android:id="@+id/idNombre"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_marginLeft="150dp"
android:layout_marginTop="100dp"
android:text="Nombre"
android:textColor="@android:color/white"
android:textSize="24sp" />
</FrameLayout>