我想在RelativeLayout的一侧建立一个半透明的RelativeLayout。
它是页脚的项目。这总是可见的,但我只想让它透明黑色50%。
我曾尝试使用#11000000 Alpha通道,但仍然无法使用。
由于
<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"
android:orientation="vertical"
tools:context="com.app.photoapp.MainActivity" >
<GridView
android:id="@+id/gridview"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:layout_above="@+id/ly_footer_text"
android:alwaysDrawnWithCache="true"
android:clipChildren="true"
android:columnWidth="100dp"
android:gravity="center_horizontal"
android:horizontalSpacing="2dp"
android:numColumns="3"
android:padding="0dp"
android:scrollingCache="true"
android:smoothScrollbar="true"
android:stretchMode="columnWidth"
android:verticalSpacing="2dp" />
<!-- Footer THIS LAYOUT TO MAKE SEMI-TRANSPARENT -->
<RelativeLayout
android:id="@+id/ly_footer_text"
android:layout_width="match_parent"
android:layout_height="40dp"
android:background="#11000000"
android:layout_alignParentBottom="true" >
<TextView
android:id="@+id/tv_footer_left"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_alignParentLeft="true"
android:layout_centerVertical="true"
android:layout_marginLeft="10dp"
android:text="@string/footer_sub_text"
android:textColor="#999999"
android:textSize="12sp" />
<TextView
android:id="@+id/tv_footer_right"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_alignBaseline="@+id/tv_footer_left"
android:layout_alignBottom="@+id/tv_footer_left"
android:layout_alignParentRight="true"
android:layout_marginRight="10dp"
android:text="@string/footer_tnc"
android:textColor="#999999"
android:textSize="12sp" />
</RelativeLayout>
</RelativeLayout>
答案 0 :(得分:1)
将背景颜色设置为#AARRGGBB,其中AA是Alpha通道。例如,您可以使用#00000000作为颜色或简短方法:#ARGB,这将是#0000使用简写表示法,每个值只使用两次,其中#264C与#226644CC相同... {{3 }}
答案 1 :(得分:0)
试试这个
android:background="#80000000"
答案 2 :(得分:-1)
尝试使用此代码 -
android:background="#50111111"
而不是 -
android:background="#11000000"