我正在开发一个应用程序,需要在位于导航栏的菜单按钮下方显示对话框,以实现我在下面使用的代码
Dialog dialogMenu = new Dialog(mContext);
dialogMenu.setContentView(R.layout.dialog_main_menu);
dialogMenu.getWindow().setBackgroundDrawable(
new ColorDrawable(android.graphics.Color.TRANSPARENT));
WindowManager.LayoutParams windowLayout = dialogMenu.getWindow()
.getAttributes();
windowLayout.gravity = Gravity.TOP | Gravity.LEFT;
dialogMenu.getWindow().getAttributes().verticalMargin = -0.8F;
dialogMenu.getWindow().getAttributes().horizontalMargin = 0.02F;
dialogMenu.getWindow().setAttributes(windowLayout);
但问题是,在固定的垂直边距对话框没有向上移动如图所示,实际上我想要对话点应该触摸菜单按钮。我无法找到解决方案。
这是我的dialog_main_menu.xml
<?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:layout_width="wrap_content"
android:layout_height="wrap_content" >
<RelativeLayout
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_centerHorizontal="true"
android:background="@drawable/main_menu_bg" >
<TextView
android:id="@+id/txtHeadingMenu"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_centerHorizontal="true"
android:layout_marginTop="15dp"
android:text="@string/menu"
android:textColor="@android:color/white"
android:textSize="14sp" />
<Button
android:id="@+id/ListItem_btnMyItem"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_below="@id/txtHeadingMenu"
android:layout_centerHorizontal="true"
android:layout_marginTop="4dp"
android:background="@drawable/selector_btn_sort_dialog"
android:text="@string/my_item"
android:textColor="@android:color/white"
android:textSize="13sp" />
<Button
android:id="@+id/ListItem_btnMyCategory"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_below="@id/ListItem_btnMyItem"
android:layout_centerHorizontal="true"
android:layout_marginTop="4dp"
android:background="@drawable/selector_btn_sort_dialog"
android:text="@string/my_category"
android:textColor="@android:color/white"
android:textSize="13sp" />
<Button
android:id="@+id/ListItem_btnPersonalList"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_below="@id/ListItem_btnMyCategory"
android:layout_centerHorizontal="true"
android:layout_marginTop="5dp"
android:background="@drawable/selector_btn_sort_dialog"
android:text="@string/personal_list"
android:textColor="@android:color/white"
android:textSize="13sp" />
<Button
android:id="@+id/ListItem_btnStore"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_below="@id/ListItem_btnPersonalList"
android:layout_centerHorizontal="true"
android:layout_marginTop="4dp"
android:background="@drawable/selector_btn_sort_dialog"
android:text="@string/store"
android:textColor="@android:color/white"
android:textSize="13sp" />
<Button
android:id="@+id/ListItem_btnSharedList"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_below="@id/ListItem_btnStore"
android:layout_centerHorizontal="true"
android:layout_marginTop="4dp"
android:background="@drawable/selector_btn_sort_dialog"
android:text="@string/shared_list"
android:textColor="@android:color/white"
android:textSize="13sp" />
<Button
android:id="@+id/ListItem_btnSettings"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_below="@id/ListItem_btnSharedList"
android:layout_centerHorizontal="true"
android:layout_marginBottom="4dp"
android:layout_marginTop="4dp"
android:background="@drawable/selector_btn_sort_dialog"
android:text="@string/settings"
android:textColor="@android:color/white"
android:textSize="13sp" />
</RelativeLayout>
</RelativeLayout>
</RelativeLayout>
答案 0 :(得分:0)
你可以通过应用windowLayout.x =(根据你的要求设置值)和windowLayout.y =(根据你的要求放置值)并使用dialogMenu.getWindow()忽略来实现同样的事情.getAttributes()。verticalMargin = -0.8F; dialogMenu.getWindow()。getAttributes()。horizontalMargin = 0.02F;