xml
-
안드로이드 코드 작성법Code/Android 2010. 7. 28. 23:39
1. Hello Android 두가지 방법 - 소스코드 직접 수정 public class hi extends Activity { /** Called when the activity is first created. */ @Override public void onCreate(Bundle savedInstanceState) { super.onCreate(savedInstanceState); TextView t = new TextView(this); t.setText("Hello Sidcode!!!!"); t.setTextSize(25); setContentView(t); } } - xml 수정 - src/package/hi.java, res/values/String.xml res/layout/main.xml..