React Nativeアプリでハイパーリンクを表示するにはどうすればよいですか?
例えば
<a href="https://google.com>Google</a>
React Nativeアプリでハイパーリンクを表示するにはどうすればよいですか?
例えば
<a href="https://google.com>Google</a>
回答:
このようなもの:
<Text style={{color: 'blue'}}
onPress={() => Linking.openURL('http://google.com')}>
Google
</Text>
Linking
React Nativeにバンドルされているモジュールを使用します。
this.props.url
の代わりに'http://google.com'
(無括弧必要を)
import { Linking } from 'react-native';
文書にありますか?
<Text>Some paragraph <Text onPress=...>with a link</Text> inside</Text>
選択した回答はiOSのみを指します。どちらのプラットフォームでも、次のコンポーネントを使用できます。
import React, { Component, PropTypes } from 'react';
import {
Linking,
Text,
StyleSheet
} from 'react-native';
export default class HyperLink extends Component {
constructor(){
super();
this._goToURL = this._goToURL.bind(this);
}
static propTypes = {
url: PropTypes.string.isRequired,
title: PropTypes.string.isRequired,
}
render() {
const { title} = this.props;
return(
<Text style={styles.title} onPress={this._goToURL}>
> {title}
</Text>
);
}
_goToURL() {
const { url } = this.props;
Linking.canOpenURL(url).then(supported => {
if (supported) {
Linking.openURL(this.props.url);
} else {
console.log('Don\'t know how to open URI: ' + this.props.url);
}
});
}
}
const styles = StyleSheet.create({
title: {
color: '#acacac',
fontWeight: 'bold'
}
});
これを行うには、Text
コンポーネントをでラップすることを強く検討しますTouchableOpacity
。ときTouchableOpacity
がタッチされるとフェードします(不透明度が低くなります)。これにより、テキストに触れたときにユーザーに即座にフィードバックが提供され、ユーザーエクスペリエンスが向上します。
のonPress
プロパティを使用TouchableOpacity
して、リンクを作成できます。
<TouchableOpacity onPress={() => Linking.openURL('http://google.com')}>
<Text style={{color: 'blue'}}>
Google
</Text>
</TouchableOpacity>
Linking
ます。import { Linking } from 'react-native';
const url="https://google.com"
<Text onPress={() => Linking.openURL(url)}>
{url}
</Text>
上記の応答に追加するもう1つの役立つメモは、いくつかのフレックスボックスのスタイルを追加することです。これにより、テキストが1行に保たれ、テキストが画面に重ならないようになります。
<View style={{ display: "flex", flexDirection: "row", flex: 1, flexWrap: 'wrap', margin: 10 }}>
<Text>Add your </Text>
<TouchableOpacity>
<Text style={{ color: 'blue' }} onpress={() => Linking.openURL('https://www.google.com')} >
link
</Text>
</TouchableOpacity>
<Text>here.
</Text>
</View>
React Nativeの場合、アプリでハイパーリンクを開くためのライブラリがあります。 https://www.npmjs.com/package/react-native-hyperlink
これに加えて、私はあなたがURLをチェックする必要があると思います、そして最良のアプローチは正規表現です。 https://www.npmjs.com/package/url-regex
リンクやその他の種類のリッチテキストを使用する場合、より包括的なソリューションは、React Native HTMLViewを使用することです。
文字列内に埋め込まれたリンクを使用して、この問題を今発見している人と私のハックな解決策を共有したいと思いました。リンクをインライン化しようとします文字列が入力されたときに動的にレンダリングして。
必要に応じて自由に調整してください。それは私たちの目的のために機能しています:
これは、https://google.comの表示例です。
Gistで見る:
https://gist.github.com/Friendly-Robot/b4fa8501238b1118caaa908b08eb49e2
import React from 'react';
import { Linking, Text } from 'react-native';
export default function renderHyperlinkedText(string, baseStyles = {}, linkStyles = {}, openLink) {
if (typeof string !== 'string') return null;
const httpRegex = /http/g;
const wwwRegex = /www/g;
const comRegex = /.com/g;
const httpType = httpRegex.test(string);
const wwwType = wwwRegex.test(string);
const comIndices = getMatchedIndices(comRegex, string);
if ((httpType || wwwType) && comIndices.length) {
// Reset these regex indices because `comRegex` throws it off at its completion.
httpRegex.lastIndex = 0;
wwwRegex.lastIndex = 0;
const httpIndices = httpType ?
getMatchedIndices(httpRegex, string) : getMatchedIndices(wwwRegex, string);
if (httpIndices.length === comIndices.length) {
const result = [];
let noLinkString = string.substring(0, httpIndices[0] || string.length);
result.push(<Text key={noLinkString} style={baseStyles}>{ noLinkString }</Text>);
for (let i = 0; i < httpIndices.length; i += 1) {
const linkString = string.substring(httpIndices[i], comIndices[i] + 4);
result.push(
<Text
key={linkString}
style={[baseStyles, linkStyles]}
onPress={openLink ? () => openLink(linkString) : () => Linking.openURL(linkString)}
>
{ linkString }
</Text>
);
noLinkString = string.substring(comIndices[i] + 4, httpIndices[i + 1] || string.length);
if (noLinkString) {
result.push(
<Text key={noLinkString} style={baseStyles}>
{ noLinkString }
</Text>
);
}
}
// Make sure the parent `<View>` container has a style of `flexWrap: 'wrap'`
return result;
}
}
return <Text style={baseStyles}>{ string }</Text>;
}
function getMatchedIndices(regex, text) {
const result = [];
let match;
do {
match = regex.exec(text);
if (match) result.push(match.index);
} while (match);
return result;
}
React Nativeからモジュールをリンクするインポート
import { TouchableOpacity, Linking } from "react-native";
それを試してみてください:-
<TouchableOpacity onPress={() => Linking.openURL('http://Facebook.com')}>
<Text> Facebook </Text>
</TouchableOpacity>