国产片侵犯亲女视频播放_亚洲精品二区_在线免费国产视频_欧美精品一区二区三区在线_少妇久久久_在线观看av不卡

服務器之家:專注于服務器技術及軟件下載分享
分類導航

PHP教程|ASP.NET教程|Java教程|ASP教程|編程技術|正則表達式|C/C++|IOS|C#|Swift|Android|VB|R語言|JavaScript|易語言|vb.net|

服務器之家 - 編程語言 - IOS - React Native學習教程之自定義NavigationBar詳解

React Native學習教程之自定義NavigationBar詳解

2021-04-01 16:16開發仔XG IOS

這篇文章主要給大家介紹了關于React Native學習教程之自定義NavigationBar的相關資料,文中通過是示例代碼介紹的非常詳細,對大家的學習或者工作具有一定的參考學習價值,需要的朋友們下面隨著小編來一起學習學習吧。

前言

在剛開始學習react native的時候,版本還是0.20,問題一大堆,navigation這個問題更是很多,首先,是navigationbar的問題,navigationios有navigationbar,navigation卻需要自定義一個,最后,我想了想,還是自定義一個view,豈不更好,現在新公司不用rn,我正好有點時間,就把自定義的navigationbar分享給大家。好了少廢話,上代碼;

示例代碼

?
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
// navigationbar 導航條的自定義封裝
// create by 小廣
'use strict';
import react, { component,proptypes } from 'react';
import {
 image,
 text,
 view,
 platform,
 touchableopacity,
} from 'react-native';
 
import styles from './navigationbarstyle'
 
// 導航條和狀態欄的高度
const status_bar_height = 20
const nav_bar_height = 44
 
export default class navigationbar extends component {
 static defaultprops = {
 title: 'title',
 titletextcolor: '#383838',
 titleviewfunc () {},
 barbgcolor: '#f8f8f8',
 baropacity: 1,
 barstyle: 0,
 barborderbottomcolor: '#d4d4d4',
 barborderbottomwidth: 0.8,
 statusbarshow: true,
 leftitemtitle: '',
 lefttextcolor: '#383838',
 leftitemfunc () {},
 rightitemtitle: '',
 righttextcolor: '#383838',
 rightitemfunc () {},
 //leftimagesource: require('./nav_back.png'),
 };
 static proptypes = {
 title: proptypes.string,   // nav標題
 titletextcolor: proptypes.string, // nav標題顏色
 titleview: proptypes.node,  // nav自定義標題view(節點)
 titleviewfunc: proptypes.func, // nav的titleview點擊事件
 barbgcolor: proptypes.string, // bar的背景顏色
 baropacity: proptypes.number, // bar的透明度
 barstyle: proptypes.number, // bar的擴展屬性,nav樣式(暫未使用)
 barborderbottomcolor: proptypes.string, // bar底部線的顏色
 barborderbottomwidth: proptypes.number, // bar底部線的寬度
 statusbarshow: proptypes.bool// 是否顯示狀態欄的20高度(默認true)
 leftitemtitle: proptypes.string, // 左按鈕title
 leftimagesource: proptypes.node, // 左item圖片(source)
 lefttextcolor: proptypes.string, // 左按鈕標題顏色
 leftitemfunc: proptypes.func,  // 左item事件
 rightitemtitle: proptypes.string, // 右按鈕title
 rightimagesource: proptypes.node, // 右item圖片(source)
 righttextcolor: proptypes.string, // 右按鈕標題顏色
 rightitemfunc: proptypes.func,  // 右item事件
 };
 
