是否可以移动背景图像?
Is it possible to move the 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">
我的带有背景图片的页面
不知道有没有办法调整背景图片的大小,并且可以把图片移到左边?
您可以使用 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"
如果你想调整背景图片,那么你应该使用 ImageView 作为 FrameLayout 或 RelativeLayout 的 First Child,你可以根据你的要求在 Second Child 或 remaining child 中安排剩余的控件。
我已经使用下面的代码设置了我的背景图片
<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">
我的带有背景图片的页面
不知道有没有办法调整背景图片的大小,并且可以把图片移到左边?
您可以使用 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"
如果你想调整背景图片,那么你应该使用 ImageView 作为 FrameLayout 或 RelativeLayout 的 First Child,你可以根据你的要求在 Second Child 或 remaining child 中安排剩余的控件。