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
- JSP
- 오버로딩
- 생성자
- JavaScript
- OGNL
- 배열
- Android
- Java
- oracle
- Eclips
- 예외처리
- 어노테이션
- 에러페이지
- 기본
- AWT
- mybatis
- 전화걸기
- Spring
- 메소드
- 이클립스
- 클래스
- Graphic
- struts2
- 안드로이드
- 국제화
- 메서드
- HTML
- Menu
- layout
- paint
Archives
- Today
- Total
note
플리퍼 Flipper (화면을 동적으로 구현하고 싶을때 사용) 본문
<?xml version="1.0" encoding="utf-8"?> <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android" android:layout_width="fill_parent" android:layout_height="fill_parent" android:orientation="vertical" > <ViewFlipper android:id="@+id/details" android:layout_width="fill_parent" android:layout_height="fill_parent" android:layout_weight="1" > <ImageView android:layout_width="fill_parent" android:layout_height="fill_parent" android:src="@drawable/jessica" /> <ImageView android:layout_width="fill_parent" android:layout_height="fill_parent" android:src="@drawable/yuna" /> <ImageView android:layout_width="fill_parent" android:layout_height="fill_parent" android:src="@drawable/taeyeon" /> </ViewFlipper> <!-- android:orientation을 안쓰면 기본적으로 horizontal --> <LinearLayout android:layout_width="fill_parent" android:layout_height="fill_parent" android:layout_weight="1" > <Button android:id="@+id/flip_pre" android:layout_width="fill_parent" android:layout_height="wrap_content" android:layout_weight="1" android:text="페이지 이전" /> <Button android:id="@+id/flip_me" android:layout_width="fill_parent" android:layout_height="wrap_content" android:layout_weight="1" android:text="다음 페이지" /> </LinearLayout> </LinearLayout>
package com.commonsware.android.flipper1; //플리퍼 Flipper 화면을 동적으로 구현하고 싶을때 사용 import android.app.Activity; import android.os.Bundle; import android.widget.Button; import android.widget.ViewFlipper; import android.view.View; public class FilipperDemo extends Activity implements View.OnClickListener{ ViewFlipper flipper; Button btnPre, btnNext; @Override public void onCreate(Bundle savedInstanceState) { super.onCreate(savedInstanceState); setContentView(R.layout.main); flipper=(ViewFlipper)findViewById(R.id.details); btnPre = (Button)findViewById(R.id.flip_pre); btnNext= (Button)findViewById(R.id.flip_me); //이벤트 소스와 이벤트 리스너가 구현된 객체 연결 btnPre.setOnClickListener(this); btnNext.setOnClickListener(this); } //이벤트 핸들러 public void onClick(View view) { if(view.getId()==R.id.flip_me){ flipper.showNext(); }else{ flipper.showPrevious(); } } }
'Android > 기본' 카테고리의 다른 글
Menu Xml (새로운 xml 파일 만들어 연결하기) 인플레이션 (0) | 2012.01.11 |
---|---|
메뉴 Menu (0) | 2012.01.11 |
Intent Tab 권한설정, Manifest.xml(설정) (0) | 2012.01.10 |
Tab 탭 (0) | 2012.01.10 |
Chrono 시간 , 날짜 처리 (0) | 2012.01.10 |