slider

还是菜鸟
  博客园  :: 首页  :: 新随笔  :: 联系 :: 订阅 订阅  :: 管理

2013年12月20日

摘要: A. To specify credentials individually for each remoteOpen Git repositories view,open "Remotes > origin > "click "Change Credentials..."(From User Guide - Resource Context Menu)B. To specify credentials per serverIf you want to access multiple repositories on the same serve 阅读全文

posted @ 2013-12-20 23:54 slider 阅读(567) 评论(0) 推荐(0) 编辑

2013年11月6日

摘要: environment: window8(64bit) First you go to the phonegap site and install it. note that installing your node if you don't installed it on you computer, note you shoud select zip file carefully by 32 or 64. now ok, you click the application that named 'node command line', input this comma 阅读全文

posted @ 2013-11-06 14:20 slider 阅读(294) 评论(0) 推荐(0) 编辑

2013年7月24日

摘要: this is a big problem for me. i follow the solutions that i searched from the internet: modify the listview layout and list-item layou file, 'wrap_content' to 'fill_parent'. but 'getView' function always was voked many time when the value of the 'position' is 0; i thi 阅读全文

posted @ 2013-07-24 10:34 slider 阅读(861) 评论(0) 推荐(0) 编辑

2013年7月11日

摘要: #encoding:utf-8''' write xml in dom style '''from xml.dom.minidom import Documentdoc = Document() # new a DOM objectwords = doc.createElement('words') # new a root elementwords.setAttribute('xmlns:xsi',"http://www.w3.org/2001/XMLSchema-instance")#设置命 阅读全文

posted @ 2013-07-11 10:59 slider 阅读(356) 评论(0) 推荐(0) 编辑

2013年5月22日

摘要: 1.download source : http://golang.org/doc/Installed , here i haved file named 'go1.1.linux-386.tar.gz' , decompress it.2.To build the Go distribution, run$ cd go/src$ ./all.bash(To build under Windows use all.bat.)If all goes well, it will finish by printing output like:ALL TESTS PASSED---In 阅读全文

posted @ 2013-05-22 21:14 slider 阅读(259) 评论(0) 推荐(0) 编辑

2013年5月3日

摘要: // Globals which should be set before calling this function: // // int polySides = how many corners the polygon has // float polyX[] = horizontal coordinates of corners // float polyY[] = vertical coordinates of corners // float x, y = point to be tested // // (Globals are used ... 阅读全文

posted @ 2013-05-03 10:06 slider 阅读(288) 评论(0) 推荐(0) 编辑

2013年4月15日

摘要: recently, i found a website that post many good artilce. many of them is valuable to read. here is the link: http://www.java2s.com/Code/Android/2D-Graphics/RotateBitmap.htm 阅读全文

posted @ 2013-04-15 12:48 slider 阅读(230) 评论(0) 推荐(0) 编辑

2013年4月3日

摘要: new AsyncTask<Void, Void, String>(){ ProgressDialog progressDialog; protected void onPreExecute() { progressDialog = new ProgressDialog(EditSelectedActivity.this); progressDialog.setMessage(getResources().getString(R.string.d_loading)); ... 阅读全文

posted @ 2013-04-03 15:22 slider 阅读(229) 评论(0) 推荐(0) 编辑

2013年4月1日

摘要: When you're writing an application in which you would like to perform specialized drawing and/or control the animation of graphics, you should do so by drawing through aCanvas. A Canvas works for you as a pretense, or interface, to the actual surface upon which your graphics will be drawn — it h 阅读全文

posted @ 2013-04-01 16:54 slider 阅读(271) 评论(0) 推荐(0) 编辑

摘要: i invoke findViewById method like this:view view = LayoutInflater.from(this).inflate(R.layout.xxx,null);Customview myView = view.findviewbyid(R.id.xy);....setcontentView(view); but it keeps return null . after searchs, i found that i shoud call findviewbyid() before setcontentview method. you can... 阅读全文

posted @ 2013-04-01 10:55 slider 阅读(607) 评论(0) 推荐(0) 编辑