일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | |||
5 | 6 | 7 | 8 | 9 | 10 | 11 |
12 | 13 | 14 | 15 | 16 | 17 | 18 |
19 | 20 | 21 | 22 | 23 | 24 | 25 |
26 | 27 | 28 | 29 | 30 | 31 |
- 니돈내먹
- GitLab Mirroring
- visual studio code cli
- 티스토리 초대장/ 티스토리초대
- webstorm
- Path Alias
- react native #gradle
- GitLab미러링
- 프리티어
- '티스토리 초대장/ 티스토리초대'
- 티스토리초대
- code 세팅
- eslint-import-resolver-typescript
- GitHub Mirroring
- 초대장
- 실행시간 측정
- code 설치
- GitHub 미러링
- 티스토리 초대장
- gitlab 연동
- 프레시업 #풀무원 #하루한병 #건강만들기 #풀무원 녹즙
- 음료같은녹즙
- code .
- visual studio code
- currentTimeMillis
- 네이버 클라우드 플랫폼
- Emmet
- 유니옥션
- React Native
- settings sync
- Today
- Total
목록2010/12 (5)
방치하기
안드로이드 계산기 만들기 저걸 시켜서 과제로 만든건데 잘되는지는 모르겠다 ㅎ package com.junho.cal; import android.R.color; import android.app.Activity; import android.graphics.Color; import android.graphics.drawable.Drawable; import android.os.Bundle; import android.util.Log; import android.view.View; import android.widget.Button; import android.widget.EditText; public class CalActivity extends Activity { /** Called when the ac..
package com.android.jh; import android.app.Activity; import android.app.AlertDialog; import android.content.DialogInterface; import android.os.Bundle; import android.view.View; import android.view.View.OnClickListener; import android.widget.Button; import android.widget.EditText; public class DialogExamActivity extends Activity { private EditText txtMsg; private Button btnGo; String msg="whichbu..
메인 페스트에 추가 package com.android.junho; import android.app.Activity; import android.content.Intent; import android.net.Uri; import android.os.Bundle; public class CallMeActivity extends Activity { public void onCreate(Bundle savedInstanceState) { super.onCreate(savedInstanceState); Intent intent = new Intent(Intent.ACTION_CALL, Uri.parse("tel://01099380246")); startActivity(intent); } public void ..
package com.pyo.android.simple.service; , , , , public class SimpleServiceIntent extends android.app.Service { private int increment = 0 ; private static final String DEBUG = SimpleServiceIntent.class.getSimpleName(); @Override public void onCreate() { super.onCreate(); new Thread(new Runnable(){ // Service는보통Thread를이용해백그라운드에서실행시킨다 public void run(){ while(true){ try{ Log.i(DEBUG, " Service is c..
/** * Activity의 개념 예제 임 * author PYO IN SOO */ package com.pyo.android.activity.simple; import java.util.Date; import android.app.Activity; import android.graphics.Typeface; import android.os.Bundle; import android.view.Gravity; import android.view.View; import android.view.ViewGroup; import android.view.View.OnClickListener; import android.widget.Button; import android.widget.LinearLayout; impo..