我在我的项目中使用此https://github.com/makovkastar/FloatingActionButton库用于FloatingActionButtons。
在一些较小的设备上,例如Acer Liquid Z4(Android版本4.2.2,屏幕480x800)或Genymotion Galaxy S2图像(Android版本4.1.1,屏幕480x800),FAB周围有一个黑框:< / p>
我试图缩小范围,从主题中删除任何特殊内容,使其看起来像这样:
<!-- Base application theme. -->
<style name="AppTheme" parent="Theme.AppCompat.Light.DarkActionBar">
<!-- Customize your theme here. -->
</style>
并将按钮放在最简单的布局中:
<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:paddingLeft="@dimen/activity_horizontal_margin"
android:paddingRight="@dimen/activity_horizontal_margin"
android:paddingTop="@dimen/activity_vertical_margin"
android:paddingBottom="@dimen/activity_vertical_margin"
tools:context="de.immowelt.android.immobiliensuche.ui.FabTestActivity">
<com.melnykov.fab.FloatingActionButton
android:layout_width="wrap_content"
android:layout_height="wrap_content"/>
</RelativeLayout>
但是盒子仍然存在。另一方面,我尝试用新项目重新创建效果,但却无法做到。
使用mini
尺寸版本或禁用阴影时,框会消失。
关于我的问题是什么的任何想法?
PS:我试过清理项目;)
答案 0 :(得分:2)
我正在使用该库但后来决定自己创建,将其设置为imageButton的背景或其他东西。我使用了textview,因为我需要的只是一个+。它在我的应用程序中看起来相当不错。
<?xml version="1.0" encoding="utf-8"?>
<layer-list xmlns:android="http://schemas.android.com/apk/res/android">
<!-- Drop Shadow Stack -->
<item>
<shape xmlns:android="http://schemas.android.com/apk/res/android" android:shape="oval" >
<padding android:right="1dp" android:bottom="1dp" />
<solid android:color="#00262626" />
</shape>
</item>
<item>
<shape xmlns:android="http://schemas.android.com/apk/res/android" android:shape="oval" >
<padding android:right="1dp" android:bottom="1dp" />
<solid android:color="#0D262626" />
</shape>
</item>
<item>
<shape xmlns:android="http://schemas.android.com/apk/res/android" android:shape="oval" >
<padding android:right="1dp" android:bottom="1dp" />
<solid android:color="#26262626" />
</shape>
</item>
<!-- Background -->
<item>
<shape xmlns:android="http://schemas.android.com/apk/res/android" android:shape="oval" >
<solid android:color="#448AFF"/>
</shape>
</item>
</layer-list>
答案 1 :(得分:2)
问题在于FloatingActionButton
类使用了一个名为shadow.9.png
的可绘制阴影。我的drawables中也有一个shadow.9.png
,图书馆类显然选错了(我的)。
重命名我的drawable解决了这个问题。