我需要將文字放在透明圖像上,但我的文字也變得透明。Android:透明圖像上的透明文字
更新:我有一個活動背景,這是一個圖片,比我有LinearLayout背景作爲透明圖片,並且在那個佈局中,我需要一個帶有沒有透明度的文本的TextView。
<LinearLayout
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"
android:background="@drawable/img_background"
android:fitsSystemWindows="true"
tools:context="team.com.ContactUsActivity">
>
<LinearLayout
android:id="@+id/linearLayoutContactUsData"
android:layout_width="match_parent"
android:layout_height="200dip"
android:background="@drawable/img_contact_us"
android:alpha="0.4"
>
<TextView
android:layout_width="match_parent"
android:layout_height="match_parent"
android:textColor="#FFFFFF"
android:textSize="18dip"
android:text="Phone: 111-111-111"
/>
</LinearLayout>
有什麼建議嗎?
將TextView上的Alpha設置爲1 – mjstam
我試過了,但不起作用。我仍然獲得透明的文字。 –