gpt4 book ai didi

android - 创建自定义布局时丢失 ActionBar 标题

转载 作者:太空宇宙 更新时间:2023-11-03 11:11:24 25 4
gpt4 key购买 nike

我正在尝试制作一个具有以下内容的 ActionBar:

  • 主页按钮已启用并带有标题(在左侧)
  • TextView(居中)
  • 溢出菜单项(右侧)

我正在关注 this answer一个几乎相同的问题。不同之处在于我想显示一个标题。我尝试了 actionBar.setTitle("Title"),但它被 LinearLayout 截断并且不可见。

如何使用上述元素在 ActionBar 的中心创建自定义 View ?

是否可以不覆盖整个 ActionBar?

编辑:

我在这里设置了 ActionBar:

final ActionBar actionBar = getSupportActionBar();
actionBar.setHomeButtonEnabled(true);
actionBar.setDisplayHomeAsUpEnabled(true);
actionBar.setDisplayShowTitleEnabled(true);
actionBar.setDisplayShowCustomEnabled(true);
actionBar.setTitle("Title");
actionBar.setCustomView(R.layout.some_layout);

这是 some_layout.xml 文件:

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:gravity="center"
android:orientation="horizontal">

<TextView
android:id="@+id/text_view"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="Some Text" />

</LinearLayout>

这是我由此得到的结果 ActionBar(我将 LinearLayout 背景设置为绿色,文本颜色设置为白色):

action bar

这是我想要得到的(没有绿色背景):

enter image description here

最佳答案

试试这个:

        ActionBar ab = getSupportActionBar();
ab.setCustomView(R.layout.registration_actionbar);
ab.setDisplayOptions(ActionBar.DISPLAY_SHOW_CUSTOM
| ActionBar.DISPLAY_SHOW_HOME | ActionBar.DISPLAY_SHOW_TITLE);

关于android - 创建自定义布局时丢失 ActionBar 标题,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/23983134/

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