0

我想在图像上方显示一些信息(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" />

4

2 回答 2

0

对 imageview 使用 setalpha 方法,使外观变得沉闷。

将 alpha 设置为低于 api 级别 8

AlphaAnimation anim = new AlphaAnimation(0.4f, 0.4f);
anim.setDuration(50);
anim.setFillEnabled(true);
anim.setFillAfter(true);
<view>.startAnimation(anim);
于 2013-08-31T11:05:48.140 回答
0

您可以在图像上使用 alfa 动画。Animation在 android 中使用或使用Nineoldandroid

于 2013-08-31T11:24:27.220 回答