- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
ScrollView 可以在 iOS 模拟器上运行,但当它实际在设备上的 Exponent 上运行时它不起作用。触摸释放后它会回到顶部。我不确定这是我的代码的问题还是 React Native 或 Exponent 方面的错误。以下是我的环境的详细信息:
native 版本:0.41
指数版本:14
Exponent 应用链接:
https://exp.host/@prez/hairapp
在 iOS 模拟器上工作的 ScrollView 演示:
https://www.youtube.com/watch?v=3VH-6a-sMok
主要.js
import Exponent from 'exponent';
import React from 'react';
import {AppRegistry, Text, Button, View, ScrollView} from 'react-native';
import {StackNavigator} from 'react-navigation';
import Calendar from './modules/calendar';
class CalendarView extends React.Component {
static navigationOptions = {
title: 'Calendar'
}
render() {
return (
<ScrollView>
<Calendar/>
</ScrollView>
)
}
}
const SimpleApp = StackNavigator({
Home: {
screen: CalendarView
}
});
Exponent.registerRootComponent(SimpleApp);
./modules/calendar/index.js
import React, {Component} from 'react';
import {Text, View, StyleSheet} from 'react-native';
import moment from 'moment';
export default class Calendar extends Component {
state = {
reservations: [
{
hour: '2017-02-17 00:00',
duration: 120
}, {
hour: '2017-02-17 02:00',
duration: 60
}, {
hour: '2017-02-17 03:00',
duration: 120
}, {
hour: '2017-02-17 05:00',
duration: 180
}, {
hour: '2017-02-17 08:00',
duration: 120
}
]
}
generateIntervalHours() {
let hours = [];
// interval has been imported from database configuration, set in minutes
const interval = 60;
// current set day, date set only for test purposes
let it = moment('2017-02-17').hours(0).minutes(0);
const itEnd = moment(it).hours(23).minutes(59);
while (it < itEnd) {
hours.push(moment(it));
it.add(interval, 'minutes');
}
return hours;
}
// Function to display hours next to lines/events. Displaying hours and events must be
// seperated because the line starts in the middle of the hour text and ends in the
// middle of the next hours text so it would be not possible to display hour and event/line
// as a single row. Former event block would have to overlay next block to reach middle of the text.
displayHours = () => (this.generateIntervalHours().map(item => (
<View key={item.format('HH:mm')} style={styles.hours}>
<Text style={{
color: 'rgb(107, 108, 109)',
fontSize: 12
}}>{item.format('HH:mm')}</Text>
</View>
)))
// Function to display lines/events next to hours
displayTimetable = () => (this.generateIntervalHours().map(hour => {
const {reservations} = this.state;
// test current hour if there is reservation
// that start or lasts during this hour
const slot = reservations.find(res => {
const startH = moment(res.hour, 'YYYY-MM-DD HH:mm');
const endH = moment(startH).add(res.duration, 'minutes');
return (hour >= startH && hour < endH);
});
// no reservation starting with the hour tested
// no reservation that lasts during the hour tested
// View with upper border line will be displayed
// what says that nothing is scheduled for this hour
if (typeof slot == 'undefined') {
return (<View key={hour.format('HH:mm')} style={[
styles.timetable, {
height: 60
}
]}/>);
// reservation found that lasts during the tested hour
// nothing to display
} else if (hour.format('YYYY-MM-DD HH:mm') != slot.hour) {
return null;
// reservation found with starting hour as tested hour
// View with height set to duration will be displayed
} else {
return <View key={hour.format('HH:mm')} style={[
styles.timetable, {
height: slot.duration,
backgroundColor: 'rgb(32, 127, 227)'
}
]}/>
};
}))
render() {
return (
<View style={styles.container}>
<View>
{this.displayHours()}
</View>
<View style={styles.timetablePadding}>
{this.displayTimetable()}
</View>
</View>
);
}
}
const styles = StyleSheet.create({
container: {
flex: 1,
marginLeft: 10,
marginTop: 10,
marginRight: 10,
flexDirection: 'row'
},
timetablePadding: {
flex: 1,
paddingTop: 10
},
hours: {
marginBottom: 40,
// borderWidth: 1,
// borderRadius: 2,
// borderColor: '#ddd',
marginRight: 10,
height: 20,
width: 50,
justifyContent: 'center'
},
timetable: {
flexDirection: 'row',
//borderWidth: 1,
borderRadius: 2,
//borderColor: '#ddd',
borderTopColor: 'rgb(238, 239, 240)',
borderTopWidth: 1,
borderBottomWidth: 1,
borderBottomColor: 'white'
},
line: {
flex: 1,
height: 1,
backgroundColor: 'black'
}
});
最佳答案
它在设备上重新安装 Exponent 后有效。重装前后版本相同。
关于ios - React Native,iOS - ScrollView 在设备上不起作用,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/42321257/
我正在尝试创建一个类似于 BBC 新闻 native 应用程序的布局(使用known.js);一个垂直的ScrollView,其中有许多水平的ScrollView。我已经“工作”到了一切都渲染并且水平
我正在尝试创建一个类似于 BBC 新闻 native 应用程序的布局(使用known.js);一个垂直的ScrollView,其中有许多水平的ScrollView。我已经“工作”到了一切都渲染并且水平
我已经为以下问题寻找了很多答案,但没有找到合适的解决方案(也不是“不可能”)。我不想要双向 ScrollView! 我想要的只是拥有这样的东西: 如果我这样做(具有所需的布局属性),我会得到我的
我想使用 famo.us 标准 Scrollview但是有一个以不同速度滚动的背景图像以产生视差效果。 我想知道是否有一种方法可以连接到事件流,或者以某种方式将 Scrollviews 位置通过管道传
初始化程序中有一个带有 ScrollView(alwaysBounceVertical: false) 的属性,但我似乎找不到它了。 有谁知道如何禁用 SwiftUI ScrollView 上的垂直弹
在你说之前 “Google 说不要这样做” 请阅读我的所有问题!! 布局: ScrollView -> RelativeLayout -> ScrollView -> RelativeLayout 第
我想在 Windows 7 上创建一种体验(使用触摸),我可以在其中拥有一个只能垂直滚动的外部 ScrollViewer(它是屏幕的大小)。在那个 ScrollViewer 中,我将有几个其他的 Sc
我知道 Google 的人要求我们不要将 Scrollable View 放在另一个 Scrollable View 中,但他们是否有任何官方声明指示我们不要这样做? 最佳答案 试试这个 注意:这里
更新Xcode11 beta3后,我发现scrollview内部 View 的阴影会在边界处被切断,但在Xcode11 beta2中还可以。我只是使用底部填充来修复它,但我认为这不是一个好的解决方案。
我的 wpf 应用程序的结构如下: 我的目标是,如果 DataGrid 超过屏幕的高度来使用它自己的 Scrollviewer。目前只使用外部的 S
我在其他应用程序中使用了 ScrollView,只添加了 style={styles.container}与风格。然而,在这个应用程序中,我正在创建我的风格 alignItems:'flex-star
这是我的布局 xml。 ... 我已经尝试过此链接中的解决方案: ScrollView Inside ScrollVie
有没有办法在 nativescript 的 ScrollView 上隐藏滚动指示器?我试过 scrollBars='none' 和 css overflow='hidden' 但它不能同时工作。谢谢
所以我有一个 ScrollView ,里面有一个 TextView 。当文本的String长于屏幕宽度时,它只是在下一行中移动。我想通过在 ScrollView 中添加 HorizontalScr
我正在尝试在 android 的水平 ScrollView 中创建一个水平 ScrollView 。第一个水平 ScrollView 工作正常。当我尝试滚动时,第二个水平 ScrollView 不起作
我在同一布局中创建了两个 ScrollView。你可以说一个平行的 ScrollView 。我想手动滚动一个 ScrollView ,作为响应,另一个 ScrollView 应该以完全相同的方式滚动。
我在 android 中设计 UI,我在另一个 HorizontalScrollView 中有一个 HorizontalScrollView。但是,子 HorizontalScrollVi
我在另一个 ScrollView 中有 ScrollView 。我想滚动内部 ScrollView ,但外部 ScrollView 只滚动。如何解决这个问题? 谢谢。 最佳答案 sv01 =
我有两个 UIScrollView,如果用户在 ScrollView 中滚动,我想让另一个 ScrollView 也滚动。我已经阅读了一个解决方案,涉及将 pangesturerecognizer 从
我以编程方式创建了 UIScrollView 并向其中添加了多个 button。 它运行良好,没有任何问题。 但我需要通过复制先前 ScrollView 的内容来创建另一个 ScrollView 。
我是一名优秀的程序员,十分优秀!