是否可以移动背景图像?

时间:2015-11-25 15:45:12

标签: android image background-image

我使用下面的代码设置了我的背景图片

<AbsoluteLayout xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:tools="http://schemas.android.com/tools" android:layout_width="match_parent"
    android:layout_height="match_parent" android:paddingLeft="@dimen/activity_horizontal_margin"
    android:paddingRight="@dimen/activity_horizontal_margin"
    android:paddingTop="@dimen/activity_vertical_margin"
    android:background="@mipmap/background_image"
    android:paddingBottom="@dimen/activity_vertical_margin" tools:context=".MainActivity">

我的带有背景图片的页面

enter image description here

我想知道是否有办法调整背景图像大小并将图像移动到左侧?

2 个答案:

答案 0 :(得分:1)

您可以使用BitmapDrawable调整背景位置。    但是你应该为它获得正确的大小mipmap。     back.xml

<?xml version="1.0" encoding="utf-8"?>
<bitmap xmlns:android="http://schemas.android.com/apk/res/android" android:src="@drawable/ic_launcher" android:gravity="left|top">
</bitmap>


android:background="@drawable/back"

答案 1 :(得分:0)

如果您想调整背景图像,那么您应该使用ImageView作为FrameLayout或RelativeLayout的第一个孩子,并且您可以根据您在Second Child或剩余孩子中的要求安排剩余的控件。