浮动行动按钮和白色背景

时间:2015-01-16 20:13:14

标签: android floating-action-button

事实上,我搜索的方式是模仿FAB的收件箱。当用户按下红色按钮时,应显示opac视图和菜单。因为图像更有意义,请参见下图

enter image description here

我知道它存在这个精彩的库(https://github.com/futuresimple/android-floating-action-button),通过这个库,我可以显示浮动动作菜单。但我的问题是显示白色背景(不透明度)。我没有找到解决问题的解决方案......

提前谢谢

4 个答案:

答案 0 :(得分:16)

FloatingActionMenu置于FrameLayout内,位于其他视图之上,并在宽度和高度上匹配父级。使用相同的边距相应地从菜单右侧抬起和偏移。

OnFloatingActionsMenuUpdateListener设置为浮动操作菜单。现在切换/替换方法中的框架布局背景颜色:

 @Override
 void onMenuExpanded(){
  mFrameLayoutWrapper.setBackgroundColor(mAlpaWhite);
  }

  @Override
  void onMenuCollapsed(){
    mFrameLayoutWrapper.setBackgroundColor(Color.TRANSPARENT);
  }

答案 1 :(得分:0)

我通过以下方法实现了您刚刚提到的效果。我刚刚在浮动按钮后面和其他布局上方添加了一个视图,并保持视图可见性GONE,直到菜单展开。然后我将视图可见性设置为VISIBLE。是的,我将视图的背景设置为您想要的任何不透明颜色。

我的代码

我的XML文件

<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
xmlns:fab="http://schemas.android.com/apk/res-auto"
android:layout_width="match_parent"
android:layout_height="match_parent">

<TextView
    android:text="Other View here"
    android:textSize="50dp"
    android:layout_centerHorizontal="true"
    android:layout_width="wrap_content"
    android:layout_height="wrap_content" />

<View
    android:id="@+id/background_dimmer"
    android:visibility="gone"
    android:background="#55000000"
    android:layout_width="match_parent"
    android:layout_height="match_parent"/>

<com.getbase.floatingactionbutton.FloatingActionsMenu
    android:id="@+id/multiple_actions"
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:layout_alignParentBottom="true"
    android:layout_alignParentRight="true"
    android:layout_alignParentEnd="true"
    fab:fab_addButtonColorNormal="@color/white"
    fab:fab_addButtonColorPressed="@color/white_pressed"
    fab:fab_addButtonPlusIconColor="@color/half_black"
    fab:fab_labelStyle="@style/menu_labels_style"
    android:layout_marginBottom="16dp"
    android:layout_marginRight="16dp"
    android:layout_marginEnd="16dp">

    <com.getbase.floatingactionbutton.FloatingActionButton
        android:id="@+id/action_a"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        fab:fab_colorNormal="@color/white"
        fab:fab_title="Action A"
        fab:fab_colorPressed="@color/white_pressed"/>

</com.getbase.floatingactionbutton.FloatingActionsMenu>

在处理FloatingButtons的Activity或Fragment中

@Override
protected void onCreate(Bundle savedInstanceState) {
    super.onCreate(savedInstanceState);
    setContentView(R.layout.activity_map);
    setFloatingButtonControls();
}

private void setFloatingButtonControls(){
    this.bckgroundDimmer = findViewById(R.id.background_dimmer);
    this.floatingActionsMenu = (FloatingActionsMenu) findViewById(R.id.multiple_actions);
    this.floatingActionsMenu.setOnFloatingActionsMenuUpdateListener(new FloatingActionsMenu.OnFloatingActionsMenuUpdateListener() {
        @Override
        public void onMenuExpanded() {
            bckgroundDimmer.setVisibility(View.VISIBLE);
        }

        @Override
        public void onMenuCollapsed() {
            bckgroundDimmer.setVisibility(View.GONE);
        }
    });
}

这将产生你想要的效果。希望这可以帮助。它确实帮助了我。 :)

答案 2 :(得分:0)

使用工具栏,浮动菜单,内容和相对布局,选择一个协调器布局。将相对布局的背景颜色设置为白色透明,并将其可见性设置为Gone。设置“NoActionBar”主题并在活动中使用工具栏而不是操作栏。现在,无论何时打开浮动菜单,都要将相对布局的可见性设置为可见,然后将关闭设置恢复为已消失。

答案 3 :(得分:0)

当我添加 float right 时,它确实让我的组件移动到我想要的位置,但也有一个白色背景,这是不必要的,但我可以通过在父 div 中引入“溢出:隐藏”来解决它。那应该可以解决问题