如何将布局背景图像调整为居中?

时间:2014-06-12 12:27:51

标签: android android-layout scaletype

当将图像作为背景分配给布局(线性||相对)时,它在整个布局上拉伸,但我想使背景图像成为在<{1}}:

中的布局布局
ImageButtons

是否有办法在android:scaleType="centerInside" Linear布局中实现这一目标?

3 个答案:

答案 0 :(得分:1)

你应该试试......

1。)将RelativeLayout属于matchParent两者。和centerInparent = true

2。)在其中取一个ImageView Property WrapContent。 现在采用inage视图的背景或src

答案 1 :(得分:1)

您可以在LayoutA中使用另一个布局LayoutB。并设置LayoutB的wrap_content的宽度和高度,并将图像设置为LayoutB的背景,并设置这样的到达:

android:layout_height="wrap_content"
android:layout_width="wrap_content"
android:layout_gravity="center"

答案 2 :(得分:1)

这会对你有所帮助

<?xml version="1.0" encoding="utf-8"?>
    <RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
        android:layout_width="match_parent"
        android:layout_height="match_parent" >

<ImageView
    android:id="@+id/someImage"
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:layout_centerInParent="true"
    android:src="@drawable/someImageSrc" />

</RelativeLayout>