Below is the solutions to make transparent view.
1. Using android predefined color
android:background="@android:color/transparent"
2. Create own color
<color name="transparent_color">#80000000</color>
3. Dynamically make transparent view
mytransparentView.getBackground().setAlpha(45);
0 Comment(s)