- 博客(14)
- 问答 (1)
- 收藏
- 关注
原创 使用unity开发抖音小游戏日志
第一点,unity2022的版本会强制下载tuanjie引擎,也就是国内本土化的unity引擎,但是不建议使用。接下来就是下载BGDT了,目前研究bgdt import setting中。第二点,text变成了textmeshpro,要使用。
2024-09-26 15:19:19
331
原创 unity使用ScrollRect和VerticalLayoutGroup制作listview产生的问题
问题:使用scrollRect.verticalNormalizedPosition = 0;UI无法显示全解决方法:LayoutRebuilder.ForceRebuildLayoutImmediate(scrollRect.GetComponent<RectTransform>());
2021-03-24 05:04:35
451
原创 JsonUtility.ToJson使用时注意事项
JsonUtility.ToJson使用时要注意的地方:1.自定义的类需要序列化;2.自定义类的变量public string name;不能写成public string name{get;set;},否则此变量无法序列化。using System;//引入[Serializable]//加上此处public class Per{ public string name;//此处不能写成public string name{get;set;},否则此变量无法序列化。
2021-03-10 23:17:13
1475
原创 Notification真机测试失败
log会出现这个信息,也不知道什么原因:W/NotificationManager: notify: id corrupted: sent 888, got back 0模拟器却没什么问题。有哪位大哥知道原因吗?
2018-11-13 17:55:28
374
原创 editText光标闪烁点击不出现软键盘
试了很多方法都无效,只有采用覆盖的方式,比如使用2个editText。后面无效的覆盖前面有效的,使之点击无效。下面是实例: <RelativeLayout android:layout_width="match_parent" android:layout_height="wrap_content"> ...
2018-10-15 14:09:53
560
转载 Java观察者模式
观察者模式:一对多,一更新多跟着更新。package zhgapp.ztd.com.rx_java.Test; /** * 观察者接口 * Created by Administrator on 2016-12-26. */ public interface Watcher { public void update(String str); } package zhgapp...
2018-09-24 15:04:42
128
转载 cc 生命周期(官方文档)
onEnable当组件的 enabled 属性从 false 变为 true 时,或者所在节点的 active 属性从 false 变为 true时,会激活 onEnable 回调。倘若节点第一次被创建且 enabled 为 true,则会在 onLoad 之后,start 之前被调用。onDisable当组件的 enabled 属性从 true 变为 false 时,或者所在节点的 ...
2018-09-21 21:20:05
248
转载 cocos creator 1.10 节点API
节点默认是激活的。除了在编辑器中切换节点的激活、关闭状态,也可以通过以下代码:this.node.active = true;假设父节点为 parentNode,子节点为 this.nodethis.node.parent = parentNode;或this.node.removeFromParent(false);parentNode.addChild(this.nod...
2018-09-21 21:19:05
425
原创 Android系统配置变更的两种情况
android:configChanges="orientation|screenSize|keyboardHidden"自动变更android:screenOrientation="portrait"限定为竖屏。
2018-09-15 23:34:52
258
原创 获取当前系统时间
String formatTime = DateFormat.getDateTimeInstance() .format(new Date(System.currentTimeMillis())); TextView m_TextView = findViewById(R.id.time_textView); m_TextVie...
2018-09-14 19:05:12
195
原创 Android系统版本在6.0+以上需要动态申请权限
在Androidmanifest.xml里申请过还不够,还需要在Mainactivity里动态申请。调试时报错有2种,不能创建父目录和连接超时。好用的框架有com.github.dfqin:grantor。依赖:implementation 'com.github.dfqin:grantor:2.1.0' SD卡和相机动态申请权限案例:private static fina...
2018-08-24 21:43:15
1387
空空如也
Android项目使用javax.script.*为什么会出错?
2018-10-20
TA创建的收藏夹 TA关注的收藏夹
TA关注的人