React Native 之 Text的使用
前言
-
學習本系列內容需要具備一定 HTML 開發基礎,沒有基礎的朋友可以先轉至 HTML快速入門(一) 學習
-
本人接觸 React Native 時間並不是特別長,所以對其中的內容和性質瞭解可能會有所偏差,在學習中如果有錯會及時修改內容,也歡迎萬能的朋友們批評指出,謝謝
-
文章第一版出自簡書,如果出現圖片或頁面顯示問題,煩請轉至 簡書 檢視 也希望喜歡的朋友可以點贊,謝謝
Text 元件介紹
- 在 React Native 用於顯示文字的元件就是 Text,和iOS中的 UIlabel,Android中的 TextView類似,專門用來顯示基本的文字資訊,處理基本的顯示佈局外,還可以進行巢狀顯示,設定樣式,已經事件處理(如:點選事件)
Text 元件常用的屬性和方法
-
color:字型顏色
// 字型顏色 color:'blue'
效果:
-
numberOfLines:設定 Text 顯示文字的行數,如果顯示的內容超過行數,預設其餘的文字資訊不再顯示
效果:render() { return ( <View style={styles.container}> <Text style={styles.textStyle} numberOfLines={3}>雨澤Forest雨澤Forest雨澤Forest雨澤Forest雨澤Forest雨澤Forest雨澤Forest雨澤Forest雨澤Forest</Text
-
fontSize:字型大小
效果:// 字型大小 fontSize:30
-
fontFamily:字型名稱
效果:// 字型型別 fontFamily:'Georgia'
-
fontStyle('normal', 'italic'):字型風格
效果:// 字型風格 fontStyle:'italic'
-
fontWeight('normal', 'bold', '100 ~ 900'):指定字型的粗細。大多數字體都支援'normal'和'bold'值。並非所有字型都支援所有的數字值。如果某個值不支援,則會自動選擇最接近的值
效果:// 字型粗細 fontWeight:('bold', '700')
-
textShadowOffset(width: number, height: number):設定陰影效果
-
textShadowColor:陰影效果顏色
效果:// 陰影 textShadowOffset:{width:3, height:5}, // 陰影顏色 textShadowColor:'black'
-
textShadowRadius:陰影效果圓角(值越大陰影越模糊)
效果:// 陰影圓角 textShadowRadius:3
-
letterSpacing:字元間距
效果:// 字元間距 letterSpacing:5
-
lineHeight:行高
效果:// 行高 lineHeight:25
- textAlign('auto', 'left', 'right', 'center', 'justify'):文字對齊方式
- auto
效果:// 文字對齊方式 textAlign:'auto'
- left
效果:// 文字對齊方式 textAlign:'left'
- right
效果:// 文字對齊方式 textAlign:'right'
- center
效果:// 文字對齊方式 textAlign:'center'
- justify
效果:// 文字對齊方式 textAlign:'justify'
- auto
- textDecorationLine('none', 'underline', 'line-through'):橫線位置
- none:沒有橫線
- underline:
效果:// 橫線 textDecorationLine:'underline'
- line-through:
效果:// 橫線 textDecorationLine:'line-through'
- textDecorationStyle('solid', 'double', 'dotted', 'dashed'):線風格
- solid
效果:// 橫線風格 textDecorationStyle:'solid'
- double
效果:// 橫線風格 textDecorationStyle:'double'
- dotted
效果:// 橫線風格 textDecorationStyle:'dotted'
- dashed
效果:// 橫線風格 textDecorationStyle:'dashed'
- solid
-
textDecorationColor:線的顏色
// 線的顏色 textDecorationColor:'black',
效果:
-
allowFontScaling:控制字型是否要根據iOS的“文字大小”輔助選項來進行縮放
-
adjustsFontSizeToFit:指定字型是否隨著給定樣式的限制而自動縮放
-
minimumFontScale:當adjustsFontSizeToFit開啟時,指定最小的縮放比(即不能低於這個值)。可設定的值為0.01 - 1.0
-
suppressHighlighting:當為true時,如果文字被按下,則沒有任何視覺效果。預設情況下,文字被按下時會有一個灰色的、橢圓形的高光
-
selectable:決定使用者是否可以長按選擇文字,以便複製和貼上
效果:render() { return ( <View style={styles.container}> <Text style={styles.textStyle} selectable={true} > 雨澤Forest </Text> </View> ); }
-
testID:用來在端到端測試中標記這個檢視
-
onPress:當文字發生點選的時候呼叫該方法
render() { return ( <View style={styles.container}> <Text style={styles.textStyle} onPress={()=>{alert('點選')}} > 雨澤Forest </Text> </View> ); }
效果:
-
onLongPress:當文字被長按以後呼叫此回撥函式(參考onPress)
-
onLayout:當掛載或者佈局變化以後呼叫(引數為:{nativeEvent: {layout: {x, y, width, height}}})(參考onPress)
Text 使用
-
檢視部分
render() { return ( <View style={styles.container}> <Text style={styles.textStyle}>雨澤Forest</Text> </View> ); }
-
樣式部分
var styles = StyleSheet.create({ container: { flex: 1, justifyContent: 'center', alignItems: 'center', backgroundColor: 'green', }, textStyle: { // 背景色 backgroundColor:'yellow', // 字型大小 fontSize:30, // 下劃橫線 textDecorationLine:'underline' } });
效果:
Text 元件的巢狀使用
-
檢視部分
var test = React.createClass({ render() { return ( <View style={styles.container}> <Text style={styles.textStyle} numberOfLines={3}> 雨澤 <Text style={{color:'orange'}}> Forest </Text> </Text> </View> ); } });
-
樣式部分
var styles = StyleSheet.create({ container: { flex: 1, justifyContent: 'center', alignItems: 'center', backgroundColor: 'green', }, textStyle: { // 字型顏色 color:'blue', // 字型大小 fontSize:30 } });
效果:
Text 元件中樣式的繼承
- 在 React Native 中是沒有樣式繼承這種說法的,但對於 Text 元素裡邊的 Text 元素,其實是可以繼承的,至於是單繼承還是多繼承,我們可以來試驗一下
- 檢視部分
var test = React.createClass({ render() { return ( <View style={styles.container}> <Text style={styles.textStyle} numberOfLines={3}> <Text> <Text>雨澤Forest</Text> </Text> </Text> </View> ); } });
- 樣式部分
效果:var styles = StyleSheet.create({ container: { flex: 1, justifyContent: 'center', alignItems: 'center', backgroundColor: 'green', }, textStyle: { // 字型顏色 color:'blue', // 字型大小 fontSize:30 } });
- 檢視部分
- 通過試驗我們可以看出,文字控制類的屬性也是
多繼承
的,和CSS
是一樣的,而且會取與自己最近的屬性歸自己所用,也就是說屬性可覆蓋