일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | |||
5 | 6 | 7 | 8 | 9 | 10 | 11 |
12 | 13 | 14 | 15 | 16 | 17 | 18 |
19 | 20 | 21 | 22 | 23 | 24 | 25 |
26 | 27 | 28 | 29 | 30 | 31 |
- Networking
- Snackbar
- navigator
- Load Image
- HTTP
- Flutter Tutorial
- Scaffold
- 반석천
- AppBar
- Cached Image
- sqlite
- listview
- Image.network
- Row
- Flutter 강좌
- CrossAxisAlignment
- ListTile
- ListView.builder
- flutter
- Hello World
- node.js
- MainAxisAlignment
- InkWell
- Column Widget
- Flutter Example
- FutureBuilder
- Flutter 예제
- WillPopScope
- Row Widget
- Flutter 앱 배포
- Today
- Total
꿈꾸는 시스템 디자이너
TabActivity 구성 방법(xml 레이아웃 파일 이용) 본문
1. xml 파일의 구성
<TabHost xmlns:android="http://schemas.android.com/apk/res/android"
android:id="@android:id/tabhost"
android:layout_width="match_parent"
android:layout_height="match_parent" >
<LinearLayout
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="vertical"
android:padding="5dp" >
<TabWidget
android:id="@android:id/tabs"
android:layout_width="match_parent"
android:layout_height="wrap_content" />
<FrameLayout
android:id="@android:id/tabcontent"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:padding="5dp" />
</LinearLayout>
</TabHost>
XML파일 작성시 요구사항
- 탭호스트: android:id="@android:id/tabhost"
- 탭 위젯: @android:io="@android:id/tabs"
- 탭컨텐트: @android:id="@android:id/tabcontent"
2. java파일 작성
import android.app.TabActivity;
import android.content.Intent;
import android.content.res.Resources;
import android.os.Bundle;
import android.widget.TabHost;
public class HelloTabWidget extends TabActivity {
public void onCreate(Bundle savedInstanceState) {
TabHost.TabSpec spec;
Intent intent;
super.onCreate(savedInstanceState);
//반드시 getContentView()가 getTabHost()보다 먼저 호출되어야 함
setContentView(R.layout.main);
Resources res = getResources();
TabHost tabHost = getTabHost();
// TabHost tabHost = (TabHost) findViewById(android.R.id.tabhost);
// tabHost.setup();
// Artist 탭
intent = new Intent().setClass(this, ArtistsActivity.class);
spec = tabHost.newTabSpec("artists").setIndicator("Artists",
res.getDrawable(R.drawable.ic_tab_artists)).setContent(intent);
tabHost.addTab(spec);
// Album 탭
intent = new Intent().setClass(this, AlbumsActivity.class);
spec = tabHost.newTabSpec("albums").setIndicator("Albums",
res.getDrawable(R.drawable.ic_tab_albums)).setContent(intent);
tabHost.addTab(spec);
// Song 탭
intent = new Intent().setClass(this, SongsActivity.class);
spec = tabHost.newTabSpec("songs").setIndicator("Songs",
res.getDrawable(R.drawable.ic_tab_songs)).setContent(intent);
tabHost.addTab(spec);
// 앱이 실행될때 초기에 선택되어질 탭
tabHost.setCurrentTab(2);
}
}
'Development > Android' 카테고리의 다른 글
Intent 생성에 필요한 Actions, Categories, Extra Data 참조 정보 (0) | 2012.04.05 |
---|---|
명시적 인텐트를 통한 Activity 실행 (0) | 2012.04.04 |
TabActivity 구성 방법(동적 방법) (0) | 2012.04.04 |
레이아웃 인플레이션(Layout Inflation) (0) | 2012.04.04 |
기본적인 View 사용법 3 (0) | 2012.04.03 |