как я могу вызвать функцию, когда я нажимаю кнопку главного экрана в реагировать родной - PullRequest
0 голосов
/ 26 декабря 2018

У меня есть приложение для воспроизведения звука, и я хочу, чтобы оно прекращало воспроизведение текущей песни, когда пользователь нажимает кнопку главного экрана в Android, фактически звук воспроизводится при нажатии на главный экран.

Я использую componentWillUnmount длякнопка «назад», но для кнопки «Главный экран» я не знаю, что мне использовать?

1 Ответ

0 голосов
/ 26 декабря 2018

Вам нужен пользователь AppState , который поможет вам определить, в каком состоянии находится ваше приложение.Вы можете выполнять свою логику, когда State имеет значение background

Вот пример кода:

import React, {Component} from 'react'
import {AppState, Text} from 'react-native'

class AppStateExample extends Component {

  state = {
    appState: AppState.currentState
  }

  componentDidMount() {
    AppState.addEventListener('change', this._handleAppStateChange);
  }

  componentWillUnmount() {
    AppState.removeEventListener('change', this._handleAppStateChange);
  }

  _handleAppStateChange = (nextAppState) => {
    if (this.state.appState.match(/inactive|background/) && nextAppState === 'active') {
      console.log('App has come to the foreground!')
    }
    this.setState({appState: nextAppState});
  }

  render() {
    return (
      <Text>Current state is: {this.state.appState}</Text>
    );
  }

}

App States

active - The app is running in the foreground

background - The app is running in the background. The user is either:
in another app
on the home screen
[Android] on another Activity (even if it was launched by your app)

inactive - This is a state that occurs when transitioning between foreground & background, and during periods of inactivity such as entering the Multitasking view or in the event of an incoming call
...