Edit on GitHub
style View#style
Edit on GitHub
"use strict";var React = require("react-native");var { StyleSheet, TabBarIOS, Text, View, } = React;var TabBarExample = React.createClass({ statics: { title: "<TabBarIOS>", description: "Tab-based navigation." }, getInitialState: function() { return { selectedTab: "redTab", notifCount: 0, presses: 0, }; }, _renderContent: function(color: string, pageText: string) { return ( <View style={[styles.tabContent, {backgroundColor: color}]}> <Text style={styles.tabText}>{pageText}</Text> <Text style={styles.tabText}>{this.state.presses} re-renders of the More tab</Text> </View> ); }, render: function() { return ( <TabBarIOS> <TabBarIOS.Item title="Blue Tab" selected={this.state.selectedTab === "blueTab"} onPress={() => { this.setState({ selectedTab: "blueTab", }); }}> {this._renderContent("#414A8C", "Blue Tab")} </TabBarIOS.Item> <TabBarIOS.Item systemIcon="history" badge={this.state.notifCount > 0 ? this.state.notifCount : undefined} selected={this.state.selectedTab === "redTab"} onPress={() => { this.setState({ selectedTab: "redTab", notifCount: this.state.notifCount + 1, }); }}> {this._renderContent("#783E33", "Red Tab")} </TabBarIOS.Item> <TabBarIOS.Item systemIcon="more" selected={this.state.selectedTab === "greenTab"} onPress={() => { this.setState({ selectedTab: "greenTab", presses: this.state.presses + 1 }); }}> {this._renderContent("#21551C", "Green Tab")} </TabBarIOS.Item> </TabBarIOS> ); }, });var styles = StyleSheet.create({ tabContent: { flex: 1, alignItems: "center", }, tabText: { color: "white", margin: 50, }, });module.exports = TabBarExample;
jQuery Mobile 按钮Mobile 应用程序是建立在您想要显示的简单的点击事物上。 在 jQuery Mobile 中创建按钮 在 jQuery Mobile 中...
jQuery Mobile 表格响应式表格响应式设计一般用于适配用户各种移动设备。我们只需要使用一个简单的类名,jQuery Mobile 就能根据...
当你写TextView android:id=@+id/text1 ..../它的意思是,“使用 text1 引用 TextView 的实例。 + 表示如果 text1 的id未定义为...
在Android中,屏幕的视图通常从XML文件加载。这些XML文件称为布局资源。例子下面显示了布局文件的示例?xml version=1.0 encoding...