1. ホーム
  2. android

[解決済み] デフォルトのウェブブラウザでURLを開く

2022-07-08 08:50:11

質問

私はreact-nativeの初心者です。 url AndroidやiPhoneのChromeのようなデフォルトのブラウザ の両方で使用できます。

Androidでは、私が実現したい機能と同じように、インテントを介してURLを開くことができます。

何度も検索しましたが、結果は ディープクリンク .

どのように解決するには?

あなたは Linking .

docsからの例です。

class OpenURLButton extends React.Component {
  static propTypes = { url: React.PropTypes.string };
  handleClick = () => {
    Linking.canOpenURL(this.props.url).then(supported => {
      if (supported) {
        Linking.openURL(this.props.url);
      } else {
        console.log("Don't know how to open URI: " + this.props.url);
      }
    });
  };
  render() {
    return (
      <TouchableOpacity onPress={this.handleClick}>
        {" "}
        <View style={styles.button}>
          {" "}<Text style={styles.text}>Open {this.props.url}</Text>{" "}
        </View>
        {" "}
      </TouchableOpacity>
    );
  }
}

次のような例です。 エキスポ・スナック :

import React, { Component } from 'react';
import { View, StyleSheet, Button, Linking } from 'react-native';
import { Constants } from 'expo';

export default class App extends Component {
  render() {
    return (
      <View style={styles.container}>
       <Button title="Click me" onPress={ ()=>{ Linking.openURL('https://google.com')}} />
      </View>
    );
  }
}

const styles = StyleSheet.create({
  container: {
    flex: 1,
    alignItems: 'center',
    justifyContent: 'center',
    paddingTop: Constants.statusBarHeight,
    backgroundColor: '#ecf0f1',
  },
});