gpt4 book ai didi

Android 工具栏标题样式

转载 作者:行者123 更新时间:2023-12-02 14:03:31 27 4
gpt4 key购买 nike

我的 Intent 是使用自定义 View ( TextView + ImageView )并将其作为 View 放入工具栏中。如何获取工具栏默认 TextView 标题的样式?我希望将 TextView 放在自定义 View 中拥有完全相同的服装。我尝试将其设计为:

setTypeface(Typeface.DEFAULT_BOLD);
setTextSize(18);
setTextColor(Color.BLACK);

但它看起来仍然不同,这些内容是否在某个地方进行了描述,因为我真的找不到它们。或者我可以以某种方式重新使用标题的样式吗?当涉及到样式,尤其是代码时,我有点困惑.

提前致谢。

最佳答案

将其放置在坐标布局内。

<android.support.design.widget.AppBarLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:theme="@style/AppTheme.AppBarOverlay">

<android.support.v7.widget.Toolbar
android:id="@+id/toolbar"
android:layout_width="match_parent"
android:layout_height="?attr/actionBarSize"
android:background="?attr/colorPrimary"
app:popupTheme="@style/AppTheme.PopupOverlay" >
<TextView
android:id="@+id/title"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:textSize="20dp"
android:text="Ezy Ride"
android:textColor="#ffffff" />
</android.support.v7.widget.Toolbar>

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

现在您的应用栏布局已准备就绪。根据您的需要进行自定义。

在你的java中

    Toolbar toolbar = (Toolbar) findViewById(R.id.toolbar);
setSupportActionBar(toolbar);
TextView toolbarTitle = (TextView)toolbar.findViewById(R.id.title);
//here set all you want!!

关于Android 工具栏标题样式,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/35825632/

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