在 React Native 中按下时更改按钮样式

IT技术 javascript reactjs react-native
2021-03-29 00:21:06

我希望我的应用程序中按钮的样式在按下时发生变化。做这个的最好方式是什么?

5个回答

使用TouchableHighlight.

这里有一个例子:

在此处输入图片说明

import React from 'react';
import { TouchableHighlight, View, Text, StyleSheet } from 'react-native';

export default function Button() {

  var [ isPress, setIsPress ] = React.useState(false);

  var touchProps = {
    activeOpacity: 1,
    underlayColor: 'blue',                               // <-- "backgroundColor" will be always overwritten by "underlayColor"
    style: isPress ? styles.btnPress : styles.btnNormal, // <-- but you can still apply other style changes
    onHideUnderlay: () => setIsPress(false),
    onShowUnderlay: () => setIsPress(true),
    onPress: () => console.log('HELLO'),                 // <-- "onPress" is apparently required
  };

  return (
    <View style={styles.container}>
      <TouchableHighlight {...touchProps}>
        <Text>Click here</Text>
      </TouchableHighlight>
    </View>
  );
}

var styles = StyleSheet.create({
  container: {
    flex: 1,
    justifyContent: 'center',
    alignItems: 'center',
  },
  btnNormal: {
    borderColor: 'blue',
    borderWidth: 1,
    borderRadius: 10,
    height: 30,
    width: 100,
  },
  btnPress: {
    borderColor: 'blue',
    borderWidth: 1,
    height: 30,
    width: 100,
  }
});
只是一个注释,<TouchableHeighlight>它还必须包含一个onPress处理程序才能工作(从 React Native v0.34 开始)
2021-05-26 00:21:06
不知道onHideUnderlay& onShowUnderlay! 一直在谷歌上搜索以找出如何完成这样的事情。谢谢!
2021-05-26 00:21:06
使用这种方法,样式仅在您将手指放在按钮上后才会改变……它不会仅在轻按时改变。
2021-06-01 00:21:06
这真的很有帮助!onHideUnderlay&onShowUnderlay方法与onPress. 这让我有点困惑。
2021-06-06 00:21:06
重要的是要注意,这underlayColor需要与activeOpacity={1}此一起工作。
2021-06-07 00:21:06

使用props:

underlayColor

<TouchableHighlight style={styles.btn} underlayColor={'gray'} />

https://facebook.github.io/react-native/docs/touchablehighlight.html

underlayColor会以轻微的不透明度显示。设置activeOpacity为 0 将完全忽略应用于未按下状态的任何样式。
2021-06-02 00:21:06

React Native 现在提供了一个新Pressable组件,可以检测新闻交互的各个阶段。因此,为了更改组件的颜色(通常是任何样式),请参考以下示例:

<Pressable
  style={({ pressed }) => [{ backgroundColor: pressed ? 'black' : 'white' }, styles.btn ]}>
  {({ pressed }) => (
    <Text style={[{ color: pressed ? 'white' : 'black' }, styles.btnText]}>
      {text}
    </Text>
  )}
</Pressable>

代码分解:

style={({ pressed }) => [{ backgroundColor: pressed ? 'black' : 'white' }, styles.btn ]}

这里 style 属性接收反映是否Pressable被按下的pressed(boolean)并返回一个样式数组。

{({ pressed }) => (
    <Text style={[{ color: pressed ? 'white' : 'black' }, styles.btnText]}>
      {text}
    </Text>
)}

这里也可以修改文本样式,因为组件pressed的子项也可以访问Pressable

这是ES6 中Besart Hoxhaj的回答。当我回答这个问题时,React Native 是 0.34。

 import React from "react";
 import { TouchableHighlight, Text, Alert, StyleSheet } from "react-native";

 export default class TouchableButton extends React.Component {
constructor(props) {
    super(props);
    this.state = {
        pressed: false
    };
}
render() {
    return (
        <TouchableHighlight
            onPress={() => {
                // Alert.alert(
                //     `You clicked this button`,
                //     'Hello World!',
                //     [
                //         {text: 'Ask me later', onPress: () => console.log('Ask me later pressed')},
                //         {text: 'Cancel', onPress: () => console.log('Cancel Pressed'), style: 'cancel'},
                //         {text: 'OK', onPress: () => console.log('OK Pressed')},
                //     ]
                // )
            }}
            style={[
                styles.button,
                this.state.pressed ? { backgroundColor: "green" } : {}
            ]}
            onHideUnderlay={() => {
                this.setState({ pressed: false });
            }}
            onShowUnderlay={() => {
                this.setState({ pressed: true });
            }}
        >
            <Text>Button</Text>
        </TouchableHighlight>
    );
}
}

const styles = StyleSheet.create({
button: {
    padding: 10,
    borderColor: "blue",
    borderWidth: 1,
    borderRadius: 5
}
});

使用类似的东西:

class A extends React.Component {
  constructor(props){
    super(props);
    this.state = {
      onClicked: false
    }
    this.handlerButtonOnClick = this.handlerButtonOnClick.bind(this);
  }
  handlerButtonOnClick(){
    this.setState({
       onClicked: true
    });
  }
  render() {
    var _style;
    if (this.state.onClicked){ // clicked button style
      _style = {
          color: "red"
        }
    }
    else{ // default button style
      _style = {
          color: "blue"
        }
    }
    return (
        <div>
            <button
                onClick={this.handlerButtonOnClick}
                style={_style}>Press me !</button>
        </div>
    );
  }
}

如果您使用外部 CSS,您可以使用 className 代替 style 属性:

render() {
    var _class = "button";
    var _class.concat(this.state.onClicked ? "-pressed" : "-normal") ;
    return (
        <div>
            <button
                onClick={this.handlerButtonOnClick}
                className={_class}>Press me !</button>
        </div>
    );
  }

如何应用 CSS 并不重要。密切关注“handlerButtonOnClick”方法。

当状态改变时,组件被重新渲染(再次调用“render”方法)。

祝你好运 ;)

react-native 没有按钮组件。它使用 touchableHighlight、touchableNativeFeedback 等。
2021-05-26 00:21:06
问题不在于 react-native 与否……问题是要了解 react 如何以及何时在组件上应用样式。流程总是相同的:handleEvent -> handler -> setState -> render。我的回答是关于这个流程,而不是关于 react-native
2021-06-04 00:21:06
更新 - React Native<Button />0.37 版本中添加了该组件
2021-06-05 00:21:06