我有这个显示图像的活动,我希望它默认显示在中央,但是它转动的是图像显示在屏幕的左上角,当我按下图像的时候,去中心。
zoom 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来显示图像,如果我使用 drawable ,图像会立即居中,但如果我切换到Universal-Image-Loader,图像是首先显示在屏幕的最左上方然后如果我触摸它,然后转移到中心。
答案 0 :(得分:1)
请尝试使用android:scaleType
。 (ImageView Scale Type)
<ImageView
android:id="@+id/iv_photo"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:scaleType="center" />
答案 1 :(得分: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"
答案 2 :(得分:0)
<ImageView
android:id="@+id/img"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:src="@drawable/ic_launcher"
android:layout_gravity="center" />
或者你可以使用相对布局如下..
<ImageView
android:id="@+id/img"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_centerHorizontal="true"
android:layout_centerVertical="true"
android:src="@drawable/ic_launcher" />