我想在图像上方显示一些信息(TextView)。当我在图像上显示 Textview 时,背景图像会干扰文本。所以我想制作背景图像(褪色),这样它就不会干扰 TextView。我怎样才能做到这一点?
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="match_parent"
tools:context=".MainActivity" >
<ImageView
android:id="@+id/background"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_centerHorizontal="true"
android:layout_centerVertical="true"
android:padding="20dp"
android:scaleType="center"
android:src="@drawable/cor" />
<TextView
android:id="@+id/info"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_alignParentLeft="true"
android:layout_alignTop="@+id/background"
android:layout_marginLeft="66dp"
android:layout_marginTop="26dp"
android:text="Some information"
android:textAppearance="?android:attr/textAppearanceLarge" />