gpt4 book ai didi

android - PopupWindow.showAtLocation 的确切行为是什么?

转载 作者:太空狗 更新时间:2023-10-29 14:13:07 26 4
gpt4 key购买 nike

我有一部 android 4.0 手机 A 和一部 4.4 平板电脑 B,它们都有一个软件导航栏。我用这个:

showAtLocation(myView, Gravity.NO_GRAVITY, x, y);

在特定位置显示窗口。实际结果是,它在 A 上看起来不错,但在 B 上有一个 y 偏移量。我发现偏移量似乎与 B 的导航栏高度相同。所以我使用以下代码获取高度并进行减法:

private int getNavigationBarHeight(Resources res, Context context) {
final int apiLevel = Build.VERSION.SDK_INT;
if((apiLevel >= Build.VERSION_CODES.HONEYCOMB && apiLevel <= Build.VERSION_CODES.HONEYCOMB_MR2)
||
(apiLevel >= Build.VERSION_CODES.ICE_CREAM_SANDWICH && !ViewConfiguration.get(context).hasPermanentMenuKey())
) {
int resourceId = res.getIdentifier("navigation_bar_height", "dimen", "android");
if (resourceId > 0) {
return res.getDimensionPixelSize(resourceId);
}
}
return 0;
}

新结果是:窗口现在在 B 中正常,但在 A 中显示时,它有一个 y 偏移量。

问题是,我怎样才能使我的窗口在两个设备上都正常显示

最佳答案

今天我遇到了和你完全一样的问题。在我的模拟器上,由于 PopupWindow 的 Gravity.NO_GRAVITY,PopupWindow 在窗口边界内正确绘制。然而,在我的 Nexus 7 平板电脑上,PopupWindow 显示在底部显示的设备状态栏下方。

在我点击屏幕上的 ImageButton 后,我的 PopupWindow 会出现在那个 ImageButtons 的 y 位置(以及我有 match_parent 的宽度)。这个 ImageButton 的位置可以在窗口的边界内,或者正好/完全在平板电脑的底部状态栏下方。

这是我想出的:

我们有什么:

  • 我们为 PopupWindow 的 showAtLocation 方法提供的 [x, y] 位置(我们只需要这里的 y 位置,我将其命名为 oldY)

我们计算的内容:

  • 弹出高度
  • 状态栏高度
  • 窗口边界内的最大可能高度(screenHeight - statusBarHeight - popupHeight)

然后我们检查的内容:

  • 我们检查 oldY 是否大于 maxY
  • 如果是这种情况,newY 将是 maxY 并且我们重新绘制 PopupWindow。如果不是这种情况,则意味着我们什么都不做,只是使用 oldY 作为正确的 Y 位置。

注意 1: 我为此编写了代码,但在调试过程中发现状态栏的高度在我的模拟器和 Nexus 平板电脑上均为 0,因此只需使用 screenHeight - popupHeight 对我来说已经足够了。尽管如此,我还是在我的配置文件中包含了使用 bool 值计算底部状态栏高度的代码以启用/禁用它,以防将来该应用程序安装在另一台平板电脑上。

这是在代码中,我只是添加了上面的描述以明确我使用哪种方法来解决这个问题:

// Get the [x, y]-location of the ImageButton
int[] loc = new int[2];
myImageButton.getLocationOnScreen(loc);

// Inflate the popup.xml
LinearLayout viewGroup = (LinearLayout)findViewById(R.id.popup_layout);
LayoutInflater layoutInflater = (LayoutInflater)getSystemService(Context.LAYOUT_INFLATER_SERVICE);
final View layout = layoutInflater.inflate(R.layout.popup, viewGroup);

// Create the PopupWindow
myPopupWindow = new PopupWindow(ChecklistActivity.this);
myPopupWindow.setContentView(layout);
myPopupWindow.setWindowLayoutMode(ViewGroup.LayoutParams.MATCH_PARENT, ViewGroup.LayoutParams.WRAP_CONTENT);

... // Some more stuff with the PopupWindow's content

// Clear the default translucent background and use a white background instead
myPopupWindow.setBackgroundDrawable(new ColorDrawable(android.graphics.Color.WHITE));

