gpt4 book ai didi

Android ActionBar 的自定义 View 未填充父级

转载 作者:IT王子 更新时间:2023-10-28 23:28:39 26 4
gpt4 key购买 nike

类似于问题 here ,但有一些关键区别。最值得注意的是,接受的答案确实在最新的支持库发布之前有效。

这是自定义 View 布局:

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:orientation="vertical"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:background="#FFDD0000">

</LinearLayout>

现在,当您尝试仅设置自定义 View 时:

  ActionBar actionBar = getSupportActionBar();
actionBar.setDisplayShowCustomEnabled(true);
actionBar.setCustomView(R.layout.actionbar);

您最终会得到一个没有填满整个宽度的自定义布局: enter image description here

为了让这个更感兴趣,我在另一个应用程序中进行了类似的设置:

  ActionBar actionBar = getSupportActionBar();
actionBar.setDisplayOptions(ActionBar.DISPLAY_SHOW_CUSTOM);
actionBar.setCustomView(R.layout.actionbar);
actionBar.setDisplayHomeAsUpEnabled(false);
actionBar.setHomeButtonEnabled(false);

确实工作,直到我将支持库更新到 v21。一旦我这样做了,我就在以前没有出现过该问题的应用上遇到了同样的问题。

那么,我的问题是,有没有办法使用最新的支持库使自定义 View 操作栏填充宽度?

编辑 在进行了更多测试后,我发现使用 targetSdkVersion/compileSdkVersion 设置为 19 并具有 v7:19.0.1(或 v7:19.1.0)进行编译因为库没有这个问题(有主页图标,由后面的代码处理),确认这绝对是最新版本的问题。

最佳答案

1

ActionBar actionBar = getSupportActionBar();
actionBar.setDisplayShowHomeEnabled(false);
actionBar.setDisplayShowCustomEnabled(true);
actionBar.setDisplayShowTitleEnabled(false);
View view = getLayoutInflater().inflate(R.layout.actionbar_title_back,
null);
LayoutParams layoutParams = new LayoutParams(LayoutParams.MATCH_PARENT,
LayoutParams.MATCH_PARENT);
actionBar.setCustomView(view, layoutParams);
Toolbar parent = (Toolbar) view.getParent();
parent.setContentInsetsAbsolute(0, 0);

2 使用工具栏

toolbar = (Toolbar) findViewById(R.id.toolbar);
toolbar.setTitle("");
mTitle = (TextView) toolbar.findViewById(R.id.toolbar_title);
mTitle.setText(title);
setSupportActionBar(toolbar);
getSupportActionBar().setDisplayHomeAsUpEnabled(true);
getSupportActionBar().setDisplayShowHomeEnabled(true);

XML

<?xml version="1.0" encoding="utf-8"?>       
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="vertical" >

<android.support.v7.widget.Toolbar
android:id="@+id/toolbar"
android:layout_width="match_parent"
android:layout_height="?attr/actionBarSize"
android:popupBackground="@color/red"
app:popupTheme="@style/PopupTheme"
app:theme="@style/ToolbarTheme" >

<TextView
android:id="@+id/toolbar_title"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_gravity="center"
android:text="Toolbar Title"
android:textColor="@color/white"
android:textSize="17.0sp" />
</android.support.v7.widget.Toolbar>
</LinearLayout>

关于Android ActionBar 的自定义 View 未填充父级,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/27298282/

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