它揭示了如何将本地 ToastAndroid 模块作为一个 JS 模块。它有一个名为 showText
的函数,其拥有的参数如下所示:
字符串消息:将文本传递给 toast 的字符串
int 持续期:toast 的持续期。可能是 ToastAndroid.SHORT
或 ToastAndroid.LONG
static show(message: string, duration: number)
SHORT: MemberExpression
LONG: MemberExpression
"use strict"; var React = require("react-native"); var { StyleSheet, Text, ToastAndroid, TouchableWithoutFeedback } = React; var UIExplorerBlock = require("UIExplorerBlock"); var UIExplorerPage = require("UIExplorerPage"); var ToastExample = React.createClass({ statics: { title: "Toast Example", description: "Toast Example", }, getInitialState: function() { return {}; }, render: function() { return ( <UIExplorerPage title="ToastAndroid"> <UIExplorerBlock title="Simple toast"> <TouchableWithoutFeedback onPress={() => ToastAndroid.show("This is a toast with short duration", ToastAndroid.SHORT)}> <Text style={styles.text}>Click me.</Text> </TouchableWithoutFeedback> </UIExplorerBlock> <UIExplorerBlock title="Toast with long duration"> <TouchableWithoutFeedback onPress={() => ToastAndroid.show("This is a toast with long duration", ToastAndroid.LONG)}> <Text style={styles.text}>Click me too.</Text> </TouchableWithoutFeedback> </UIExplorerBlock> </UIExplorerPage> ); }, }); var styles = StyleSheet.create({ text: { color: "black", }, }); module.exports = ToastExample;
React 组件封装平台DrawerLayout(仅适用于Android)。Drawer(通常用于导航)呈现renderNavigationView渲染导航视图和直接子级...
jQuery Mobile tap 事件jQuery Mobile 事件实例 轻击 p 元素并隐藏它:$("p").on("tap",function(){ $(this).hide();});定义和...
jQuery Mobile swiperight 事件jQuery Mobile 事件实例 在元素p上水平向右滑动隐藏它:$("p").on("swiperight",function(){ $(t...
一下代码显示如何记录信息。import android.app.Activity;import android.os.Bundle;import android.util.Log;public class Main...
Android 教程Android 是一个开源的,基于 Linux 的移动设备操作系统,主要使用于移动设备,如智能手机和平板电脑。Android 是由...