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
1.maven下载 项目架构管理工具 1.下载地址:http://maven.apache.org/download.cgi 2.点击下载zip包 3.解压 2.配置maven阿里云镜像 <!-- 阿里云仓库 --> <mirror> <id>alimaven</id> <mirrorOf>cent ...
分类:
其他好文 时间:
2021-06-21 21:13:32
阅读次数:
0
今天完成了昨天的初步构想,详细介绍见上一篇博客,具体项目结构和案例如下: MainActivity.java: package com.example.familybooks; import android.os.Bundle; import android.provider.ContactsCon ...
分类:
移动开发 时间:
2021-06-21 20:51:37
阅读次数:
0
今天在昨天的基础上,相继完成了三个页面的布局和显示情况: 新增加的xml文件如下: activity_add.xml: <?xml version="1.0" encoding="utf-8"?> <LinearLayout xmlns:android="http://schemas.android ...
分类:
移动开发 时间:
2021-06-21 20:49:16
阅读次数:
0
Android使用开源的与操作系统无关的SQL数据库——SQLite 一:在命令行下创建数据库: 1.启动模拟器后,打开命令行,执行adb shell 2.进入所在工程目录 3.执行sqlite3 mydb创建数据库文件 :表示结尾,--表示注解 二:包Android.database.sqlite ...
分类:
数据库 时间:
2021-06-21 20:47:00
阅读次数:
0
#MySQL彻底卸载方法 ##一、查找关键文件 1、打开MySQL数据库的安装目录 打开my.ini文件 记住以下两个目录: ##二、卸载 ###1、卸载程序 打开计算机控制面板>程序和功能,找到MySQL右键点击卸载: ###2、删除mysql目录 卸载完成后,删除my.ini文件中记录的目录,删 ...
分类:
数据库 时间:
2021-06-21 20:42:56
阅读次数:
0
今天学习了time date组件 <TextClock android:layout_width="wrap_content" android:layout_height="wrap_content" android:format12Hour="MM/dd/yy h:mmaa"/> <TextClo ...
分类:
其他好文 时间:
2021-06-21 20:41:25
阅读次数:
0
1.android的HttpURLConnection发送POST请求 核心代码: PostUtils.java public class PostUtils { public static String LOGIN_URL = "http://172.16.2.54:8080/HttpTest/S ...
分类:
其他好文 时间:
2021-06-21 20:31:45
阅读次数:
0
以名称空间monitoring为例 启动一个代理,默认监听在8001 kubectl proxy 生成资源清单文件tmp.josn kubectl get ns monitoring -o json > tmp.json 删除spec字段 { "apiVersion": "v1", "kind": ...
分类:
其他好文 时间:
2021-06-21 20:22:10
阅读次数:
0
一、Windows端共享权限设定 1、解禁Guest 右击我的电脑选择管理→本地用户管理→本地用户和组→在用户项中双击Guest用户→取消账户已禁用选项 2、设置共享目录权限 右击共享目录点属性→在共享页面中点击共享选项→下拉选择共享对象为Everyone→点击共享按钮 3、设置本地策略 windo ...