除了9 Pie,我有一个可以在每个Android版本上运行的手机隔断应用程序。 应用已在Android 8中使用登录凭据登录,但无法在android 9上运行
const NO_WIDTH_SPACE = ''; // This is a special char you should copy and paste, not an empty string !
const Example = () => {
const highlight = string =>
string.split(' ').map((word, i) => (
<Text key={i}>
<Text style={styles.highlighted}>{word} </Text>
{NO_WIDTH_SPACE}
</Text>
));
return (
<Text>
Some regular text {highlight('with some properly highlighted text')}
</Text>
);
}
const styles = StyleSheet.create({
highlighted: {
backgroundColor: 'yellow',
},
});
与Android 9配合使用的应用程序需要minSdkVersion为17。我的已经有19个。 TargetSdkVersion是28。