2013年6月20日 星期四

eclipse code formatting for android developers.

http://acoderactivity.wordpress.com/2012/08/09/android-code-formatting-in-eclipse/

2013年6月7日 星期五

android get screen size

Display display = mApp.getWindowManager().getDefaultDisplay();
Point size = new Point();
display.getSize(size);
   

android runOnUiThread() is good~

ref: http://lak4cyut.blogspot.tw/2011/03/android-tip-activityrunonuithread.html


this.mView.getController().getApp().runOnUiThread(new Runnable(){
public void run(){
mTopTextZone.requestLayout();
}
});