Text
一个用于显示文本的 React 组件,并且它也支持嵌套、样式,以及触摸处理。
在下面的例子里,嵌套的标题和正文文字会继承来自styles.baseText
的fontFamily
字体样式,不过标题上还附加了它自己额外的样式。标题和文本会在顶部依次堆叠,并且被代码中内嵌的换行符分隔开。
- 函数式组件
- Class 组件
嵌套文本
在 iOS 和 Android 中显示格式化文本的方法类似,都是提供你想显示的文本内容,然后使用范围标注来指定一些格式(在 iOS 上是用NSAttributedString
,Android 上则是SpannableString
)。这种用法非常繁琐。在 React Native 中,我们决定采用和 Web 一致的设计,这样你可以把相同格式的文本嵌套包裹起来:
而实际上在框架内部,这会生成一个扁平结构的NSAttributedString
或是SpannableString
,包含以下信息:
"I am bold and red"
0-9: bold
9-17: bold, red
嵌套视图(仅限 iOS)
On iOS, you can nest views within your Text component. Here's an example:
In order to use this feature, you must give the view a
width
and aheight
.
容器
<Text>
元素在布局上不同于其它组件:在 Text 内部的元素不再使用 flexbox 布局,而是采用文本布局。这意味着<Text>
内部的元素不再是一个个矩形,而可能会在行末进行折叠。
<Text>
<Text>First part and </Text>
<Text>second part</Text>
</Text>
// Text container: the text will be inline if the space allowed it
// |First part and second part|
// otherwise, the text will flow as if it was one
// |First part |
// |and second |
// |part |
<View>
<Text>First part and </Text>
<Text>second part</Text>
</View>
// View container: each text is its own block
// |First part and|
// |second part |
// the text will flow in its own block
// |First part |
// |and |
// |second part|
样式继承限制
在 Web 上,要想指定整个文档的字体和大小,我们只需要写:
/* 这段代码是CSS, *不是*React Native */
html {
font-family: 'lucida grande', tahoma, verdana, arial, sans-serif;
font-size: 11px;
color: #141823;
}
当浏览器尝试渲染一个文本节点的时候,它会在树中一路向上查询,直到根节点,来找到一个具备font-size
属性的元素。这个系统一个不好的地方在于任何节点都可能会有font-size
属性,包括<div>
标签。这个设计为了方便而设计,但实际上语义上并不太正确。
在 React Native 中,我们把这个问题设计的更加严谨:你必须把你的文本节点放在<Text>
组件内。你不能直接在<View>
下放置一段文本。
// 错误的做法:会导致一个错误。<View>下不能直接放一段文本。
<View>
一些文本
</View>
// 正确的做法
<View>
<Text>
一些文本
</Text>
</View>
并且你也不能直接设置一整颗子树的默认样式。此外,fontFamily
样式只接受一种字体名称,这一点和 CSS 也不一样。使用一个一致的文本和尺寸的推荐方式是创建一个包含相关样式的组件MyAppText
,然后在你的 App 中反复使用它。你还可以创建更多特殊的组件譬如MyAppHeaderText
来表达不同样式的文本。
<View>
<MyAppText>
这个组件包含了一个默认的字体样式,用于整个应用的文本
</MyAppText>
<MyAppHeaderText>这个组件包含了用于标题的样式</MyAppHeaderText>
</View>
Assuming that MyAppText
is a component that simply renders out its children into a Text
component with styling, then MyAppHeaderText
can be defined as follows:
class MyAppHeaderText extends Component {
render() {
return (
<MyAppText>
<Text style={{fontSize: 20}}>{this.props.children}</Text>
</MyAppText>
);
}
}
Composing MyAppText
in this way ensures that we get the styles from a top-level component, but leaves us the ability to add / override them in specific use cases.
React Native 实际上还是有一部分样式继承的实现,不过仅限于文本标签的子树。在下面的代码里,第二部分会在加粗的同时又显示为红色:
<Text style={{fontWeight: 'bold'}}>
I am bold
<Text style={{color: 'red'}}>and red</Text>
</Text>
我们相信这种看起来不太舒服的给文本添加样式的方法反而会帮助我们生产更好的 App:
-
(对开发者来说) React 组件在概念上被设计为强隔离性的:你应当可以在应用的任何位置放置一个组件,而且只要属性相同,其外观和表现都将完全相同。文本如果能够继承外面的样式属性,将会打破这种隔离性。
-
(对实现者来说) React Native 的实现也被简化了。我们不需要在每个元素上都添加一个
fontFamily
字段,并且我们也不需要隐含地在显示文本的时候向上遍历树。唯一的样式继承在原生 Text 组件中编码,也不会影响到其它组件或者系统本身。
文档
Props
accessibilityHint
An accessibility hint helps users understand what will happen when they perform an action on the accessibility element when that result is not clear from the accessibility label.
Type |
---|
string |
accessibilityLabel
Overrides the text that's read by the screen reader when the user interacts with the element. By default, the label is constructed by traversing all the children and accumulating all the Text
nodes separated by space.
Type |
---|
string |
accessibilityRole
Tells the screen reader to treat the currently focused on element as having a specific role.
On iOS, these roles map to corresponding Accessibility Traits. Image button has the same functionality as if the trait was set to both 'image' and 'button'. See the Accessibility guide for more information.
On Android, these roles have similar functionality on TalkBack as adding Accessibility Traits does on Voiceover in iOS
Type |
---|
AccessibilityRole |
accessibilityState
Tells the screen reader to treat the currently focused on element as being in a specific state.
You can provide one state, no state, or multiple states. The states must be passed in through an object. Ex: {selected: true, disabled: true}
.
Type |
---|
AccessibilityState |
accessible
When set to true
, indicates that the view is an accessibility element.
See the Accessibility guide for more information.
Type | Default |
---|---|
boolean | true |
adjustsFontSizeToFit
iOS
指定字体是否随着给定样式的限制而自动缩放。
Type | Default |
---|---|
boolean | false |
selectable
决定用户是否可以长按选择文本,以便复制和粘贴。
类型 | 必需 |
---|---|
bool | 否 |
ellipsizeMode
这个属性通常和下面的 numberOfLines
属性配合使用,表示当 Text 组件无法全部显示需要显示的字符串时如何用省略号进行修饰。
该属性有如下 4 种取值:
head
- 从文本内容头部截取显示省略号。例如: "...efg"middle
- 在文本内容中间截取显示省略号。例如: "ab...yz"tail
- 从文本内容尾部截取显示省略号。例如: "abcd..."clip
- 不显示省略号,直接从尾部截断。
The default is tail
.
类型 | 必需 |
---|---|
enum('head', 'middle', 'tail', 'clip') | 否 |
nativeID
Used to locate this view from native code.
类型 | 必需 |
---|---|
string | 否 |