1. Scope 1.1 Common Use Definitions2. Normative references3. Terms, definitions, and abbreviated terms3.1 Terms and definitions3.2 Abbreviated terms4. ...
分类:
其他好文 时间:
2020-03-14 14:34:15
阅读次数:
100
解决APP能打开点击不动问题一、问题:根据客服反馈app能打开页面但卡在首页,点击不动,程序员反馈证书问题报错信息:15575-15575/?E/HomeActivity:onPageError:---》ErrorCode-6;Description--->net::ERR_CONNECTION_REFUSED二、排查思路:1.检查该域名下手机端加证书访问是否正常2.首先检查一下该线路节点是
分类:
移动开发 时间:
2020-03-11 10:26:42
阅读次数:
108
链接:https://www.cnblogs.com/xianfeng-zhang/p/8134269.html 1,activity代码: package com.example.fitness_app.web.teacher; import android.support.v7.app.AppC ...
分类:
移动开发 时间:
2020-03-10 21:47:28
阅读次数:
89
查看acitivity命令 :adb shell dumpsys activity activities ...
分类:
移动开发 时间:
2020-03-10 16:10:28
阅读次数:
87
要获取activity中实现的接口,可以在Fragment里重写onAttach方法,如下: public void onAttach(@NonNull Context context) { super.onAttach(context); if (context instanceof ShowIt ...
分类:
移动开发 时间:
2020-03-09 18:20:41
阅读次数:
95
Androidstudio如何制作一个高仿小米计算器小demo ————安德风 一、最终成品效果图: 二、界面设计布局源代码:文件名activity_main.xml (存放在jsj(我的模块名为jsj)/res/layout/activity_main.xml) 1 <?xml version=" ...
分类:
移动开发 时间:
2020-03-08 20:25:51
阅读次数:
136
通过 CSS3,我们能够创建动画,这可以在许多网页中取代动画图片、Flash 动画以及JavaScript。 CSS3动画有哪些实现方式? Transitions 、transforms和 Animations Transitions特点:平滑的改变CSS的值 transforms特点:变换主要实现 ...
分类:
Web程序 时间:
2020-03-08 17:56:22
阅读次数:
161
首先在第一个activity中创建一个按钮,id为button 然后在第一个activity的代码中创建监听器实现跳转,主activity代码如下: public class FirstActivity extends AppCompatActivity { //声明一个button按钮(不需要和实 ...
分类:
移动开发 时间:
2020-03-08 16:05:22
阅读次数:
94
1. 匿名内部类作为事件监听器 2. 内部类作为事件监听器 3. Activity本身作为事件监听器 4. 外部类作为事件监听器 5. 将事件处理方法直接绑定到标签 ...
分类:
移动开发 时间:
2020-03-08 13:42:33
阅读次数:
74