// Displaying the Pop-up at the specified location
myPopupWindow.showAtLocation(layout, Gravity.NO_GRAVITY, 0, loc[1]);

// Because the PopupWindow is displayed below the Status Bar on some Device's,
// we recalculate it's height:
// Wait until the PopupWindow is done loading by using an OnGlobalLayoutListener:
final int[] finalLoc = loc;
if(layout.getViewTreeObserver().isAlive()){
layout.getViewTreeObserver().addOnGlobalLayoutListener(new ViewTreeObserver.OnGlobalLayoutListener() {
// This will be called once the layout is finished, prior to displaying it
// So we can change the y-position of the PopupWindow just before that
@Override
public void onGlobalLayout() {
// Get the PopupWindow's height
int popupHeight = layout.getHeight();
// Get the Status Bar's height
int statusBarHeight = 0;
// Enable/Disable this in the Config-file
// This isn't needed for the Emulator, nor the Nexus 7 tablet
// Since the calculated Status Bar Height is 0 with both of them
// and the PopupWindow is displayed at its correct position
if(D.WITH_STATUS_BAR_CHECK){
// Check whether the Status bar is at the top or bottom
Rect r = new Rect();
Window w = ChecklistActivity.this.getWindow();
w.getDecorView().getWindowVisibleDisplayFrame(r);
int barHeightCheck = r.top;
// If the barHeightCheck is 0, it means our Status Bar is
// displayed at the bottom and we need to get it's height
// (If the Status Bar is displayed at the top, we use 0 as Status Bar Height)
if(barHeightCheck == 0){
int resourceId = getResources().getIdentifier("status_bar_height", "dimen", "android");
if (resourceId > 0)
statusBarHeight = getResources().getDimensionPixelSize(resourceId);
}
}
// Get the Screen's height:
DisplayMetrics dm = new DisplayMetrics();
getWindowManager().getDefaultDisplay().getMetrics(dm);
int screenHeight = dm.heightPixels;
// Get the old Y-position
int oldY = finalLoc[1];
// Get the max Y-position to be within Window boundaries
int maxY = screenHeight - statusBarHeight - popupHeight;
// Check if the old Y-position is outside the Window boundary
if(oldY > maxY){
// If it is, use the max Y-position as new Y-position,
// and re-draw the PopupWindow
myPopupWindow.dismiss();
myPopupWindow.showAtLocation(layout, Gravity.NO_GRAVITY, 0, maxY);
}

// Since we don't want onGlobalLayout to continue forever, we remove the Listener here again
layout.getViewTreeObserver().removeOnGlobalLayoutListener(this);
}
});
}

注意 2: 我已将 tag_popup 本身设置为 width = match_parent; height = wrap_content 在这一行:

myPopupWindow.setWindowLayoutMode(ViewGroup.LayoutParams.MATCH_PARENT, ViewGroup.LayoutParams.WRAP_CONTENT);

和这个 Popup 的主要布局为 width = match_parent; height = match_parent:

 <?xml version="1.0" encoding="utf-8"?>
<!DOCTYPE xml>
<!-- The DOCTYPE above is added to get rid of the following warning:
"No grammar constraints (DTD or XML schema) detected for the document." -->

<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:id="@+id/popup_layout"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:background="@layout/tag_shape"
android:padding="@dimen/default_margin">

... <!-- Popup's Content (EditTexts, Spinner, TextViews, Button, etc.) -->

</RelativeLayout>

注意 3: 我的应用被迫保持纵向模式。我没有在横向模式下对此进行测试,但我认为应该进行一些修改(虽然不确定)。 编辑:经过测试,它在我的两台设备上也可以在横向模式下工作。我不知道这是否也适用于启用底部栏高度的横向模式。

希望这对您和其他遇到类似问题的人有所帮助。希望他们将来会修复 PopupWindow 的 Gravity,这样它就永远不会低于状态栏,除非程序员自己想要这个并更改 PopupWindow 的设置。

关于android - PopupWindow.showAtLocation 的确切行为是什么?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/25111708/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com