Does anyone do this or has anyone used this type of background Theme
? Eclipse
It's exactly what I'm looking for, but with any color I use, it logically stays matte, it's not the result, it must be translucent.
UPDATE:
My xml code where I have a button that is the one that I have to modify so that it applies to all, since I have a list as in the example:
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="match_parent"
>
<RelativeLayout
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_alignParentLeft="true"
android:layout_alignParentRight="true"
android:layout_alignParentTop="true"
android:layout_marginTop="0dp"
android:background="@drawable/translucido" >
<TextView
android:id="@+id/cargo"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_alignParentTop="true"
android:layout_centerHorizontal="true"
android:layout_marginTop="57dp"
android:gravity="center"
android:text="Medium Text"
android:textAppearance="?android:attr/textAppearanceMedium"
android:textColor="#FFFFFF" />
<TextView
android:id="@+id/nombre"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_alignBottom="@+id/cargo"
android:layout_alignParentLeft="true"
android:layout_marginBottom="21dp"
android:gravity="left"
android:text=" Large Text"
android:textAppearance="?android:attr/textAppearanceLarge"
android:textColor="#FFFFFF"
android:textStyle="bold"
android:typeface="serif" />
</RelativeLayout>
</RelativeLayout>
The effect is known as blur . It is not highly recommended to use it due to its high memory consumption. But there are libraries that help you generate such an effect. If you are interested you can see this library: https://github.com/faradaj/BlurBehind