안녕하세요 안드로 초보자 입니다 ㅠㅠ

제가 화면에 ImageView 를 통해서 이미지를 하나 불러왔는데요.

핸드폰상에서 볼때는 글씨가 작아서 이것을 확대하고 싶은데,,

손가락으로 사선으로 드래그 하면 확대 되잖아요?

그기능을 추가 하고싶어서 질문합니다. !!!!!!!!!

이기능을 어디다 추가 하면되나요 ㅠㅠ?

소스는 이렇게 되구요..

<?xml version="1.0" encoding="utf-8"?>
<!-- 총장인사말 화면 -->
<!-- Absolute 를 이용 이미지와 버튼 원하는곳에 지정 -->
<AbsoluteLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:background="@drawable/ba2"
android:layout_width="fill_parent"
android:layout_height="fill_parent" android:orientation="vertical">
<!-- Linear를 이용 버튼을 가로정렬 -->
<LinearLayout
android:layout_height="fill_parent"
android:id="@+id/linearLayout1"
android:background="@drawable/ba2"
android:layout_width="fill_parent"
android:orientation="horizontal"
android:layout_x="0dip" android:layout_y="400dip">

<Button android:id="@+id/back"
android:background="@drawable/back"
android:layout_width="160px" android:layout_height="110px"/>

<Button android:id="@+id/road"
android:background="@drawable/road"
android:layout_width="160px" android:layout_height="110px"/>

<Button android:id="@+id/map"
android:background="@drawable/map"
android:layout_width="160px" android:layout_height="110px"/>
</LinearLayout>

<ImageView android:src="@drawable/chongjang"
android:layout_height="wrap_content" android:layout_width="wrap_content"
android:id="@+id/chongjang" android:layout_x="0dip" android:layout_y="-40dip"/>
</AbsoluteLayout>

화면 출력화면은 이렇게 됩니다. 이부분에서

저기 총장 말씀을 확대하고 싶어요!!!!!!!!!!

도와주세요!!!!!!!!!!