 render() {
 // 判斷左item的類型
 var onlylefticon = false; // 是否只是圖片
 if (this.props.leftitemtitle && this.props.leftimagesource) {
  onlylefticon = true;
 } else if (this.props.leftimagesource) {
  onlylefticon = true;
 }
 
 // 左側圖片title都沒有的情況下
 var noneleft = false;
 if (!(this.props.leftitemtitle.length > 0) && !(this.props.leftimagesource)) {
  noneleft = true;
 }
 
 // 判斷是否自定義titleview
 var hastitleview = false;
 if (this.props.title && this.props.titleview) {
  hastitleview = true;
 } else if (this.props.titleview) {
  hastitleview = true;
 }
 
 // 判斷右item的類型
 var onlyrighticon = false; // 是否只是圖片
 if (this.props.rightitemtitle && this.props.rightimagesource) {
  onlyrighticon = true;
 } else if (this.props.rightimagesource) {
  onlyrighticon = true;
 }
 
 // 右側圖片title都沒有的情況下
 var noneright = false;
 if (!(this.props.rightitemtitle.length > 0) && !(this.props.rightimagesource)) {
  noneright = true;
 }
 
 // 判斷是否顯示20狀態欄高度
 let showstatusbar = this.props.statusbarshow;
 if (platform.os === 'android') {
  // 安卓不顯示
  showstatusbar = false;
 }
 return (
  <view style={styles.nav_barview}>
  <view style={[styles.nav_bar,
   {
   backgroundcolor: this.props.barbgcolor,
   height: showstatusbar ? nav_bar_height + status_bar_height : nav_bar_height,
   opacity: this.props.baropacity
   },
   showstatusbar ? { paddingtop: status_bar_height } : {}, this.props.barstyle]}>
   <view style={styles.nav_itemview}>
   { // 左側item
    !noneleft
    ? <touchableopacity
     style={styles.nav_leftitem}
     onpress={this.props.leftitemfunc}>
     { // 左側是圖片還是文字
     onlylefticon
     ? <image style={styles.nav_leftimage}
        source={this.props.leftimagesource}/>
     : <text style={[styles.nav_lefttitle,{color: this.props.lefttextcolor}]}>
      {this.props.leftitemtitle}
      </text>
     }
    </touchableopacity>
    : null
   }
   </view>
   {
   hastitleview
   ? <touchableopacity style={styles.nav_titleview} onpress={this.props.titleviewfunc}>
    {this.props.titleview}
    </touchableopacity>
   : <view style={styles.nav_titleview}>
    <text style={[styles.nav_title,{color:this.props.titletextcolor}]}>
     {this.props.title}
    </text>
    </view>
   }
   <view style={styles.nav_itemview}>
   { // 右側item
    !noneright
    ? <touchableopacity
     style={styles.nav_rightitem}
     onpress={this.props.rightitemfunc}>
     { // 右側是圖片還是文字
     onlyrighticon
     ? <image style={styles.nav_rightimage}
        source={this.props.rightimagesource}/>
     : <text style={[styles.nav_righttitle,{color: this.props.righttextcolor}]}>
      {this.props.rightitemtitle}
      </text>
     }
    </touchableopacity>
    : null
   }
   </view>
  </view>
  <view style={{height:this.props.barborderbottomwidth,backgroundcolor:this.props.barborderbottomcolor}}></view>
  </view>
 
 );
 }
}

css樣式:

?
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
// navigationbarstyle 導航條的樣式
// create by 小廣
'use strict';
import {
 stylesheet,
} from 'react-native';
 
export default stylesheet.create({
 // navbar
 nav_barview:{
 justifycontent: 'center',
 },
 nav_bar: {
 //flex:1,
 flex: 1,
 flexdirection:'row',
 justifycontent: 'center',
 },
 
 // 標題純title
 nav_title: {
 fontsize:17,
 },
 
 // titleview
 nav_titleview: {
 flex: 1,
 alignitems: 'center',
 justifycontent: 'center',
 },
 
 nav_itemview:{
 width:80,
 justifycontent: 'center',
 },
 
 // 左item
 nav_leftitem: {
 marginleft:8,
 flex:1,
 justifycontent: 'center',
 alignself: 'flex-start',
 //backgroundcolor:'#f00',
 },
 
 // 左item為title
 nav_lefttitle: {
  marginright:5,
  marginleft:5,
  fontsize: 14,
 },
 
 // 左圖片
 nav_leftimage: {
  margin:10,
  resizemode:'contain',
 },
 
 // 右item
 nav_rightitem: {
  marginright:8,
  flex:1,
  justifycontent: 'center',
  alignself: 'flex-end',
  //backgroundcolor:'#3393f2',
 },
 
 // 右item為title
 nav_righttitle: {
  marginright:5,
  marginleft:5,
  fontsize: 14,
 },
 
 // 右圖片
 nav_rightimage:{
  margin:10,
  resizemode:'contain',
  //backgroundcolor:'#f00',
 },
 //resizemode:'contain',
});

