我使用库https://github.com/futuresimple/android-floating-action-button来创建非常好用的fab按钮。我尝试了几个库,但没有使用大多数应用程序中使用的效果与fab(或谷歌应用程序,如保持,收件箱),当点击工厂时,整个应用程序的背景为半透明的白色或黑色,这取决于。我无法找到任何办法。是否有可能有一个例子或类似的东西来做这种效果?你可以在这张图片中看到我的意思:
半黑背景
<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="match_parent" >
<RelativeLayout
android:id="@+id/content_frame"
android:layout_width="match_parent"
android:layout_height="wrap_content" >
<include
android:id="@+id/toolbar"
layout="@layout/toolbar" />
</RelativeLayout>
<RelativeLayout
android:id="@+id/semi_white_bg"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:background="@color/white_semi_transparent"
android:visibility="gone" >
</RelativeLayout>
<RelativeLayout
android:id="@+id/listFrame"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:layout_below="@+id/content_frame"
android:visibility="gone" >
<TextView
android:id="@+id/status"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:background="@color/cabinet_color"
android:fontFamily="sans-serif"
android:gravity="center_vertical"
android:paddingBottom="8dp"
android:paddingLeft="16dp"
android:paddingRight="16dp"
android:paddingTop="8dp"
android:textColor="#fff"
android:textSize="17sp"
android:visibility="gone" />
<android.support.v7.widget.RecyclerView
android:id="@android:id/list"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:layout_below="@+id/status"
android:clipToPadding="false"
android:scrollbars="vertical" />
<LinearLayout
android:id="@android:id/empty"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_centerInParent="true"
android:orientation="vertical" >
<ImageView
android:id="@+id/emptyImage"
android:layout_width="96dp"
android:layout_height="96dp"
android:layout_gravity="center_horizontal"
android:layout_marginBottom="16dp"
android:scaleType="fitXY"
android:src="?empty_image" />
<TextView
android:id="@+id/emptyText"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_gravity="center_horizontal"
android:layout_marginLeft="16dp"
android:layout_marginRight="16dp"
android:fontFamily="sans-serif-light"
android:gravity="center"
android:lineSpacingMultiplier="1.4"
android:paddingBottom="16dp"
android:text="@string/no_files"
android:textColor="?empty_text"
android:textSize="22sp" />
</LinearLayout>
</RelativeLayout>
<ProgressBar
android:id="@android:id/progress"
style="?android:progressBarStyle"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_centerInParent="true"
android:indeterminateOnly="true" />
</RelativeLayout>
这是我的layout.xml,但似乎根本不能正常工作。这些内容不会与整个视图重叠,只是为了它想要的颜色......
答案 0 :(得分:5)
在我看来,我发现这是最简单的解决方案,而且效果很好:
fam.setOnFloatingActionsMenuUpdateListener(new FloatingActionsMenu.OnFloatingActionsMenuUpdateListener() {
@Override
public void onMenuExpanded() {
dimmedBackground.setVisibility(View.VISIBLE);
}
@Override
public void onMenuCollapsed() {
dimmedBackground.setVisibility(View.GONE);
}
});
答案 1 :(得分:2)
喜欢你的问题......
这个库不允许你设置添加按钮点击事件,你可能需要为自己更改库代码,使用这个想法: 使用Relatie或framelayout并在FAB后添加黑色背景或图像。
现在在库类FloatingActionsMenu.class中查找并注释此代码:
//mAddButton.setOnClickListener(new OnClickListener()
//{
// @Override
// public void onClick(View v)
// {
// toggle();
// }
//});
然后在该类中添加此方法
public void setAddButtonClickListener(OnClickListener listener)
{
mAddButton.setOnClickListener(listener);
}
在您的活动中定义点击监听器,如
OnClickListener listener = new OnClickListener()
{
@Override
public void onClick(View v)
{
if (floatingActionMenuButton.isExpanded())
{//make the background visible
}
else
{//make the background invisible
}
floatingActionMenuButton.toggle();
}
};
并将其传递给FAB
floatingActionMenuButton.setAddButtonClickListener(listener);
构建库和项目,希望这会有所帮助!
答案 2 :(得分:1)
您需要将活动包装在FrameLayout中。 FrameLayout应该有2个孩子
以下是相关的代码段。
<FrameLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:fab="http://schemas.android.com/apk/res-auto"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="match_parent"
tools:context="in.city.bytes.view.MainActivity">
<LinearLayout
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="vertical">
<!-- other content in the activity -->
</LinearLayout>
<FrameLayout
android:id="@+id/frame_layout"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:background="@color/white_overlay">
<!-- floating action menu with buttons -->
</FrameLayout>
在您的活动中,单击FAB菜单时更改frame_layout
的alpha。我还写了一篇博客来解释它。 http://www.rishabhsinghal.in/implement-floating-action-button-similar-to-inbox-by-gmail-or-evernote/
答案 3 :(得分:0)
floatingActionMenu.setOnMenuToggleListener(
new FloatingActionMenu.OnMenuToggleListener() {
@Override
public void onMenuToggle(boolean opened) {
if(opened){
//show backgroud
}else{
//hide backgroud
}
}
});