我愿人长久
我愿人长久
Firstly, thank you for you project. It help me a lot ! but I have this issues. When I use this project in the way of XML: ``` ``` it...
```java @Override protected void onActivityResult(int requestCode, int resultCode, Intent data) { super.onActivityResult(requestCode, resultCode, data); if (requestCode == 0) { if (resultCode == RESULT_OK) { // Great! User has recorded and...
现在一个页面只能生产一个skPlayer,但是我想把该项目用到文章内的播放器,类似于微信的公众号播放器,就无法实现了
 如图所示,是不支持深度音乐3.0 吗?
https://blog.ouyangsihai.cn/mian-shi-guan-wen-ni-b-shu-he-b-shu-jiu-ba-zhe-pian-wen-zhang-diu-gei-ta.html > 插入的时候,我们需要记住一个规则:判断当前结点key的个数是否小于等于m-1,如果满足,直接插入即可,如果不满足,将节点的中间的key将这个节点分为左右两部分,中间的节点放到父节点中即可。 应该是 key 的个数小于 m-1 不是小于等于,如果等于 m-1 再插入,就超过了限制了
When the screen size is less than 769px ,the `` will generate a scroll bar , And produced the scroll bar at the same time,so there will be two scroll...
感谢作者的工具!
如何使用呢?
作者你好? 请问如何使用呢? 对typecho数据库不是很清楚
**场景:** 当typecho安装在子目录,比如 /blog 目录下 普通情况下,需要访问 xxxx.com/blog/yyy 才能访问到typecho资源,即requestUri 和 baseUrl 起始位置是匹配的。 但是可以通过地址重写,当访问 xxxx.com/yyy 的时候,实际访问资源是/blog/yyy 路径, > apache下的.htaccess 举例: ``` RewriteEngine On RewriteCond %{REQUEST_URI} !^/blog/ RewriteRule ^(.*)$ blog/$1 [QSA] ``` **存在的问题**: typecho目前的rootUrl...