package com.example.sevenzuoy; import android.app.Activity; import android.content.Intent; import android.os.Bundle; import android.util.Log; import a ...
分类:
其他好文 时间:
2020-05-19 10:54:05
阅读次数:
50
Mac 强制退出某个程序的方法 windows键盘:ctrl + alt + del, Mac 键盘:command+alt+esc,正常退出是 command+q 选中你要退出的程序,然后点击右下角的 Force Quit 即可。 查看活动监视器 打开 Activity Monitor,可以查看每 ...
分类:
系统相关 时间:
2020-05-18 16:11:13
阅读次数:
106
Activity学习 1. 什么是Activity Activity 提供窗口供应用在其中绘制界面。此窗口通常会填满屏幕,但也可能比屏幕小,并浮动在其他窗口上面。通常,一个 Activity 实现应用中的一个屏幕。例如,应用中的一个 Activity 实现“偏好设置”屏幕,而另一个 Activity ...
分类:
其他好文 时间:
2020-05-18 00:40:19
阅读次数:
65
private void tryFullScreen(boolean fullScreen) { if (activity instanceof AppCompatActivity) { ActionBar supportActionBar = ((AppCompatActivity) activi ...
分类:
移动开发 时间:
2020-05-16 16:57:50
阅读次数:
70
精准搜索资料的6个实用技巧 @https://mp.weixin.qq.com/s?__biz=MzA4ODE2OTIxMw==&mid=2653473896&idx=1&sn=525c8e6e3c87bc382c27f2ba9220ffed&chksm=8bf223fabc85aaecaeef87 ...
分类:
其他好文 时间:
2020-05-15 11:54:32
阅读次数:
58
使用BaseActivity可以封装一些重复代码例如设置标题栏颜色,封装一些工具类... 主要功能: 1. 封装Toast 新建一个BaseActivity继承自Activity 将自己的Activity继承BaseActivity ...
分类:
移动开发 时间:
2020-05-15 10:11:38
阅读次数:
71
可以显示文本信息 ListView 的使用方法可以概括为: 1、构造数据 2、获取Adapter 3、Adapter绑定ListView ListView lv_main = findViewById(R.id.lv_main); String [] data = new String[100]; ...
分类:
其他好文 时间:
2020-05-14 19:15:38
阅读次数:
64
<?xml version="1.0" encoding="utf-8"?> <manifest xmlns:android="http://schemas.android.com/apk/res/android" package="com.example.myapplication"> <appl ...
分类:
移动开发 时间:
2020-05-14 11:06:07
阅读次数:
79
**错误原因**:端口号被占用。
**解决方法**:关掉占用端口号的进程。步骤参考:https://jingyan.baidu.com/article/3aed632e24d3c5701180916d.html
**报错信息**:
Caused by: com.alibaba.dubbo.rpc.RpcException:...
分类:
其他好文 时间:
2020-05-14 11:00:08
阅读次数:
63
1、定义遍历注解类。 public class BindData { /** * 绑定Activity */ public static void bind(final Activity activity) { Class annotationParent = activity.getClass() ...
分类:
移动开发 时间:
2020-05-14 10:31:08
阅读次数:
77