Droid Draw Beta
Website.
http://www.droiddraw.org/
Tool: 안드로이드 폰을 위한 UI를 미리 그려볼 수 있는 프로그램
지원 운영체제: 맥, 윈도우, 리눅스
튜토리얼
Step Zero
|
Step Six
|
Step TwelveEdit the first RadioButton so that its text reads: "Dollars to Euros" and its id is "@+id/dtoe".Edit the second RadioButton so that its text reads: "Euros to Dollars" and its id is "@+id/etod". Important Note: Step ThirteenEdit the Button so that its text reads: "Convert" and its id is "@+id/convert".The final GUI should look like: Step FourteenPress the "Generate" button to generate the layout XML. It will look something like thisStep FifteenIn Eclipse create a new android project. Cut and paste the XML from DroidDraw to replace the contents ofres/layout/main.xml .At this point you should be able to run your GUI in Android. It should look something like this: Step SixteenThe last step is to actually code the currency conversion. There's not much to it, you can look up your GUI elements with:this.findViewById(R.id.<id>) .Here is the complete code for the CurrencyConverter activity:
|
'Study' 카테고리의 다른 글
안드로이드 폰용 UI 제작 시 (1) | 2010.06.29 |
---|---|
안드로이드 UI 관련 링크 (0) | 2010.05.18 |
네이밍의 문제 (0) | 2010.04.20 |
익숙한(?) 불편함의 부재 (0) | 2010.03.30 |
모바일 웹디자인: 팁과 베스트 사례 (0) | 2010.03.15 |