智慧并不产生于学历,而是来自对于知识的终生不懈的追求。这篇文章主要讲述Fab按钮带有显示阴影的图标(Android 4.1)相关的知识,希望能为你提供帮助。
我已经创建了这个布局,它在android 6.0上运行良好,但在android 4.1中我得到了这个奇怪的阴影(图片中的fab按钮周围的黑色阴影)。以下是我的布局。
以下是屏幕
文章图片
下面是xml代码
<
RelativeLayout
android:id="@+id/main_avatar"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_alignParentTop="true"
android:layout_alignParentLeft="true">
<
de.hdodenhof.circleimageview.CircleImageView
android:id="@+id/imageview_account_profile"
android:layout_width="80dp"
android:layout_height="80dp"
android:layout_alignParentTop="true"
android:layout_centerHorizontal="true"
android:src="https://www.songbingjia.com/android/@drawable/avatar_a2a"
app:civ_border_color="@color/material_white"
app:civ_border_width="2dp" />
<
android.support.design.widget.FloatingActionButton
android:layout_width="30dp"
android:layout_height="30dp"
android:src="https://www.songbingjia.com/android/@drawable/ic_call"
app:backgroundTint="@color/colorAccent"
app:layout_anchor="@+id/imageview_account_profile"
android:scaleType="center"
android:layout_alignParentTop="true"
android:layout_alignRight="@+id/imageview_account_profile"
android:layout_marginTop="45dp"
android:id="@+id/floatingActionButton" />
<
/RelativeLayout>
`
答案【Fab按钮带有显示阴影的图标(Android 4.1)】加入
app:elevation="0dp"
到FloatingActionButton
解决了我的问题推荐阅读
- 如何围绕Android LinearLayout创建边框()
- 如何使用Android自定义视图中的属性设置调整膨胀布局的大小()
- 在android studio中删除重构xml中的空格行
- 如何设置背景图片Android xml文件的透明度
- 开发人员犯的10个最常见的Bootstrap错误
- Ractive.js-简化Web应用程序
- 一种尺寸适合某些尺寸(响应式Web设计图像解决方案指南)
- 介绍Battlescripts(机器人,飞船,混乱!)
- 认识Volt,这是一个针对动态应用程序的有前途的Ruby框架