2018年10月17日
2018年10月2日
2018年9月28日
Android: webview 呼叫JavaScript函數
本來執行得好好的程式碼,在新版的Android就失效了?
Debug了半天,原來是WebView不能在同一個Thread呼叫?
myWebView.loadUrl("javascript:alert('test')");
需要改成底下:
myWebView.post(new Runnable() {
@Override
public void run() {
myWebView.loadUrl("javascript:alert('test')");
}
});
Debug了半天,原來是WebView不能在同一個Thread呼叫?
myWebView.loadUrl("javascript:alert('test')");
需要改成底下:
myWebView.post(new Runnable() {
@Override
public void run() {
myWebView.loadUrl("javascript:alert('test')");
}
});
2018年5月17日
Wired for memory: how your brain remembers by completing patterns
Wired for memory: how your brain remembers by completing patterns:
Your brain is the best pattern completion machine in the known universe.
We know the 海馬迴 is important for some types of this pattern completion. It deals with episodic memory, the memory of stuff that happened to you
CAT3區神經元間的連結很稀疏,有特定的chain模式,形成迴圈loop,才足以激發pattern completion.
Your brain is the best pattern completion machine in the known universe.
We know the 海馬迴 is important for some types of this pattern completion. It deals with episodic memory, the memory of stuff that happened to you
CAT3區神經元間的連結很稀疏,有特定的chain模式,形成迴圈loop,才足以激發pattern completion.
2018年4月25日
Android: 在不同thread上,更改button上的文字
button1.post(new Runnable() {
public void run() {
button1.setText(R.string.btn1);
} });
public void run() {
button1.setText(R.string.btn1);
} });
訂閱:
文章 (Atom)