과거.....
-
문제해결과거...../개발일지 2010. 11. 26. 10:07
해결방법 This was answered for me on Stack Overflow: http://stackoverflow.com/questions/3...s-into-eclipse "All the baseline default.properties needs is a line like: target=android-8" You can copy another projects' default.properties into your project (choose one with the same API Level that you want). Then restart of Eclipse to rebuild the workspace. NB you may find that your src folder includes a ..
-
intent 를 사용시 object넘기기과거...../개발일지 2010. 11. 25. 05:31
인텐트를 사용시 string,float등을포함하여 한번에 넘겨버리고싶을때가 있다.ㅋㅋ 그때 사용하는 함수이다. 아래는 객체를 저장할 때 사용하는 메소드 인데 Serializable 기능을 사용한 것이다. void putSerializable(String key, Serializable value) Serializable getSerializable(String key) Bundle extras = new Bundle(); extras.putSerializable("aa", Object); intent.putExtras(extras); ... Object y = getIntent().getExtras().get("aa");
-
ctrl_space안될시..(.이클립스할때 ㅠㅠ)과거...../개발일지 2010. 11. 22. 15:52
이클립스(eclipse) content asist(code asist:ctrl space) 가 안될때 프로그래밍 이클립스(eclipse) content asist(code asist:ctrl space) 가 안될때 content asist : No Default Proposals 라고 나오면, Window -> Preferences -> Java -> Editor -> Content Assist -> Advanced Other Java Proposals 체크
-
text관련과거...../개발일지 2010. 11. 22. 15:46
-text의 shadow주기(샘플)- android:shadowColor="#000" android:shadowRadius="2.0" -설명- Text Shadow You can use three different attributes to customize the appearance of your text shadow: android:shadowColor Shadow color in the same format as textColor. android:shadowRadius Radius of the shadow specified as a floating point number. android:shadowDx The shadow’s horizontal offset specified as a floating ..