反应原生TouchableOpacity onPress在某些Android设备上不起作用

问题描述

我在登录屏幕上有本机反应。登录按钮在某些屏幕上不起作用。请检查下面的代码

<TouchableOpacity style={{
        width: 136,marginTop: responsiveHeight(5),borderRadius: 8,height: 50,backgroundColor: '#0178f2',justifyContent: 'center',}}
    disabled={loading ? true : false}
    onPress={() => {
        this._login(this.props.navigation);
    }}
>
    {loading ? (
        <ActivityIndicator size="large" color={'white'} />
    ) : (
        <Text
        uppercase={false}
        style={{
            fontFamily: 'product',color: 'white',alignSelf: 'center',fontSize: responsiveFontSize(1.5),}}>
        Login
        </Text>
    )}
</TouchableOpacity>

解决方法

暂无找到可以解决该程序问题的有效方法,小编努力寻找整理中!

如果你已经找到好的解决方法,欢迎将解决方案带上本链接一起发送给小编。

小编邮箱:dio#foxmail.com (将#修改为@)