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
- mybatis
- 어노테이션
- struts2
- OGNL
- Java
- layout
- JSP
- 생성자
- 이클립스
- paint
- 오버로딩
- 메소드
- 전화걸기
- AWT
- 배열
- Spring
- 에러페이지
- Eclips
- 국제화
- Menu
- HTML
- 예외처리
- 안드로이드
- oracle
- 기본
- 메서드
- Graphic
- 클래스
- JavaScript
- Android
Archives
- Today
- Total
note
Android 이미지 넣기 본문
package com.commonsware.android.basic;
import android.app.Activity;
import android.os.Bundle;
public class ImageViewDemo extends Activity {
@Override
public void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.main);
}
}
<?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" >
<!-- adjustViewBounds 종횡비율 맞춰서 크기 줄이기 -->
<ImageView
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:adjustViewBounds="true"
android:src="@drawable/psy" />
</LinearLayout>
'Android > 기본' 카테고리의 다른 글
| Android 체크 박스 (0) | 2012.01.05 |
|---|---|
| Android 필드 박스 (0) | 2012.01.05 |
| Android 간단한 이벤트 3 (0) | 2012.01.05 |
| Android 간단한 이벤트2 (0) | 2012.01.05 |
| Android 간단한 이벤트 (0) | 2012.01.05 |