taozywu

Results 11 comments of taozywu

@sincez It should be OK, WeChat Mini Program is available through the websocket protocol, as long as your websocket is normal

@phoenixg 你可以直接用@wukuai说的办法安装 ``` wget https://www.percona.com/downloads/Percona-Server-5.6/Percona-Server-5.6.25-73.1/binary/redhat/6/x86_64/Percona-Server-5.6.25-73.1-r07b797f-el6-x86_64-bundle.tar tar -xvf Percona-Server-5.6.25-73.1-r07b797f-el6-x86_64-bundle.tar rpm -ivh Percona-Server-shared-56-5.6.25-rel73.1.el6.x86_64.rpm ``` tar,rpm 命令一般在mac下是安装过的。 如果没装。 你可以尝试使用如下来解决! ``` brew search rpm brew install rpm ``` 祝你好运!

Of course you can do this Route.php ``` //redirect Route::any('/', function ($request) { return redirect("/index"); }); or //使用类 Route::any('/', [app\index\controller\Index::class, 'index']); ```

hi,我看了下你这个xListView,真心说不错。不过我在用你这个过程发现有个不知道是不是问题:当进来加载的时候都会出现footview,导致数据还未填充时会看到此footview,正常应该是不可以的。“ Maxwin-z”你怎么看?然后我这边XListView.java中119~122行注释掉并在145行增加上述注释代码。activity中调用大概如下: // 最后一页 if (page == totalPage && page > 0) { mListView.setPullLoadEnable(false); } else { mListView.setPullLoadEnable(true); }

哦,还需要XListView中295行中加上如下:”mEnablePullLoad“的标记 ``` // mEnablePullLoad 为false 则不需要更新footview的BottomMargin } else if (getLastVisiblePosition() == mTotalItemCount - 1 && (mFooterView.getBottomMargin() > 0 || deltaY < 0) && mEnablePullLoad ) { ```

看见后,希望能和你讨论下。

? 在 14/5/21,我回来啦[email protected] 写道: > 我也又这个问题,怎么触发进入界面,自动下拉刷新呢? > > --- > > Reply to this email directly or view it on GitHub: > https://github.com/Maxwin-z/XListView-Android/issues/2#issuecomment-43725544

我现在好久没研究android了。我可以给你一个我后来改的一个listView的例子。希望能帮到你。 2014-05-22 16:22 GMT+08:00, taozy wu [email protected]: > ? > > 在 14/5/21,我回来啦[email protected] 写道: > > > 我也又这个问题,怎么触发进入界面,自动下拉刷新呢? > > > > --- > > > > Reply to this...

but in not php file, when i wrote this code, it's ok. ```php

@gerardroche i knew your operation. but the problem is not that. please look ```php class Constant { /** * [test description] * * @return [type] [description] */ public function test()...