用法:引入之后

import navigationbar from '你的存放路徑/navigationbar.js'

?
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
class xgrndemo extends component {
 
 _leftitemaction() {
 console.log('左側按鈕點擊了');
 }
 
 _rightitemaction() {
 console.log('右側按鈕點擊了');
 }
 
 render() {
 return (
  <view style={styles.container}>
  <navigationbar
   title='這個是標題'
   leftimagesource={require('./nav_back.png')}
   rightitemtitle='按鈕'
   righttextcolor='#3393f2'
   leftitemfunc={this._leftitemaction.bind(this)}
   rightitemfunc={this._rightitemaction.bind(this)}/>
  <scrollview style={styles.container}
   automaticallyadjustcontentinsets={false}
   keyboardshouldpersisttaps={true}
   keyboarddismissmode='on-drag'
   >
   <text style={styles.welcome}>
   welcome to react native!
   </text>
   <text style={styles.instructions}>
   to get started, edit index.ios.js
   </text>
   <text style={styles.instructions}>
   press cmd+r to reload,{'\n'}
   cmd+d or shake for dev menu
   </text>
  </scrollview>
  </view>
 );
 }
}
 
const styles = stylesheet.create({
 container: {
 flex: 1,
 backgroundcolor: '#f5fcff',
 },
 welcome: {
 fontsize: 20,
 textalign: 'center',
 margin: 10,
 },
 instructions: {
 textalign: 'center',
 color: '#333333',
 marginbottom: 5,
 },
});

其中可以自定義的屬性

?
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
title: proptypes.string,   // nav標題
titletextcolor: proptypes.string, // nav標題顏色
titleview: proptypes.node,  // nav自定義標題view(節點)
titleviewfunc: proptypes.func, // nav的titleview點擊事件
barbgcolor: proptypes.string, // bar的背景顏色
baropacity: proptypes.number, // bar的透明度
barstyle: proptypes.number, // bar的擴展屬性,nav樣式(暫未使用)
barborderbottomcolor: proptypes.string, // bar底部線的顏色
barborderbottomwidth: proptypes.number, // bar底部線的寬度
statusbarshow: proptypes.bool// 是否顯示狀態欄的20高度(默認true)
leftitemtitle: proptypes.string, // 左按鈕title
leftimagesource: proptypes.node, // 左item圖片(source)
lefttextcolor: proptypes.string, // 左按鈕標題顏色
leftitemfunc: proptypes.func,  // 左item事件
rightitemtitle: proptypes.string, // 右按鈕title
rightimagesource: proptypes.node, // 右item圖片(source)
righttextcolor: proptypes.string, // 右按鈕標題顏色
rightitemfunc: proptypes.func,  // 右item事件

效果如圖:

React Native學習教程之自定義NavigationBar詳解

ps:之前想上傳到npm服務器,但是自己沒搞成功,就這了吧..

總結

以上就是這篇文章的全部內容了,希望本文的內容對大家的學習或者工作具有一定的參考學習價值,如果有疑問大家可以留言交流,謝謝大家對服務器之家的支持。

原文鏈接:http://blog.csdn.net/syg90178aw/article/details/52126883

延伸 · 閱讀

