https://gist.github.com/tigers2020/e10b6981acfbceb06a673db00f3d8f5f
所以,我尝试让editTextView将String转换为这样的模式
700 -> 7:00
570 -> 6:10
43 -> 0:43
它运作良好,但问题是它一个接一个地添加循环。 我的意思是,当我插入数字时,它运行1次并插入另一个数字,它运行2次,4次,8次......最终崩溃。
你们有什么想法吗?答案 0 :(得分:0)
您需要设置代理通行证。在您的apache虚拟主机文件中,进行这些更改
<VirtualHost *:80>
ServerName mydomain
ProxyRequests off
<Proxy *>
Order allow,deny
Allow from all
</Proxy>
ProxyPass / http://localhost:4004/
ProxyPassReverse / http://localhost:4004/
ProxyPreserveHost on
</VirtualHost>