我有一個佈局,其中我使用了一種顏色,並將其不透明度設置爲0.2。我在該佈局中有一個textview,但是當我指定佈局較不透明時,那麼Textview文本也會變淡。爲什麼?我只想淡出背景顏色而不是textview的文字。佈局減少不透明度在視圖中會使所有元素的不透明度降低android
<?xml version="1.0" encoding="utf-8"?>
<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="wrap_content"
android:alpha="0.2"
android:background="@drawable/background_rounded_black"
android:padding="@dimen/dp10">
<TextView
android:id="@+id/txtNews"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:alpha="1"
android:text="djfhwhfirhfiohrhvfuhvfjvbv vknfjvnfjv fv vefjkhvfhvv hvufevhfuievefv ivfhiefhvfe ifvjioefv"
android:textColor="@android:color/white"
android:textSize="@dimen/dp15" />
<TextView
android:id="@+id/txtTime"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_alignParentRight="true"
android:layout_below="@id/txtNews"
android:layout_marginTop="@dimen/dp10"
android:alpha="1"
android:drawableLeft="@drawable/clock_news"
android:text="12 hrs ago"
android:textColor="@android:color/white"
android:textSize="@dimen/dp15" />
的
//代碼,現在它的外觀http://prntscr.com/gbxi87
使用的背景顏色與阿爾法碼 –