請指教如何放置一個圖像作爲背景LinearLayout
所以這張圖片看起來像是,沒有拉伸,標題或什麼。如何設置背景不被拉伸?
1
A
回答
0
做出的LinearLayout android的高度和寬度爲WRAP_CONTENT在.xml文件中使用此代碼
android:layout_height="wrap_content"
android:layout_width="wrap_content"
設置背景圖像使用代碼
android:background="@drawable/image"
現在放置在圖像中繪製文件
4
其他解決方案是用XML定義圖像,並在背景中參考此XML:Background Image Placement
就像你可以控制你的圖像(背景)佈局
0
如果線性佈局的內容小於圖像高度,Jojo的解決方案可能會工作。 如果我添加兩個或自動編輯文本圖像開始拉伸。如果你仍然想避免並在後臺使用imageview,請使用下面的xml佈局。
<RelativeLayout
xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="fill_parent"
android:layout_height="fill_parent">
<ImageButton android:id="@+id/imageButton1" android:src="@drawable/icon" android:layout_width="fill_parent" android:layout_height="fill_parent" android:background="@null"></ImageButton>
<Button android:text="Button" android:id="@+id/button1" android:layout_width="wrap_content" android:layout_height="100px"></Button>
</RelativeLayout>
因爲只有圖像按鈕的src選項在圖像的寬度和高度上保持不變。
相關問題
- 1. 設置活動背景不拉伸
- 2. 不要拉伸ViewPager背景
- 3. TextView背景拉伸
- 4. UITableViewCell背景拉伸
- 5. 模擬器被拉伸的背景
- 6. 全屏背景圖像被拉伸
- 7. 重複的背景圖像被拉伸
- 8. 2背景拉伸1背景
- 9. 你如何拉伸背景圖像
- 10. CSS - 如何拉伸菜單的背景
- 11. 設置位置頂部的拉伸背景圖像
- 12. 拉伸iOS背景圖像
- 13. 拉伸背景圖片
- 14. 背景圖像拉伸
- 15. Android背景圖片拉伸
- 16. 動態拉伸UILabel背景。
- 17. 拉伸背景圖像
- 18. 背景圖片拉伸
- 19. Android:用背景拉伸ImageView
- 20. CSS拉伸背景圖片
- 21. JS拉伸背景圖像
- 22. CSS - 背景圖片拉伸
- 23. UITableViewController背景圖像拉伸
- 24. DIV背景不拉伸正確
- 25. 背景圖像不拉伸正確
- 26. 圖片設置爲開關按鈕的背景下被拉伸的Android
- 27. 以編程方式設置LinearLayout的背景是拉伸圖像
- 28. Android,設置背景拉伸或放大,但從未正確
- 29. 裁剪圖像設置爲背景而無需拉伸
- 30. Xcode如何使背景位置(中心或拉伸)
他問如何確保圖像不被拉伸。使用您的解決方案,如果線性佈局的內容變得比圖像更大,則圖像將再次伸展。你如何解決這個問題? – 2014-02-04 16:58:33