Notice
Recent Posts
Recent Comments
Link
| 일 | 월 | 화 | 수 | 목 | 금 | 토 |
|---|---|---|---|---|---|---|
| 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 |
Tags
- Android
- Menu
- Graphic
- AWT
- 안드로이드
- mybatis
- 클래스
- 에러페이지
- struts2
- JavaScript
- JSP
- 기본
- Eclips
- paint
- OGNL
- 예외처리
- layout
- oracle
- 전화걸기
- 생성자
- 오버로딩
- Java
- 국제화
- 어노테이션
- 메소드
- 배열
- 이클립스
- 메서드
- Spring
- HTML
Archives
- Today
- Total
note
Tab 탭 본문
<?xml version="1.0" encoding="utf-8"?>
<TabHost xmlns:android="http://schemas.android.com/apk/res/android"
android:id="@+id/tabhost"
android:layout_width="fill_parent"
android:layout_height="fill_parent" >
<LinearLayout
android:orientation="vertical"
android:layout_width="fill_parent"
android:layout_height="fill_parent">
<TabWidget android:id="@android:id/tabs"
android:layout_width="fill_parent"
android:layout_height="wrap_content" />
<FrameLayout android:id="@android:id/tabcontent"
android:layout_width="fill_parent"
android:layout_height="fill_parent">
<AnalogClock android:id="@+id/tab1"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:layout_centerHorizontal="true" />
<Button android:id="@+id/tab2"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:text="단순한 버튼" />
</FrameLayout>
</LinearLayout>
</TabHost>
package com.commonsware.android.fancy;
import android.app.Activity;
import android.os.Bundle;
import android.widget.TabHost;
public class TabDemo extends Activity {
@Override
public void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.main);
TabHost tabs = (TabHost) findViewById(R.id.tabhost);
tabs.setup();
//탭생성
TabHost.TabSpec spec = tabs.newTabSpec("tag1");
spec.setContent(R.id.tab1);
spec.setIndicator("시계",
getResources().getDrawable(R.drawable.ic_launcher));
//탭 등록
tabs.addTab(spec);
//탭 생성
spec = tabs.newTabSpec("tag2");
spec.setContent(R.id.tab2);
spec.setIndicator("버튼",
getResources().getDrawable(R.drawable.ic_launcher));//아이콘
//탭 등록
tabs.addTab(spec);
//어플리케이션 구동시 처음 보여지는 탭
tabs.setCurrentTab(0);
}
}
'Android > 기본' 카테고리의 다른 글
| 플리퍼 Flipper (화면을 동적으로 구현하고 싶을때 사용) (0) | 2012.01.11 |
|---|---|
| Intent Tab 권한설정, Manifest.xml(설정) (0) | 2012.01.10 |
| Chrono 시간 , 날짜 처리 (0) | 2012.01.10 |
| Gallery ImageView (0) | 2012.01.10 |
| AutoComplete 자동완성기능 (0) | 2012.01.10 |