画像を表示するこのアクティビティがあります。デフォルトでは中央に表示されることを期待していますが、画像が画面の左上に表示され、画像を押すまでに時間は中心。
ズームxml
<?xml version="1.0" encoding="utf-8"?>
<FrameLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:layout_gravity="center" >
<ImageView
android:id="@+id/iv_photo"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:layout_gravity="center" />
<TextView
android:id="@+id/tv_current_matrix"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:layout_gravity="bottom|center_horizontal"
android:gravity="center"
android:background="#60000000"
android:textColor="@android:color/white" />
</FrameLayout>
アクティビティ
public void onCreate(Bundle savedInstanceState){
super.onCreate(savedInstanceState);
Window window = getWindow();
window.setGravity(Gravity.CENTER);
imageLoader = ImageLoader.getInstance();
imageLoader.init(ImageLoaderConfiguration.createDefault(getBaseContext()));
Intent intent = getIntent();
easyPuzzle = intent.getExtras().getString("imagePath");
setContentView(R.layout.zoom_image);
mImageView = (ImageView) findViewById(R.id.iv_photo);
mCurrMatrixTv = (TextView) findViewById(R.id.tv_current_matrix);
//aq.id(R.id.iv_photo).image(easyPuzzle.toString(), memCache, fileCache);
Log.d("#Zoom Picture CLass: Image Path ", ""+ easyPuzzle.toString());
//
//mImageView.setImageResource(R.drawable.beverages);
//new DisplayImage(mImageView)
//.execute(easyPuzzle);
DisplayImageOptions options = new DisplayImageOptions.Builder()
//Because you reuse view for different
//images you can see a previous image in the view while new image is loading. .resetViewBeforeLoading(true
.showImageForEmptyUri(R.drawable.content_picture)
.showImageOnFail(R.drawable.content_picture)
.cacheOnDisc(true)
.bitmapConfig(Bitmap.Config.RGB_565)
.build();
if(imageLoader!=null){
imageLoader.displayImage(easyPuzzle.toString(), mImageView, options);
}
// The MAGIC happens here!
mAttacher = new PhotoViewAttacher(mImageView);
// Lets attach some listeners, not required though!
mAttacher.setOnMatrixChangeListener(new MatrixChangeListener());
mAttacher.update();
}
アップデート
申し訳ありませんが、画像はズームインできることを忘れていました。そのため、画像が中央から全画面に引き伸ばされる可能性があります。
Universal-Image-Loader を使用して画像を表示しています。ドローアブルを使用すると、画像はすぐに中央に配置されますが、Universal-Image-Loader に切り替えると、画像は最初に画面の左上に表示され、次に触れるとセンターに移動。