본문 바로가기

Android/ImageView scaleType

Android ImageView scaleType example

Android 에서 SeekBar를 이용하여 ImageView의 Scale 을 변경하는 예

seekbar_main.xml

<?xml version="1.0" encoding="utf-8"?> <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android" android:layout_width="match_parent" android:layout_height="match_parent" android:orientation="vertical" > <SeekBar android:id="@+id/seekBar1" android:layout_width="match_parent" android:layout_height="wrap_content" android:max="100" /> <ImageView android:id="@+id/imageView1" android:layout_width="wrap_content" android:layout_height="wrap_content" android:scaleType="matrix" android:src="@drawable/mountain" /> </LinearLayout>


SeekBarDemo.java

package com.example.androidtest; import android.app.*; import android.graphics.Matrix; import android.os.Bundle; import android.widget.*; import android.widget.SeekBar.OnSeekBarChangeListener; public class SeekBarDemo extends Activity implements OnSeekBarChangeListener { SeekBar sb; ImageView iv; @Override protected void onCreate(Bundle savedInstanceState) { super.onCreate(savedInstanceState); setContentView(R.layout.seekbar_main); sb = (SeekBar) findViewById(R.id.seekBar1); sb.setProgress(100); sb.setOnSeekBarChangeListener(this); iv = (ImageView) findViewById(R.id.imageView1); } public void onProgressChanged(SeekBar seekBar, int progress, boolean fromUser) { Matrix matrix = new Matrix(); matrix.postScale(progress/100.0f, progress/100.0f); iv.setImageMatrix(matrix); } public void onStartTrackingTouch(SeekBar seekBar) {} public void onStopTrackingTouch(SeekBar seekBar) {} }