我有一個很大的png,我想在不同的佈局上使用它作爲背景,但抵消了它,以便我可以顯示不同的部分(很像您可以在CSS中),最好在xml中。Android佈局 - 在xml中抵消背景圖片
我該活動主要佈局包含以下XML:
<LinearLayout
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:background="@layout/bg1">
佈局BG1由以下的xml:
<?xml version="1.0" encoding="utf-8"?>
<bitmap
xmlns:android="http://schemas.android.com/apk/res/android"
android:src="@drawable/big_image"
android:layout_marginTop="50sp"
android:paddingTop="50sp"
android:gravity="top|left" />
重力屬性按預期工作,但邊距和補被忽略,大概是因爲我正在處理位圖對象而不是佈局。我想要做的是將這些設置爲負數,以便只顯示部分圖片。我試過使用一個形狀,但只包裝內容,而我需要填充整個背景。
任何建議將受到感謝。謝謝。
解決與以下,確保ImageView的是在XML的頂部,使得它是所有其他控制背後: –
2011-01-27 16:05:53