一、目标 实现SD卡的文件存储,SD卡是否挂载的检查和SD卡剩余空间的查询 二、源程序代码 package com.example.qq_logindemo; import android.Manifest; import android.app.Activity; import android.c ...
分类:
移动开发 时间:
2020-02-04 20:46:44
阅读次数:
108
1、创建侧滑菜单Fragment package com.example.didida_corder; import android.os.Bundle; import android.view.LayoutInflater; import android.view.View; import and ...
分类:
移动开发 时间:
2020-02-04 18:49:24
阅读次数:
83
聊聊最近,2020年,在2019年的年尾时,大家可谓对这年充满新希望,特别是有20200202这一天。可是澳洲长达几个月的大火,新型冠状病毒nCoV的发现,科比的去世等等事情,让大家感到相当的无奈,生命是如此的脆弱,明天又是如此的未知。但是人应当活在当下,勇敢的面对疫情,和大家和政府一起打赢这场没硝 ...
分类:
其他好文 时间:
2020-02-04 18:32:01
阅读次数:
65
1 """ 2 There are a total of n courses you have to take, labeled from 0 to n-1. 3 Some courses may have prerequisites, for example to take course 0 yo ...
分类:
其他好文 时间:
2020-02-04 17:16:30
阅读次数:
77
Given a non-empty string s, you may delete at most one character. Judge whether you can make it a palindrome. Example 1: Input: "aba" Output: True Exa ...
分类:
其他好文 时间:
2020-02-04 11:04:16
阅读次数:
77
Config file Nginx.conf 配置文件主要分为三部分: 全局块 Events 块 HTTPS 块 Global Block 指主要配置影响全局的参数,配置对Server的运行,包括运行的用户组,进程PID存放路径、日志存放路径以及配置文件的引入。 如下配置: user nobody; ...
分类:
其他好文 时间:
2020-02-04 10:58:55
阅读次数:
65
Given two arrays, write a function to compute their intersection. Example 1: Input: nums1 = [1,2,2,1], nums2 = [2,2] Output: [2] Example 2: Input: num ...
分类:
其他好文 时间:
2020-02-04 10:34:46
阅读次数:
61
说明: 根据笔者平时使用情况,并结合参考一些其他资料,精心整理出以下必须掌握的50条Linux基础命令。 命令: 1. ssh 登录到远程主机 $ ssh -l jsmith remotehost.example.com 调试ssh客户端 $ ssh -v -l jsmith remotehost. ...
分类:
系统相关 时间:
2020-02-04 00:10:33
阅读次数:
93
题目内容 Given two non negative integers num1 and num2 represented as strings, return the product of num1 and num2, also represented as a string. Example: ...
分类:
其他好文 时间:
2020-02-03 22:31:16
阅读次数:
81
一、目标 以QQ登陆为例,继续完成昨天没有完成的任务,实现数据的存储和回显读取,并且学会往SD卡内存储信息 二、源程序代码 package com.example.qq_logindemo; import androidx.appcompat.app.AppCompatActivity; impor ...
分类:
移动开发 时间:
2020-02-03 19:03:17
阅读次数:
68