gpt4 book ai didi

Android 工具栏 TextView match_parent 变得比屏幕大

转载 作者:行者123 更新时间:2023-11-30 00:26:29 25 4
gpt4 key购买 nike

我有一个带有 TextView 的工具栏,里面有 match_parent 来使文本居中,但每次我这样做时它都会变得比屏幕大并隐藏文本。

这里是它运行的截图

enter image description here

预览中的样子

enter image description here

最后是我如何实现它:

<?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"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:fitsSystemWindows="true"
android:orientation="vertical">

<android.support.design.widget.AppBarLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
tools:layout_editor_absoluteY="0dp"
tools:layout_editor_absoluteX="8dp">

<android.support.v7.widget.Toolbar
android:id="@+id/toolbar"
android:layout_width="match_parent"
android:layout_height="?attr/actionBarSize"
android:background="?attr/colorPrimary"
app:theme="@style/ToolBarStyle" >

<TextView
android:id="@+id/toolbar_title"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_gravity="center"
android:gravity="center"
android:text="@string/title_activity_anuncios" />

</android.support.v7.widget.Toolbar>

</android.support.design.widget.AppBarLayout>

<android.support.constraint.ConstraintLayout
android:layout_width="match_parent"
android:layout_height="match_parent">

</android.support.constraint.ConstraintLayout>

</LinearLayout>

最佳答案

检查你的风格主题或从 list 中设置 Activity 主题

 android:theme="@android:style/Theme.Translucent.NoTitleBar" 

如果 Activity 主题正确,那么您可以检查您的 Activity >> onCreate 方法。

   ActionBar actionBar = getSupportActionBar();
if (actionBar != null) {
actionBar.setTitle("Your Title");
}

关于Android 工具栏 TextView match_parent 变得比屏幕大,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/45276577/

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