Android背景延伸而不是重复

时间:2015-07-13 10:27:40

标签: android xml image background repeat

我有以下两个XML文件:

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="fill_parent"
    android:layout_height="fill_parent"
    android:background="@drawable/noise"
    android:orientation="vertical">

    <ImageView
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:id="@+id/newsHeader"
        android:background="@drawable/news_header" />

    <TextView
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:text="New Text"
        android:id="@+id/textView14"
        android:password="false"
        android:layout_marginTop="100dp" />
</LinearLayout>

<?xml version="1.0" encoding="utf-8"?>
<bitmap xmlns:android="http://schemas.android.com/apk/res/android"
    android:src="@drawable/noisejpg"
    android:tileMode="repeat" />

当我打开主XML时,背景被拉伸而不是重复。为什么会这样?

0 个答案:

没有答案