gpt4 book ai didi

Android:将 FEATURE_NO_TITLE 与自定义 ViewGroup 一起使用会在窗口顶部留下空间

转载 作者:塔克拉玛干 更新时间:2023-11-02 21:13:03 25 4
gpt4 key购买 nike

我正在尝试创建一个自定义 ViewGroup,我想将它用于全屏应用程序。我正在使用“requestWindowFeature(Window.FEATURE_NO_TITLE)”来隐藏标题栏。标题栏没有显示,但它仍然占用窗口顶部的空间。

Here is a picture of the problem

上面的图片是用下面的代码生成的:

public class CustomLayoutTestActivity extends Activity {
@Override
public void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
requestWindowFeature(Window.FEATURE_NO_TITLE);
Button b = new Button(this);
b.setText("Hello");
CustomLayout layout = new CustomLayout(this);
layout.addView(b);
setContentView(layout);
}
}

public class CustomLayout extends ViewGroup {
public CustomLayout(Context context) {
super(context);
}
public CustomLayout(Context context, AttributeSet attrs) {
super(context, attrs);
}
public CustomLayout(Context context, AttributeSet attrs, int defStyle) {
super(context, attrs, defStyle);
}
@Override
protected void onLayout(boolean changed, int l, int t, int r, int b) {
Log.i("CustomLayout", "changed="+changed+" l="+l+" t="+t+" r="+r+" b="+b);
final int childCount = getChildCount();
for (int i = 0; i < childCount; ++i) {
final View v = getChildAt(i);
v.layout(l, t, r, b);
}
}
}

( The full Eclipse project is here )

有趣的是,Android 为我的自定义布局提供了这个空间。我将 CustomLayout 设置为我的 Activity 的根布局。在“onLayout”的日志中收到“t=25”,这就是插入我的布局的原因。我不知道的是我做错了什么使 Android 成为“t=25”(这正是标题栏的高度)。

我在 Android SDK 2.1 中运行这段代码,但我也在 Android 2.2 中运行。


编辑:如果我更改某些默认布局(例如 LinearLayout)的 CustomLayout 类,空间就会消失。当然,Android SDK 的默认布局不会创建我尝试创建的布局,所以这就是我创建一个的原因。

虽然我正在创建的布局有些复杂,但这是我可以创建的最小代码来重现我的布局问题。

最佳答案

这不是一个完整的答案,但与此同时,您可以通过将自定义布局包装在 <FrameLayout /> 中来解决该问题。

此外,值得注意的是您的布局超出了屏幕底部。它向下移动了标题栏高度(在我的模拟器中为 38 像素)

编辑:知道了。 onLayout() (和相应的 layout() 方法)指定坐标不相对于屏幕原点,它们相对于父级( http://developer.android.com/reference/android/view/View.html#layout%28int,%20int,%20int,%20int%29 )。所以系统告诉你你在相对坐标 (0, 38),你在将它传递给你的 child 时添加它,这意味着你说你的 child 在屏幕坐标 (0, 38) 76), 造成差距。

你真正想做的是:

v.layout(0, 0, r - l, b - t);

这将使您的 subview 与 View 的左上角对齐,并具有与 View 相同的宽度和高度。

关于Android:将 FEATURE_NO_TITLE 与自定义 ViewGroup 一起使用会在窗口顶部留下空间,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/8394407/

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