我想在android中获得这种效果,我尝试设置布局的背景但没有成功,这就像在布局元素上放置一个蒙版。例如,当您单击 google play 上的按钮时,如下所示:
当您单击它时,它会在蓝色按钮上放置一个蒙版。
有人可以帮助我吗?
谢谢你。
我做了以下,我用图像和文本创建了布局。
<LinearLayout
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:gravity="center_horizontal"
android:orientation="vertical">
<ImageView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:src="@drawable/android" />
<TextView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="APP" />
</LinearLayout>
并创建框架布局
<FrameLayout
android:layout_width="match_parent"
android:layout_height="match_parent"
android:background="@drawable/bg_default"
android:clickable="true">
<include
android:layout_gravity="center_vertical"
layout="@layout/test1" />
</FrameLayout>
但只有背景发生了变化,图像和文字没有放置蒙版。难道我做错了什么?