-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.android.js
240 lines (234 loc) · 5.73 KB
/
index.android.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
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
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
/**
* Sample React Native App
* https://github.com/facebook/react-native
*/
import React from 'react';
import {
AppRegistry,
StyleSheet,
Text,
View,
ToastAndroid,
AlertIOS,
Platform
} from 'react-native';
const AndroidOS = "android";
import Button from './src/component/Button';
import ImageLoading from './src/main/ImageLoading';
import DrawerLayoutLoading from './src/main/DrawerLayoutLoading';
import ListViewLoading from './src/main/ListViewLoading';
import ModalLoading from './src/main/ModalLoading';
import PickerLoading from './src/main/PickerLoading';
import NavigatorLoading from './src/main/navigator/NavigatorLoading';
import ProgressBarLoading from './src/main/ProgressLoading';
import RefreshControlLoading from './src/main/RefreshControlLoading';
import ScrollViewLoading from './src/main/ScrollViewLoading';
import SliderLoading from './src/main/SliderLoading';
import StatusBarLoading from './src/main/StatusBarLoading';
import TextInputLoading from './src/main/TextInputLoading';
import ToolbarAndroidLoading from './src/main/ToolbarAndroidLoading';
import ViewPagerAndroidLoading from './src/main/ViewPagerAndroidLoading';
import AnimatedLoading from './src/main/AnimatedLoading';
import AsyncStorageLoading from './src/main/AsyncStorageLoading';
import LinkLoading from './src/main/LinkLoading';
import NetInfoLoading from './src/main/NetInfoLoading';
import TimePickerAndroidLoading from './src/main/TimePickerLoading';
import VibrationLoading from './src/main/VibrationLoading';
class demo extends React.Component {
fetchData = ()=> {
//禁用按钮
ToastAndroid.show("ToastTest", ToastAndroid.SHORT);
this.refs.btnConfirm._disable();
this._timer = setTimeout(()=> {
this.refs.btnConfirm._enable();
}, 3000);
//获取完数据启用按钮
};
fetchDataOther = (enableCallBack)=> {
this._timer = setTimeout(()=> {
enableCallBack();//带括号表示立即执行
}, 3000);
};
onPress = ()=> {
if (Platform.OS === AndroidOS) {
ToastAndroid.show("click Android", ToastAndroid.SHORT);
} else {
AlertIOS.alert("click IOS");
}
};
componentWillUnMount() {
this._timer && clearTimeout(this._timer);
}
render() {
return (
<View style={styles.container}>
<View style={styles.title_bar}/>
<VibrationDemo/>
</View>
);
}
}
var VibrationDemo = React.createClass({
render(){
return(
<VibrationLoading/>
);
}
});
var TimePickerAndroidDemo = React.createClass({
render(){
return(
<TimePickerAndroidLoading/>
);
}
});
var NetInfoDemo = React.createClass({
render(){
return(
<NetInfoLoading/>
);
}
});
var LinkingDemo = React.createClass({
render(){
return(
<LinkLoading/>
);
}
});
var AsyncStorageDemo = React.createClass({
render(){
return(
<AsyncStorageLoading/>
);
}
});
var AnimatedDemo = React.createClass({
render(){
return(
<AnimatedLoading/>
);
}
});
var ViewPagerAndroidDemo = React.createClass({
render(){
return (
<ViewPagerAndroidLoading/>
)
}
});
var ToolbarAndroidDemo = React.createClass({
render(){
return (
<ToolbarAndroidLoading/>
)
}
});
var StatusBarDemo = React.createClass({
render(){
return (
<View style={styles.container}>
<StatusBarLoading/>
<View style={styles.title_bar}/>
</View>
)
}
});
var TextInputDemo = React.createClass({
render(){
return (
<TextInputLoading/>
)
}
});
var SliderDemo = React.createClass({
render(){
return (
<SliderLoading/>
)
}
});
var ScrollViewDemo = React.createClass({
render(){
return (
<ScrollViewLoading/>
)
}
});
var RefreshControlDemo = React.createClass({
render(){
return (
<RefreshControlLoading/>
)
}
});
var ProgressDemo = React.createClass({
render(){
return (
<ProgressBarLoading/>
)
}
});
var NavigatorDemo = React.createClass({
render(){
return (
<NavigatorLoading/>
)
}
}
);
var ModalDemo = React.createClass({
render()
{
return (
<ModalLoading style={{flex:1}}/>
)
}
});
var ListView = React.createClass({
render(){
return (
<ListViewLoading style={styles.listView}/>
)
}
});
var ButtonView = React.createClass({
render(){
return (
<View style={{flex:1}}>
<Button ref="btnConfirm" text="确定" backgroundColor="red" onPress={this.fetchData}/>
<Button ref="btnCancel" text="取消" backgroundColor="blue" onPress={this.fetchDataOther}/>
<ImageLoading onPress={this.onPress}/>
</View>
)
}
});
const styles = StyleSheet.create({
container: {
flex: 1,
flexDirection: 'column',
backgroundColor: '#F5FCFF',
},
title_bar: {
flexDirection: 'row',
alignItems: 'center',
height: 56,
backgroundColor: '#fa3214'
},
listView: {
flex: 1,
flexDirection: 'column',
justifyContent: 'center'
},
welcome: {
fontSize: 20,
textAlign: 'center',
margin: 10,
},
instructions: {
textAlign: 'center',
color: '#333333',
marginBottom: 5,
},
});
AppRegistry.registerComponent('demo', () => demo);