gpt4 book ai didi

操作栏中的 Android 中心自定义 View

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

尝试为我的 actionbar 设置自定义 View ,但问题是它没有填满 actionbar 的整个宽度,这让我很难将对象居中。如何在填充整个操作栏的操作栏中设置自定义 View ?

设置我的操作栏的代码:

actionBar.setDisplayShowHomeEnabled(false);
actionBar.setDisplayShowCustomEnabled(true);
actionBar.setDisplayShowTitleEnabled(false);

LayoutInflater inflater = (LayoutInflater) getSystemService(Context.LAYOUT_INFLATER_SERVICE);
actionBar.setCustomView(inflater.inflate(R.layout.actionbar_layout, null));

还有我的 actionbar_layout.xml:

<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_gravity="center"
android:background="#EDEDED">

<TextView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:id="@+id/title"
android:layout_centerHorizontal="true"
android:layout_centerVertical="true"
android:textColor="#FFFFFF"
android:text="Testing"/>
</RelativeLayout>

最佳答案

您必须在 actionbar_layout.xml 中为您的 RelativeLayout 设置 android:layout_width="wrap_content";这与 android:layout_gravity="center"结合使用,可以让您的自定义 View 在 ActionBar 中居中。

关于操作栏中的 Android 中心自定义 View ,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/20793579/

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