Hello I am making an android application where I need to place a transparent view over a LinearLayout
. See in the screenshot View where "04" is written is transparent but not completely. Any idea to make this view transparent with some color.
I made the LinearLayout
with rounded and set the color also.
<LinearLayout
android:id="@+id/thirdLinearLayout"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_below="@id/secondRelativeLayout"
android:background="@drawable/clock_check_in_rounded_drawable"
android:orientation="horizontal" >
</LinearLayout>
clock_check_in_rounded_drawable.xml
<?xml version="1.0" encoding="utf-8"?>
<shape xmlns:android="http://schemas.android.com/apk/res/android" >
<solid android:color="@color/cyan_text_color" />
<corners android:radius="10dp" />
</shape>