在android中的图像视图后面添加阴影
这是一个在android中使用默认阴影的示例图像:
和xml:
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:paddingBottom="@dimen/activity_vertical_margin"
android:paddingLeft="@dimen/activity_horizontal_margin"
android:paddingRight="@dimen/activity_horizontal_margin"
android:paddingTop="@dimen/activity_vertical_margin"
tools:context="com.example.home.fmat.MainActivity">
<ImageButton
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:id="@+id/on"
android:src="@drawable/Google_Duo"
android:layout_centerHorizontal="true"
android:layout_centerVertical="true"/>
</RelativeLayout>
答案 0 :(得分:0)
该背景是默认的ImageButton背景。
使用1
ImageButton
ImageView
或者如果您不希望点击效果消失,请使用自定义背景设置ImageButton背景,例如使用statelistdrawable,例如在您的drawable中,您可以定义<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:paddingBottom="@dimen/activity_vertical_margin"
android:paddingLeft="@dimen/activity_horizontal_margin"
android:paddingRight="@dimen/activity_horizontal_margin"
android:paddingTop="@dimen/activity_vertical_margin"
tools:context="com.example.home.fmat.MainActivity">
<ImageButton
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:id="@+id/on"
android:background="@drawable/bg_button"
android:src="@drawable/Google_Duo"
android:layout_centerHorizontal="true"
android:layout_centerVertical="true"/>
</RelativeLayout>
bg_button.xml