1

我在 xml 中有一个 ImageView (image_view),我将布局重力设置为中心,将比例设置为 center_inside....但是当我将压缩的 bmp 传递给 image_view 时,它会将它放在中间的左侧屏幕(纵向模式)...关于解决方法的任何想法?

这是我将其设置为图像视图:

        ImageView imageView = (ImageView) findViewById(R.id.image_view);

        imageView.setImageBitmap(bitmap565);

我还在输出流中压缩它:

        try {
            FileOutputStream fos = new FileOutputStream(filepath);

            bitmap565.compress(CompressFormat.JPEG, 90, fos);

            fos.flush();
            fos.close();
        } catch (FileNotFoundException e) {
            e.printStackTrace();
        } catch (IOException e) {
            e.printStackTrace();
        }

谢谢大家!

    <ImageButton android:id="@+id/ImageButton01" android:layout_width="wrap_content" android:layout_height="wrap_content" android:background="@drawable/results" android:layout_gravity="top|center"></ImageButton><ImageView
            android:screenOrientation="portrait"
            android:layout_width="fill_parent"
            android:id="@+id/image_view"
            android:layout_gravity="center" android:layout_weight="1.0" android:layout_height="wrap_content" android:scaleType="centerInside"/>

    <Button
            android:screenOrientation="portrait"
            android:layout_height="wrap_content"
            android:layout_gravity="center_horizontal" android:layout_width="fill_parent" android:textStyle="bold" android:id="@+id/detect_face" android:text="Detect"/>

4

2 回答 2

1

ImageView的 'slayout_width设置为fill_parent,因此layout_gravity不会影响其在其父级中的水平位置。尝试使用gravity代替layout_gravity,或wrap_content代替fill_parent

于 2010-11-18T19:31:09.730 回答
1

您只需使用 FrameLayout 即可解决您的问题。

于 2010-11-19T06:09:46.023 回答