前言 我是一个普通本科出身的Android程序员,我的学校也不过就是一个普通二本。 嗯,我的学弟学妹们也是一样的,都是普通二本。但是和我不同的是,现在的社会越来越浮躁了,浮躁的让人沉不下心认真做事,让人忍不住去想各种有的没的。 比如我的这些学弟学妹们。我已经不止一次收到来自他们的私信了,他们问的内容 ...
分类:
其他好文 时间:
2021-06-25 16:44:50
阅读次数:
0
1.主窗口添加布局. 都知道在QWidget中,进行布局很简单,直接类似如下即可: QPushButton *firstButton = new QPushButton(); QPushButton *secondButton = new QPushButton(); QPushButton *la ...
分类:
其他好文 时间:
2021-06-24 18:34:13
阅读次数:
0
android studio在创建项目的时候,有个选项:Use legacy android.support libraries 这个选项就是使用v7包,如果不选择的话应该是androidx。 ...
分类:
移动开发 时间:
2021-06-24 18:31:59
阅读次数:
0
Thread.sleep()是java的方法, 可能会抛出InterruptedException异常, 并且可能会被中断; SystemClock.sleep()是Android的方法,不会抛出异常, 并且无论如何都会让当前线程休眠指定的时间。 源码分析见 https://blog.csdn.ne ...
分类:
其他好文 时间:
2021-06-24 18:29:08
阅读次数:
0
头文件#include<QTextCodec>在函数中添加。 out.setCodec(QTextCodec::codecForName("UTF-8"));//设定编码问题。 QString k="学号 "; QString k1="姓名 "; QString k2="班级 "; QString ...
分类:
其他好文 时间:
2021-06-24 18:19:19
阅读次数:
0
1.sdk:搭配android studio 安装 2.appium desktop 安装 Android命令 adb logcat adb logcat | grep -i xueqiu过滤特定app数据 adb logcat | grep -i xueqiu | les 缩小过滤范围 ...
分类:
移动开发 时间:
2021-06-24 17:53:34
阅读次数:
0
使用Android studio自带的profiler功能生成trace文件 分析profiler生成trace文件 有时需要分析app冷启动时间耗时情况,单独使用profiler功能生成trace文件就有点不好操作,可以借助代码生成trace文件,然后再通过profiler功能进行分析 //开始t ...
分类:
移动开发 时间:
2021-06-24 17:49:12
阅读次数:
0
QFile file("E:\\community.txt"); QTextStream in(&file); in.setCodec(QTextCodec::codecForName("UTF-8"));//让文件以UTF-8的方式译码。 if(!file.open(QIODevice::Read ...
分类:
其他好文 时间:
2021-06-24 17:42:59
阅读次数:
0
import android.annotation.TargetApi; import android.content.Context; import android.content.res.TypedArray; import android.os.Build; import android.ut ...
分类:
移动开发 时间:
2021-06-22 17:57:53
阅读次数:
0
要想模仿QQ登录界面的3D旋转,我们需要学习Rotation和Flipable.由于没找到QQ的资源图,所以我们以两个图片为例模仿QQ的3D旋转,如下图所示: 最终效果如下所示: 1.Rotation介绍 Rotation类型提供了一种通过旋转类型转换旋转Item的方法。 它允许(z轴)相对于任意点 ...
分类:
其他好文 时间:
2021-06-22 17:46:09
阅读次数:
0