2011. 12. 2. 16:20
안드로이드 `TabWidget`으로 멀티탭 페이지 만들기
2011. 12. 2. 16:20 in JavaAndroid
XML에는 ‘TabWidget’을 하나 살포시 떨짜 주면 됩니다.
package net.bs;import android.app.TabActivity;import android.content.Intent;import android.content.res.Resources;import android.os.Bundle;import android.widget.TabHost;public class MultiTabActivity extends TabActivity {/** Called when the activity is first created. */@Override
public void onCreate(Bundle savedInstanceState) {super.onCreate(savedInstanceState);setContentView(R.layout.multi);
Resources res = getResources();
TabHost tabHost = getTabHost();
TabHost.TabSpec spec;
// 그림파일은 res/drawable-hdpi에 위치.spec = tabHost.newTabSpec("A").setIndicator("시간표",res.getDrawable( R.drawable.time_schedule) ).setContent(intent);
spec = tabHost.newTabSpec("B").setIndicator("전체시간",res.getDrawable( R.drawable.entire_time) ).setContent(intent);
spec = tabHost.newTabSpec("C").setIndicator("출구정보",res.getDrawable( R.drawable.out_info) ).setContent(intent);
tabHost.setCurrentTab(0) ;
}
}
'JavaAndroid' 카테고리의 다른 글
안드로이드 액티비티(Android Activity) 돌아올 때 값을 받아오기 (0) | 2011.12.09 |
---|---|
안드로이드 액티비티(Android Activity) Intent로 이동할 때 값을 넘겨주기 (0) | 2011.12.08 |
안드로이드 인텐트, 전화걸기나 홈페이지 보기 Action Intent (0) | 2011.12.07 |
안드로이드 액티비티(Android Activity) Intent로 전환 이동하기 (0) | 2011.12.06 |
DB 파일을 안드로이드 에뮬레이터 또는 폰에 넣기 (0) | 2011.12.01 |
안드로이드 대화상자(Android AlertDialog) 출력하기 (0) | 2011.11.30 |
엑셀(Excel) 파일 데이타를 `.CSV`로 변환하여 SQLite에 넣기 (0) | 2011.11.23 |
SQLite Manager 설치하기 (0) | 2011.11.23 |