和-6ren">
gpt4 book ai didi

android - 工具栏无法正常工作

转载 作者:行者123 更新时间:2023-11-29 18:57:12 26 4
gpt4 key购买 nike

现在我有几天时间尝试使它正常工作。我正在尝试为我的应用程序的工具栏设置自定义布局

<android.support.v7.widget.Toolbar
android:layout_width="match_parent"
android:layout_height="?attr/actionBarSize"
android:background="#fff"
app:theme="@style/ThemeOverlay.AppCompat.Dark.ActionBar"
android:id="@+id/toolbar">
<TextView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:fontFamily="sans-serif-smallcaps"
android:text="@string/app_name"
android:textColor="@color/green"
android:textSize="16sp"
android:textStyle="bold"
/>
</android.support.v7.widget.Toolbar>`

list .XMl

android:theme="@style/MyMaterialTheme">

和我的 styles.xml:

<style name="MyMaterialTheme" parent="MyMaterialTheme.Base">
</style>

<style name="MyMaterialTheme.Base" parent="Theme.AppCompat.Light.DarkActionBar">
<item name="windowNoTitle">true</item>
<item name="windowActionBar">false</item>

<item name="colorPrimary">@color/colorPrimary</item>
<item name="colorPrimaryDark">@color/colorPrimaryDark</item>
<item name="colorAccent">@color/colorAccent</item>
</style>

在我的 mainLayout 中,当我编辑它时它似乎工作正常,当我运行应用程序时没有人能帮助我吗?

最佳答案

试试这个

    <android.support.v7.widget.Toolbar
android:id="@+id/toolbar"
android:layout_width="match_parent"
android:layout_height="?attr/actionBarSize"
android:background="#fff"
app:theme="@style/ThemeOverlay.AppCompat.Dark.ActionBar">

<LinearLayout
android:layout_width="match_parent"
android:layout_height="wrap_content">

<TextView
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:fontFamily="sans-serif-smallcaps"
android:text="@string/app_name"
android:textColor="@color/green"
android:textSize="16sp"
android:textStyle="bold" />
</LinearLayout>
</android.support.v7.widget.Toolbar>

关于android - 工具栏无法正常工作,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/49772635/

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