-
안드로이드 코드 작성법Code/Android 2010. 7. 28. 23:391. 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.xmlres/layout/main.xml
public class hi extends Activity {
/** Called when the activity is first created. */
@Override
public void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.main);
}
}
<?xml version="1.0" encoding="utf-8"?>
<resources>
<string name="hello">Hello Sidcode!</string>
<string name="app_name">HelloSidcode</string>
</resources>
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:orientation="vertical"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
>
<TextView
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:textSize="25sp"
android:text="@string/hello"
/>
</LinearLayout>
주의: 절대 xml 부분에서 실행하지말라!!! 그지같은 경우가 발생한다...'Code > Android' 카테고리의 다른 글
안드로이드 코딩 : xml 부분에서 *.out.xml 이 생성 된후 실행 불가 해결 . (2) 2010.08.16 안드로이드 코딩 : 아이디 검색후 트위터 팔로어 출력(TwitterSCKR ver 0.2)(Twitter, My followers List on Android) (4) 2010.08.14 안드로이드 코딩 : 트위터 XML Parse ( 회원 정보 ) (3) 2010.08.11 Android Google Map (0) 2010.07.31