package com.Test1;
import android.app.Activity;
import android.os.Bundle;
import android.widget.TextView;
public class Test1 extends Activity {
/** Called when the activity is first created. */
@Override
public void onCreate(Bundle savedInstanceState)
{
super.onCreate(savedInstanceState);
//setContentView(R.layout.main);
TextView tv = new TextView(this);
tv.setText("Hello... Android!!!");
setContentView(tv);
}
}
'IT_컴퓨터_코딩_개발' 카테고리의 다른 글
페이스북 타임라인 취소 불가? (0) | 2012.02.01 |
---|---|
주민등록등본 인터넷으로 무료 발급 가능합니다. (0) | 2012.01.31 |
갤럭시S 해상도 (Android 화면 해상도 및 DPI 구하기) (0) | 2012.01.30 |
MSN 메신저 비번 변경하는 곳 (0) | 2012.01.30 |
갤럭시S 저장공간부족(프로그램 설치 메모리 부족)시 조치방법 (0) | 2012.01.30 |