你们对这一头脑使用什么样的形象? 使用固定的子板大小图像是一种坏的观念,同样是因为你不得不处理多少决议。 如果能找到你重新尝试使用的那种背景的话,那么你就应当看一看9幅图像。 之后,仅仅确定了布局,以填补父母,并将在必要时自动予以撤销。
http://developer.android.com/guide/topics/graphics/2d-graphics.html#nine-TOP
EDIT:很难确切地告诉你,但我建议像以下,而不是像《图像评论》一样:
<RelativeLayout
xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="fill_parent"
android:layout_height="{whatever height you have set}"
android:id="@+id/header_relative_layout"
android:background="@drawable/gradient"
>
<ImageView
android:id="@+id/header_imageview"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:gravity="center_vertical"
android:layout_alignParentLeft="true"
android:src="@drawable/header_image"
/>
<TextView
android:id="@+id/header_textview"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:text="@string/header_text"
android:layout_toRightOf="@id/header_imageview"
android:layout_marginLeft="10dp"
/>
</RelativeLayout>
梯度。
<shape
xmlns:android="http://schemas.android.com/apk/res/android"
android:shape="rectangle"
>
<gradient
android:startColor="#FFFF0000"
android:endColor="#80FF00FF"
android:angle="270"
/>
</shape>
我实际上没有这样做,但应该相当接近。 这样,你就不必每次造影, w子将自动填满全部屏幕。
这是否有助于?