我有一个带有以下文字的通知徽章:
<View style={styles.notificationBadge}>
<Text style={styles.notificationText}>
notification
</Text>
</View>
当我在iOS中进行测试时,它可以正常工作并显示文本。但是,当我在Android中进行测试时,什么也没出现。像这样:
以下是通知徽章和文本的样式:
notificationBadge: {
backgroundColor: '#23CCA3',
borderRadius: 15,
justifyContent: 'center',
alignContent: 'center',
padding: 0,
marginBottom: 3,
alignSelf: 'center',
width: 24,
height: 24
},
notificationText: {
alignSelf: 'center',
textAlign: 'center',
fontSize: 12,
fontWeight: 'bold',
lineHeight: 0,
color: '#fff',
marginTop: 0
}
如果您有任何解决办法的想法,请告诉我。
答案 0 :(得分:1)
由于lineHeight为零,因此未显示文本。试试这种风格:
result = session.run("MATCH (n:person {tag1: 'Person1'})"
+ "RETURN [(n)-->(b) WHERE b:type1 | m.tag2]")