There are two activations, one opens on top of the other and there is a gridview on it, I want the top to be translucent (not completely transparent, not android: style / Theme.Translucent), I understood how to load a background image android: background = "@ drawable / picture" And everywhere on the question of how to make it transparent, they say to put android: alpha = "0.5", so what? it turns out just a bright picture, but not transparent, through it you can not see the elements of the lower activit .. They also say to install color ARGB, where A is responsible for transparency, but it turns out the same Bright picture, not transparent ..
<GridView xmlns:android="http://schemas.android.com/apk/res/android" android:id="@+id/gridview" android:layout_width="fill_parent" android:layout_height="fill_parent" android:columnWidth="70dp" android:numColumns="auto_fit" android:verticalSpacing="3dp" android:horizontalSpacing="3dp" android:stretchMode="columnWidth" android:gravity="center" android:scrollbars="none" android:textFilterEnabled="false" android:touchscreenBlocksFocus="false" android:fastScrollEnabled="false" android:focusable="false" android:background="@drawable/vvv" android:alpha="0.5"> </GridView> In the manifest, I do not even know what else to try, until here enter the code here
