在按钮下方放置一个 follestad MaterialDialog

Position afollestad MaterialDialog below a button

是否可以选择将 https://github.com/afollestad/material-dialogs 定位在按钮下方,就像我附加的模型一样。

或者有没有其他图书馆可以满足我的要求。

您需要捕捉被点击的 UI 的位置,即您的 过滤器图标 ImageView。你必须使用

getLocationOnScreen() API and PopUpWindow component.

这是给过滤器充气的示例代码UI

    text_click=(TextView)findViewById(R.id.text_click);

          text_click.setOnClickListener(new View.OnClickListener() {
              @Override
              public void onClick(View v) {
                  LayoutInflater inflater= (LayoutInflater) context.getSystemService(Context.LAYOUT_INFLATER_SERVICE);
                  int[] locationOfView = new int[2];
                  text_click.getLocationOnScreen(locationOfView);
                  final View mView = inflater.inflate(R.layout.activity_map_view, null, false);
                  final PopupWindow popUp = new PopupWindow(mView, 500, 500, false);
                  popUp.setTouchable(true);
                  popUp.setFocusable(true);
                  popUp.setOutsideTouchable(true);
popUp.setBackgroundDrawable(new ColorDrawable(ContextCompat.getColor(mContext,android.R.color.transparent)));
                  popUp.showAtLocation(mView, Gravity.NO_GRAVITY, locationOfView[0], (locationOfView[1]+ text_click.getHeight()));
              }
          });