0

画像を表示するこのアクティビティがあります。デフォルトでは中央に表示されることを期待していますが、画像が画面の左上に表示され、画像を押すまでに時間は中心。

ズーム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 に切り替えると、画像は最初に画面の左上に表示され、次に触れるとセンターに移動。

4

3 に答える 3

1

android:scaleType代わりに使用してみてください。( ImageView スケール タイプ)

<ImageView
    android:id="@+id/iv_photo"
    android:layout_width="fill_parent"
    android:layout_height="fill_parent"
    android:scaleType="center" />
于 2013-10-03T04:23:54.250 に答える
0

使用するandroid:scaletype="center"

<ImageView
    android:id="@+id/iv_photo"
    android:layout_width="fill_parent"
    android:layout_height="fill_parent"
    android:layout_gravity="center" 
    android:scaleType="center"/>

または高さと幅を作るwrap_contentとうまくいきます

<ImageView
    android:id="@+id/img"
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:layout_gravity="center"/>

これにより、親ビューに従ってコントロールが中央に作成されます

android:layout_gravity="center"
于 2013-10-03T04:28:05.703 に答える