Toast,A toast provides simple feedback about an operation in a small popup. 对于操作提供一个简单反馈信息. 官网链接:http://developer.android.com/reference/android/widget/Toast.html 常量有两个: LENGTH_LONG 显示稍微长点的时间,大概在5秒左右LENGTH_SHORT 显示稍微短点的时候,大概在3秒左右 比较简单的使用 代码: Toas
要实现通知中心功能,首先要创建一个游戏物体,在上面挂载GUITeture和GUIText脚本.注意GUITexture和GUIText脚本的顺序,GUITexture在前,GUIText在后,否则GUITexture会将GUIText遮挡住. 接着设置Position属性,讲Position的X属性设置为1.2,Y设置为0.9,这样就将物体设置为屏幕之外靠近右上角的位置. 下面给物体挂载脚本,实现通知功能. using UnityEngine; using System.Collections;
Toast can show the help/prompts to user. There have five effect of toast as bellow: 1.default effect: code: Toast.makeText(getApplicationContext(), "默认Toast样式", Toast.LENGTH_SHORT).show(); 2.custom position effect: code: toast = Toast.makeText(g