Created
April 6, 2011 01:53
-
-
Save agiletalk/904995 to your computer and use it in GitHub Desktop.
[예제] 코드로 문자열 출력하기
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
package org.catchabug.AndroidFirst; | |
import android.app.Activity; | |
import android.os.Bundle; | |
import android.widget.TextView; | |
public class AndroidFirst extends Activity { | |
public void onCreate(Bundle savedInstanceState) { | |
super.onCreate(savedInstanceState); | |
TextView MyText = new TextView(this); | |
MyText.setText("코드로 문자열 출력하기"); | |
setContentView(MyText); | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment