主屏幕仅包含搜索,我希望背景图像成为我的徽标。
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:background="@drawable/image"
tools:context=".MainActivity" >
<EditText
android:id="@+id/editText1"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:inputType="text"
android:layout_alignParentBottom="true"
android:layout_alignParentLeft="true"
android:layout_marginBottom="178dp"
android:layout_marginLeft="40dp"
android:ems="10" />
<SearchView
android:id="@+id/searchView1"
android:layout_width="300dp"
android:layout_height="wrap_content"
android:layout_alignTop="@+id/editText1" >
</SearchView>
我需要显示完整尺寸的图像,此代码以平铺格式显示我的徽标的许多副本。