精彩推薦
  • IOSiOS開發之視圖切換

    iOS開發之視圖切換

    在iOS開發中視圖的切換是很頻繁的,獨立的視圖應用在實際開發過程中并不常見,除非你的應用足夠簡單。在iOS開發中常用的視圖切換有三種,今天我們將...

    執著丶執念5282021-01-16
  • IOSiOS中MD5加密算法的介紹和使用

    iOS中MD5加密算法的介紹和使用

    MD5加密是最常用的加密方法之一,是從一段字符串中通過相應特征生成一段32位的數字字母混合碼。對輸入信息生成唯一的128位散列值(32個字符)。這篇文...

    LYSNote5432021-02-04
  • IOSiOS開發技巧之狀態欄字體顏色的設置方法

    iOS開發技巧之狀態欄字體顏色的設置方法

    有時候我們需要根據不同的背景修改狀態欄字體的顏色,下面這篇文章主要給大家介紹了關于iOS開發技巧之狀態欄字體顏色的設置方法,文中通過示例代碼...

    夢想家-mxj8922021-05-10
  • IOSiOS自定義UICollectionViewFlowLayout實現圖片瀏覽效果

    iOS自定義UICollectionViewFlowLayout實現圖片瀏覽效果

    這篇文章主要介紹了iOS自定義UICollectionViewFlowLayout實現圖片瀏覽效果的相關資料,需要的朋友可以參考下...

    jiangamh8882021-01-11
  • IOS詳解iOS中多個網絡請求的同步問題總結

    詳解iOS中多個網絡請求的同步問題總結

    這篇文章主要介紹了詳解iOS中多個網絡請求的同步問題總結,小編覺得挺不錯的,現在分享給大家,也給大家做個參考。一起跟隨小編過來看看吧...

    liang199111312021-03-15
  • IOSiOS實現控制屏幕常亮不變暗的方法示例

    iOS實現控制屏幕常亮不變暗的方法示例

    最近在工作中遇到了要將iOS屏幕保持常亮的需求,所以下面這篇文章主要給大家介紹了關于利用iOS如何實現控制屏幕常亮不變暗的方法,文中給出了詳細的...

    隨風13332021-04-02
  • IOSiOS中滑動控制屏幕亮度和系統音量(附加AVAudioPlayer基本用法和Masonry簡單使用)

    iOS中滑動控制屏幕亮度和系統音量(附加AVAudioPlayer基本用法和

    這篇文章主要介紹了iOS中滑動控制屏幕亮度和系統音量(附加AVAudioPlayer基本用法和Masonry簡單使用)的相關資料,需要的朋友可以參考下...

    CodingFire13652021-02-26
  • IOSiOS中UILabel實現長按復制功能實例代碼

    iOS中UILabel實現長按復制功能實例代碼

    在iOS開發過程中,有時候會用到UILabel展示的內容,那么就設計到點擊UILabel復制它上面展示的內容的功能,也就是Label長按復制功能,下面這篇文章主要給大...

    devilx12792021-04-02
主站蜘蛛池模板: 五月天一区二区 | 99精品视频在线观看 | 欧美一区二区三区四区不卡 | 欧美午夜精品一区二区三区电影 | 成人综合免费视频 | 日韩精品视频久久 | 亚洲成人第一网站 | 欧美伊人 | 91在线网站 | 国产目拍亚洲精品99久久精品 | 成人av网站在线观看 | 久久国产精品一区二区 | 精品日韩一区二区三区 | 国产精品一区一区三区 | 久久久久久夜精品精品免费 | 欧美不卡 | 九一视频在线观看 | 日本在线视频一区二区 | 国产激情视频 | 求av网址 | 亚洲欧美综合精品久久成人 | 国产精品久久久久久亚洲调教 | 亚洲国产一区二区三区精品 | 成人免费观看高清视频 | 中文字幕超清在线免费 | 久久综合久久久 | 久久一精品 | 欧美精品一区二区三区四区五区 | 国产精品中文字幕在线观看 | 天天摸天天干 | 午夜私人影院在线观看 | 国产成人精品一区二区三区视频 | 综合久久综合 | 免费观看福利视频 | 国产精品日本一区二区不卡视频 | 国产精品影视在线观看 | 欧美国产激情二区三区 | 成人av一级片 | 日本天天操 | 亚洲国产区 | 久久69精品久久久久久久电影好 |