如何在android上的整个屏幕上显示ImageView?

时间:2015-02-15 21:44:54

标签: java android imageview uri

在我的应用程序中,我需要从图库中获取图片(我有工作代码,这给了我图片的Uri)并将Uri放在ImageView中。我遇到的问题是pic并没有像我想要的那样覆盖整个屏幕,即使我在布局中将ImageVIew的高度和宽度设置为match_parent。有什么办法我可以设置画廊中的每张照片来显示整个画面吗?

这是我的代码:

public void onActivityResult(int requestCode, int resultCode, Intent data) {
    if (resultCode == RESULT_OK) {
        if (requestCode == SELECT_PICTURE) {
            selectedImageUri = data.getData();
            selectedImagePath = getPath(selectedImageUri);
            System.out.println("Image Path : " + selectedImagePath);              
            img.setImageURI(selectedImageUri);
        }
    }
}

public String getPath(Uri uri) {
    String[] projection = { MediaStore.Images.Media.DATA };
    Cursor cursor = managedQuery(uri, projection, null, null, null);
    int column_index = cursor.getColumnIndexOrThrow(MediaStore.Images.Media.DATA);
    cursor.moveToFirst();
    return cursor.getString(column_index);
}

public void onClick(View v) {
    // TODO Auto-generated method stub
    if(v.getId()==btn.getId())
    {
        Intent intent = new Intent();
        intent.setType("image/*");
        intent.setAction(Intent.ACTION_GET_CONTENT);
        startActivityForResult(Intent.createChooser(intent,"Select Picture"), SELECT_PICTURE);
    }
}

这是我的布局:

<RelativeLayout 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:orientation="horizontal" >

<RelativeLayout
    android:layout_width="wrap_content"
    android:layout_height="match_parent"
    android:layout_weight="30"
    android:orientation="vertical" >

        <Button
    android:id="@+id/gallery"
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:text="Button" />


                <ImageView
            android:id="@+id/pic"
            android:layout_width="fill_parent"
            android:layout_height="fill_parent"/>

</RelativeLayout>

1 个答案:

答案 0 :(得分:1)

您可以使用以下android:scaleType="fitXY"