如您所见,我有一个框架布局,在其中,我有一个ImageView
。当我使用下面的代码并将图像设置为ImageView
时,图像不会出现在屏幕的中央,而框架和ImageView
不会包裹图像。换句话说,FrameLayout
中的一些白色空白出现在图像之外。我只想做FrameLayout
和图像视图的大小与图像相同,并使它们在屏幕中居中。
<FrameLayout
android:id="@+id/editor_frame"
android:layout_width="wrap_content"
android:layout_height="wrap_content">
<ImageView
android:id="@+id/image_view"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_alignParentLeft="true"
android:layout_alignParentTop="true"
android:contentDescription="@null"
android:scaleType="centerInside"
android:adjustViewBounds="true" />
</FrameLayout>
答案 0 :(得分:0)
将图像置于布局中心:
<RelativeLayout
android:id="@+id/editor_frame"
android:layout_width="match_parent"
android:layout_height="match_parent">
<ImageView
android:id="@+id/image_view"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_centerInParent="true"
android:contentDescription="@null"
android:adjustViewBounds="true" />
</RelativeLayout>
答案 1 :(得分:0)
中心水平和垂直必须在FrameLayout
中生效,然后它将位于父布局的中心,同时使用ImageView
。它将在FrameLayout
<FrameLayout
android:id="@+id/editor_frame"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_centerHorizontal="true"
android:layout_centerVertical="true">
<ImageView
android:id="@+id/image_view"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:contentDescription="@null"
android:layout_centerHorizontal="true"
android:layout_centerVertical="true"
android:adjustViewBounds="true" />
</FrameLayout>