我遇到以下問題;在LinearLayout中縮放背景圖像
我有一個LinearLayout在其中一個ScrollView,在ScrollView中是一些自定義視圖。現在我想在LinearLayout的背景中放置一個圖像並保持圖像的原始大小。但是當我設置LinearLayout的背景屬性時,它會拉伸以適應全屏。我怎樣才能讓圖像保持原有尺寸?
我的XML:
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout
xmlns:android="http://schemas.android.com/apk/res/android"
android:id="@+id/root"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:background="@drawable/some_drawable">
<ScrollView
android:id="@+id/scrollview"
android:layout_height="wrap_content"
android:layout_width="fill_parent"
android:fillViewport="true">
<some.custom.layout
android:id="@+id/mainLayout"
android:layout_height="wrap_content"
android:layout_width="fill_parent"
/>
</ScrollView>
</LinearLayout>
這對我工作,非常感謝! – Joris 2011-05-04 08:28:14
這很好,但我認爲更優雅的解決方案,可以在這裏找到:http://stackoverflow.com/questions/2781593/background-image-placement – iganev 2013-10-08 11:52:32