1、定义两个常量:广播名和广播键值 public static final String ACTION_BONED = "ACTION_BONED"; public static final String ACTION_BONED_DATA = "ACTION_BONED_DATA"; 2、在Act ...
分类:
移动开发 时间:
2020-07-21 22:28:19
阅读次数:
87
1、定义 Service package com.example.scangundemo_as; import android.app.ActivityManager; import android.app.Service; import android.content.ComponentName; ...
分类:
移动开发 时间:
2020-07-21 22:26:20
阅读次数:
106
一、使用url_for别名方式 之前使用@app.route这个装饰器来把视图函数和url绑定。而且可以通过url_for('hello_world')反转得到url '/' @app.route('/') def hell_world(): return 'hello world' 实际上可以给@ ...
分类:
移动开发 时间:
2020-07-21 14:24:07
阅读次数:
112
<Button Name="button" Content="Hello" Height="100" Width="200" Click="button_Click_2"> <Button.ContentTemplate> <DataTemplate> <Viewbox> <TextBlock>My ...
该系列将记录我对于五个平台(微信、QQ、Facebook、Twitter、微博)的原生SDK的调研,重点关注登录和分享。P.S. 当前并没有 iOS 设备,因此文章都是以 Android 平台的接入为主,使用的 IDE 为 Android Studio。 ZeroyiQ:Unity 多平台原生SDK ...
分类:
微信 时间:
2020-07-21 13:47:18
阅读次数:
108
1 # 2 # s = 'nihao' 3 # count = 0 4 # for i in s : 5 # count += 1 6 # print(count) 7 8 # dic = dict(('name','apple')) 9 # print(dic) 10 11 # def mylen ...
分类:
其他好文 时间:
2020-07-21 13:42:58
阅读次数:
67
计算机语言的发展史 一、第一代语言 机器语言 计算机的基本计算方式基于二进制 二进制 : 010111001010110010110100 ,逢二进一 这种代码是直接输入给计算机使用的,不经过任何的转换 二、第二代语言 汇编语言 解决人类无法读懂机器语言的问题 指令代替二进制 eg:打印 Hello ...
分类:
其他好文 时间:
2020-07-21 09:35:35
阅读次数:
74
一、路由注册两种方式 第一种:在视图函数上使用装饰器来注册路由 from flask import Flask app = Flask(__name__) @app.route("/hello") # 第一种注册方法 def hello(): return "hello python!!!" 第二种 ...
分类:
其他好文 时间:
2020-07-21 01:21:01
阅读次数:
78
目的 Android开发过程中想查看本地数据库里的数据是否正常,一般可以把Sqlite3文件拷出来查看或者用付费插件,今天介绍一种更加方便的穷逼的快捷查看方法。 仓库地址:https://github.com/amitshekhariitbhu/Android-Debug-Database 功能 查 ...
分类:
移动开发 时间:
2020-07-21 01:13:42
阅读次数:
79
RecyclerView应该是ListView的增强版。 RecyclerView与ListView的区别(我认为的): RecyclerView的性能比ListView高 RecyclerView支持水平滚动 RecyclerView可以动态增加数据量 需要注意的地方: 在AS里面使用Recycl ...
分类:
移动开发 时间:
2020-07-21 01:09:55
阅读次数:
121