일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
Tags
- 초대장
- 네이버 클라우드 플랫폼
- Path Alias
- '티스토리 초대장/ 티스토리초대'
- GitLab미러링
- gitlab 연동
- GitLab Mirroring
- 실행시간 측정
- currentTimeMillis
- code .
- 음료같은녹즙
- React Native
- 티스토리초대
- webstorm
- 니돈내먹
- visual studio code cli
- 티스토리 초대장/ 티스토리초대
- GitHub Mirroring
- 유니옥션
- code 세팅
- settings sync
- 프리티어
- Emmet
- GitHub 미러링
- code 설치
- react native #gradle
- eslint-import-resolver-typescript
- 티스토리 초대장
- visual studio code
- 프레시업 #풀무원 #하루한병 #건강만들기 #풀무원 녹즙
Archives
- Today
- Total
방치하기
XML 하드 코딩 본문
반응형
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 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 | /** * 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; import android.widget.TextView; public class ActivityTimeUpdate extends Activity { private Button currentBtn; private TextView displayView; /** Called when the activity is first created. */ @Override public void onCreate(Bundle savedInstanceState) { super .onCreate(savedInstanceState); /** * Layout 자원 참조를 사용하지 않고 진행 */ //레이아웃 컨테이너 생성 LinearLayout lineContainer = new LinearLayout( this ); LinearLayout.LayoutParams layoutParams = new LinearLayout.LayoutParams( ViewGroup.LayoutParams.FILL_PARENT, ViewGroup.LayoutParams.FILL_PARENT); lineContainer.setLayoutParams(layoutParams); lineContainer.setOrientation(LinearLayout.VERTICAL); String message = " 버튼을 터치하면 시간이 갱신됨!" ; //위젯 생성 TextView tView = new TextView( this ); //위젯 속성 설정 tView.setText(message); tView.setTextSize( 12 ); Typeface tFace = Typeface.create(Typeface.SERIF, Typeface.BOLD); tView.setTypeface(tFace); tView.setGravity(Gravity.CENTER_HORIZONTAL); currentBtn = new Button( this ); currentBtn.setWidth(LinearLayout.LayoutParams.WRAP_CONTENT); currentBtn.setHeight(LinearLayout.LayoutParams.FILL_PARENT); currentBtn.setText( "현재시간보기" ); displayView = new TextView( this ); displayView.setText( "현재 시간은 여기서 보여짐" ); displayView.setGravity(Gravity.CENTER_HORIZONTAL); //컨테이너 레이아웃에 각 위젯을 부착 lineContainer.addView(tView); lineContainer.addView(currentBtn); lineContainer.addView(displayView); //안드로이드 윈도우 시스템에 현재 레이아웃의 //root(lineContainer)를 연결하여 드로윙을 의뢰 setContentView(lineContainer); //버튼에 이벤트 등록 및 처리 currentBtn.setOnClickListener( new OnClickListener(){ public void onClick(View btn){ updateTime(); } }); //setContentView(R.layout.main); } private void updateTime() { displayView.setText( new Date().toLocaleString()); } } |
반응형