- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我使用这段代码,我想添加 action1 和 action2,比如这段文字的图片和颜色变化
<android.support.v7.widget.Toolbar
xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
android:id="@+id/toolbar"
android:layout_height="wrap_content"
android:layout_width="match_parent"
android:minHeight="?attr/actionBarSize"
android:background="?attr/colorPrimary"
app:theme="@style/ThemeOverlay.AppCompat.Dark.ActionBar"
app:popupTheme="@style/ThemeOverlay.AppCompat.Light"
/>
菜单
<?xml version="1.0" encoding="utf-8"?>
<menu xmlns:android="http://schemas.android.com/apk/res/android" xmlns:app="http://schemas.android.com/apk/res-auto">
<item android:id="@+id/ok" android:text="action1" app:showAsAction="never" />
<item android:id="@+id/cancel" android:text="action2" app:showAsAction="ifRoom" />
</menu>
我的风格
<style name="MyTheme" parent="MyTheme.Base">
</style>
<!-- Base theme applied no matter what API -->
<style name="MyTheme.Base" parent="Theme.AppCompat.Light.DarkActionBar">
<!--If you are using revision 22.1 please use just windowNoTitle. Without android:-->
<item name="windowNoTitle">true</item>
<!--We will be using the toolbar so no need to show ActionBar-->
<item name="windowActionBar">false</item>
<!-- Set theme colors from http://www.google.com/design/spec/style/color.html#color-color-palette-->
<!-- colorPrimary is used for the default action bar background -->
<item name="colorPrimary">#2196F3</item>
<!-- colorPrimaryDark is used for the status bar -->
<item name="colorPrimaryDark">#1976D2</item>
<!-- colorAccent is used as the default value for colorControlActivated
which is used to tint widgets -->
<item name="colorAccent">#FF4081</item>
<!-- You can also set colorControlNormal, colorControlActivated
colorControlHighlight and colorSwitchThumbNormal. -->
</style>
我的工具栏
<?xml version="1.0" encoding="utf-8"?>
<android.support.v7.widget.Toolbar xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
android:id="@+id/toolbar"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:minHeight="?attr/actionBarSize"
android:background="@color/theme_color"
android:theme="@style/ThemeOverlay.AppCompat.Dark.ActionBar"
app:popupTheme="@style/ThemeOverlay.AppCompat.Light" />
最佳答案
使用下面的菜单文件-
<?xml version="1.0" encoding="utf-8"?>
<menu xmlns:android="http://schemas.android.com/apk/res/android" xmlns:app="http://schemas.android.com/apk/res-auto">
<item android:id="@+id/ok" app:showAsAction="always"
android:title="Action1" />
<item android:id="@+id/cancel" app:showAsAction="always"
android:title="Action2" />
</menu>
你需要设置android:title="action2"
。
关于android - 在titlecase工具栏android中添加菜单项文本和文本,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/35432784/
我在 component.html 中有这段代码 {{item.value == 'user' ? 'student' : item.value | titlecase}} itemArra
我正在尝试创建一个函数,该函数接受一个字符串并返回一个字符串,其中一个单词的所有第一个字母都是大写的,其余的都是小写的。 这是我的: function titleCase(str) { str.t
我正在尝试使用 javascript 将 TitleCase(或驼峰式)字符串精确地分成两部分。我知道我可以使用前瞻将它分成多个部分: "StringToSplit".split(/(?=[A-Z])
我可以使用它来将普通字符串更改为标题大小写。 return str.replace(/\w\S*/g, function(txt){return txt.charAt(0).toUpperCase()
我在 JSP 标记文件中有一个变量,如下所示 ${breadcrumb.name} 我需要将此变量中的文本/字符串转换为标题大小写...有人可以帮我解决这个问题吗?谢谢 最佳答案 通过使用以下方法解决
我有一个字符串,我将其转换为 TextInfo.ToTitleCase 并删除了下划线并将该字符串连接在一起。现在我需要将字符串中的第一个也是唯一的第一个字符更改为小写,出于某种原因,我不知道如何完成
我见过 TitleCase 用于将字符串中的每个单词大写,这很有用,但是...... 我想要输出已存储为全部小写的电影标题。我可以使用 TitleCase,但这不会给出人们通常期望的外观。 例如,电影
我有以下代码可以将字符串转换为 TitleCase。我想对此创建一个异常(exception),以便如果输入的字符串按顺序找到确切的字符,它将忽略它并继续转换字符串的其余部分。例如。如果字符串的一部分
我正在将我的应用程序从 Angular 6 迁移到 Angular 7 运行 ng update 并更新我的包后,一切顺利,直到我运行: ng build --configuration=produc
为什么 titlecase 弄乱了名字?我有: John Mark McMillan 它变成了: >> "john mark McMillan".titlecase => "John Mark Mc
我目前已将我的 Web API 设置为以 WebApiConfig 中的以下代码返回驼峰格式的所有 JSON: var formatter = GlobalConfiguration.Configur
我找到了 brilliant RegEx提取 camelCase 或 TitleCase 表达式的一部分。 (? 值(value) camelValue -> Camel /值(value) Tit
第一行代码执行我想要的操作,第二行仅将第一个单词大写: 我想为输入标签添加标题,但我无法管理它。 这也不起作用: 这也不是: 最佳答案 试试这个。 Label 期望第一个参数是表单所在
我尝试了以下代码,但它不起作用。 import { Component } from '@angular/core'; import { TitleCasePipe } from '@angular/
我正在使用 visual studio 11.0,在 .Net 网络编程中,我想通过从 RadioButtonList1 中选择并将结果显示在 Label1.Text 中,将从 TextBox1 输入
我正在寻找将字符串从驼峰格式转换为首字母大写格式的最简单方法。 如何将“playerName”更改为“Player Name”? 最佳答案 NSString *str = @"playerName";
我的 Android 应用项目有问题。 我在构建项目时考虑了错误。 > Task :app:generateSafeArgsDebug FAILED Execution failed for task
我是一名优秀的程序员,十分优秀!