gpt4 book ai didi

android - 将操作栏更改为从 Fragment 中覆盖

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

我有一个 fragment ( fragment 1)被另一个 fragment ( fragment 2)替换。 fragment 1 放在堆栈上。我正在使用兼容模式(不是 ActionBarSherlock)。

这是我的问题。我希望操作栏在某些 fragment 中显示为叠加层,但在其他 fragment 中不显示。具体来说,当显示 Fragment 2 时,我希望它出现在叠加层中,然后在 Fragment 2 退出后返回到正常的操作栏。

fragment 1 有一个始终可见的常规操作栏。但是,当我用 fragment 2 替换 fragment 1 时,我需要在 5 秒后隐藏操作栏。如果有触摸事件,将再次显示操作栏。这一切都很好,但是,每次隐藏或显示操作栏时,都会重新绘制 Fragment 2。因此,我想让 Fragment 2 中的操作栏显示为叠加层。

我知道我可以更改操作栏叠加层,但我不知道如何从 fragment 中以编程方式执行此操作。我不想为每个 fragment 更改它,只是 fragment 2。

想法??????

最佳答案

这可能不是您想要的答案。

考虑一个不同的问题:我们可以在调用 setContentView(...) 后更改 Activity 主题吗?这个问题已经被问了很多次,一个常见的解决方案是重新创建(调用 finish()startActivity(getIntent())) Activity 并在之前设置新主题setContentView(...)

您的问题是对此的扩展 - 增加了从 fragment 更改主题的复杂性。无论如何,我不认为上面提到的解决方案是好的。

ActionBar 是创建 Activity 时最先初始化的组件之一。我不认为你会找到一种方法来以某种方式用新属性“刷新”它。请参阅下面的 requestFeature(Window.FEATURE_ACTION_BAR_OVERLAY) 方法如何处理 post-setContentView(...) 调用:

@Override
public boolean requestFeature(int featureId) {
if (mContentParent != null) {
throw new AndroidRuntimeException("requestFeature() must be
called before adding content");
}
....
....
}

因此,如果已经为 Activity 调用了 setContentView(...)(在您的情况下是这样),将抛出运行时异常。

有没有可能你甚至不需要这个功能?

首先将 ActionBar 设置为主题中的叠加层:

<item name="android:windowActionBarOverlay">true</item>
<!-- Support library attribute for compatibility -->
<item name="windowActionBarOverlay">true</item>

Here's my problem. I want the actionbar to be displayed as overlay in some fragments...

好的。我们已经在上面对此进行了配置。

... but not in others.

假设您不想将 ActionBar 作为 Fragment B 中的叠加层。然后,在 Fragment B 的布局中,执行以下操作:

<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:id="@+id/drawer_layout"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:layout_marginTop="?android:attr/actionBarSize" > <<<-- ?attr/actionBarSize
for compatibility

....
....
</LinearLayout>

将上边距设置为 ActionBar 的大小后,Fragment B 看起来就像有一个常规的 ActionBar,而不是重叠的。实现此目的的另一种方法是将带有 android:layout_height="?android:attr/actionBarSize"View 作为上面布局中的第一个子元素放置。

本质上:

  • 您的 ActionBar 将是一个叠加层。
  • 在 ActionBar 将自动隐藏的 fragment 中, fragment 布局不会设置任何上边距。
  • 在不应覆盖 ActionBar 的 fragment 中, fragment 布局将上边距设置为actionBarSize

注意事项(感谢 Jelle):

如果您的 ActionBar 是半透明的,最好使用 padding 而不是 margin 以获得一致的外观。

关于android - 将操作栏更改为从 Fragment 中覆盖,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/24945244/

25 4 0