3

在我看来,Android的坐标系有问题。当我有一个正常的视图(没有请求FEATURE_NO_TITLE)时,我会检索int contentViewTop = window.findViewById(Window.ID_ANDROID_CONTENT).getTop();. 这给了我76px38px状态栏和38px标题栏。

但是,如果我请求FEATURE_NO_TITLE然后重复该过程,则getTop()返回0px,尽管状态栏仍然可见!

这种差异不应该产生影响,因为我们通常不关心内容视图从哪里开始。但是,这我来说很重要,因为我将视图放置在装饰视图上——它覆盖了整个可见窗口。

我知道这不是标题栏和设备密度的技巧,因为如果我请求自定义标题栏并为其指定0高度,则getTop()返回38px.

解决方案/解决方法是在请求时手动添加 38 个像素FEATURE_NO_TITLE。我的问题是:这是一个 Android 错误吗?还是有什么我不理解的布局如何使这种行为可以理解?

提前致谢!

这是一个重现问题的最小程序。运行两次,然后取消注释指示的行。我正在针对 Android SDK 7 进行编译,并在带有 Android 2.3.4 的三星 Galaxy S 上运行。

布局:main.xml

<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:id="@+id/layoutParent"
    android:layout_width="fill_parent"
    android:layout_height="fill_parent" >

    <LinearLayout
        android:id="@+id/someId"
        android:layout_width="fill_parent"
        android:layout_height="fill_parent" >
    </LinearLayout>

</RelativeLayout>

代码:TestStatusBarActivity.java

package com.test.teststatusbar;

import android.app.Activity;
import android.graphics.Color;
import android.graphics.Rect;
import android.os.Bundle;
import android.util.Log;
import android.view.View;
import android.view.ViewTreeObserver;
import android.view.ViewTreeObserver.OnGlobalLayoutListener;
import android.view.Window;
import android.widget.RelativeLayout;

public class TestStatusBarActivity extends Activity {

    @Override
    public void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);

        //Uncomment the following line to see the alternate behavior
        //requestWindowFeature(Window.FEATURE_NO_TITLE);

        setContentView(R.layout.main);

        RelativeLayout layoutParent = (RelativeLayout) findViewById(R.id.layoutParent);
        View something = findViewById(R.id.someId);
        something.setBackgroundColor(Color.CYAN);

        ViewTreeObserver vto = layoutParent.getViewTreeObserver();
        vto.addOnGlobalLayoutListener(new OnGlobalLayoutListener() {
            @Override
            public void onGlobalLayout() {

                // decor window top
                Rect rectgle = new Rect();
                Window window = getWindow();
                window.getDecorView().getWindowVisibleDisplayFrame(rectgle);
                int StatusBarHeight = rectgle.top;

                // "content view" top
                int contentViewTop = window.findViewById(
                        Window.ID_ANDROID_CONTENT).getTop();

                int TitleBarHeight = contentViewTop - StatusBarHeight;

                Log.i("STATUSBARTEST", "StatusBar Height = " + StatusBarHeight
                        + " , TitleBar Height = " + TitleBarHeight
                        + ", Content top = " + contentViewTop);
            }
        });

    }
}

参考

4

2 回答 2

4

这是一个Android错误吗?

不。系统只是构建视图层次结构在这两种情况下略有不同确实避免了不必要的深度(出于性能原因,更多(嵌套)布局元素意味着更多开销)

这是带有标题栏的层次结构的外观:

注意:我的像素值与您的略有不同,因为我在较小的模拟器上运行了您的示例。这对本案应该无关紧要。

在此处输入图像描述 全尺寸

包含标题栏和内容布局的基本 LinearLayout 填充了整个显示。它在这里也有一个 25px 的填充,因为状态栏覆盖了正常的 UI 层次结构。所以必须通过填充保留一些空间。

然后将标题栏作为 LinearLayout 的第一个元素,高度也为 25 px。这意味着findViewById(Window.ID_ANDROID_CONTENT).getTop();总共返回 50,因为 contentview FrameLayout 距离其父 LinearLayout 顶部 50 像素(同样是 25 padding + 25 title)。哪个是对的。

那么,当标题栏被删除时会发生什么?

在此处输入图像描述 全尺寸

系统完全剥离了外部的 LinearLayout,这意味着 contentview 现在填满了整个屏幕。findViewById(Window.ID_ANDROID_CONTENT).getTop();应该在这里返回 0,它实际上是做什么的。这没有错。但是必须再次为状态栏保留空间。系统在此处将该填充分配给内容视图。

如何修复它

我认为解决方案非常简单:您必须包含 contentview 的填充以获得准确的结果。例如改变

int contentViewTop = window.findViewById(Window.ID_ANDROID_CONTENT).getTop();

View contentView = window.findViewById(Window.ID_ANDROID_CONTENT);
int contentViewTop = contentView.getTop() + contentView.getPaddingTop();

这为我打印了正确的结果。

于 2012-05-24T10:04:07.863 回答
0

这取决于我认为您使用的 android 版本。我已经在三星 Galaxy Y (2.3.6) 和 HTC Desire HD (2.3.5) 上尝试过你的代码,它就像你描述的那样发生了。但是,使用 HTC ONE V (4.0.3) ,结果与预期的一样正确。没有标题的视图顶部返回 0 像素。所以你不应该依赖这个输出,因为它可能不会在每部电话中都正确产生。

于 2012-06-14T08:44:48.870 回答