본문 바로가기

Just Do It

(154)
[아로마테라피] * 아로마 테라피의 정의 Aroma Therapy는 허브 식물, 식물의 나무(Cinnamon, Sandalwood(인도의 향), Cedarwood(산림욕)) 뿌리(Ginger(생강)) 꽃(Rose(클레오 파트라가 즐겨씀), Lavender, Neroli, Jasmin(양귀비가 즐겨씀)) 열매(Bergamot, Grapefruit(자몽), Lemon, Orange) 잎(Tee tree(켈리포니아, 교목, 바이러스/곰팡이 죽이는 살균효과), clove, Pine, Lemongrass) 의 향기 성분을 이용해 몸과 마음에 긍정적인 효과를 얻어내는 치료법이다. *아로마 요법의 우수성 부작용이 거의 없는 치료법이다. 비폭력적인 치료법이다. 치료법이 간단하다. 근원적 치료이다. 전인적 치료이다. 보완 · 대체 의학..
[파일구조] 책정리 Chapter 1. 파일의 기본 개념 - 1.1 책 정리 정익사, 이석호 저 2010. 9. 8. 수업
[안드로이드] webview에 progressDialog 보호되어 있는 글입니다.
[안드로이드] 글자가 길어서 안보일 때 android:singleLine="true" android:focusable="true" android:ellipsize="marquee"
[공학제] ProgressDialog public void pro(){ final ProgressDialog dialog; dialog = ProgressDialog.show(this, "" , " 실행중입니다", true); new Thread(){ public void run(){ try{ sleep(7000); } catch (Exception e){ } dialog.dismiss(); } }.start(); } sleep(7000).............................................속임수ㅜㅜ
[공학제] TextView http://schemas.android.com/apk/res/android" android:layout_height="fill_parent" android:layout_width="fill_parent"  android:background="@drawable/background" android:paddingBottom="100px">       android:orientation="vertical"     android:layout_width="fill_parent"     android:layout_height="fill_parent"     android:paddingRight="5px"     android:paddingBottom="100px" >       android:layout_width..
[안드로이드] LinearLayout 영역 투명효과주기 투명처리 하고 싶은 것들 모두 background. 칼라값은 AARRGGBB AA 위치에 투명도 설정. 안보이도록 하는거라면 android:visibility="invisible" 을 추가.
[안드로이드] 위젯 AnalogClock Button CheckBox DatePicker ... // Required Java init code: DatePicker dp = (DatePicker)this.findViewById(R.id.widget27); // for example init to 1/27/2008, no callback dp.init(2008, 0, 27, Calendar.SUNDAY, null); ... DigitalClock EditText Gallery ImageButton ImageView ProgressBar RadioButton Spinner TextView TimePicker [출처] http://www.droiddraw.org/widgetguide.html