某些信息需要显示在背景图像上方

时间:2013-08-31 10:55:29

标签: android textview imageview

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

2 个答案:

答案 0 :(得分: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);

答案 1 :(得分:0)

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