如何生成背景图片?

时间:2014-07-10 16:36:56

标签: android background-image

我的布局如下 -

<ScrollView xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:tools="http://schemas.android.com/tools"
    android:layout_width="wrap_content"
    android:layout_height="wrap_content" >

<LinearLayout
    android:layout_width="match_parent"
    android:layout_height="wrap_content"
    android:background="@drawable/background"
    android:orientation="vertical"
    android:paddingBottom="@dimen/activity_vertical_margin"
    android:paddingLeft="@dimen/activity_horizontal_margin"
    android:paddingRight="@dimen/activity_horizontal_margin"
    android:paddingTop="@dimen/activity_vertical_margin"
    android:scrollbars="vertical"
    tools:context="com.example.MainActivity$FragmentRegister" >

    ...

和下图 - (download link)。

如何从此图片生成有效背景?它们的尺寸应该是多少?我应该为横向模式生成单独的图像吗?我应该以某种方式使用9-patches吗?

1 个答案:

答案 0 :(得分:0)

ImageViewScaleType属性一起使用。

<ImageView
android:layout_width="match_parent"
android:layout_height="match_parent"
android:src="@drawable/background"
android:scaleType="fitXY"
/>