我正在使用線性設計歌曲列表屏幕,在底部的線性佈局內部有一個相對佈局應該看起來像在圖像附件中,任何建議我怎樣才能圓底一個相對佈局,以及如何使用漸變顏色,因爲它附在圖像中顯示?從底部繞回相對佈局
0
A
回答
1
閱讀您可以使用相對佈局和爲四捨五入相對佈局使用背景圖片..
<RelatvieLayout>
android:id="@+id/relative"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:background="@drawable/curvebackground"
android:alignparent_bottom="true">
<ImageView
android:id="@+id/imageview"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:src="" // here source of the imageview
android:align_parentLeft="true"/>
<TextView
android:id="@+id/textview"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:align_centerInParent="true"/>
<Button
android:id="@+id/button"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:align_parentRight="true"
/>
</RelativeLayout>
編輯:
在相對佈局中添加這些行,以便它可以正確讀取到相應的屏幕寬度。
android:layout_alignParentBottom="true"
android:layout_alignParentRight="true"
android:layout_alignParentLeft="true"
0
可以定製覆蓋的LinearLayout中的的onDraw方法參見本文的詳細信息
http://developer.android.com/guide/topics/ui/custom-components.html
+0
感謝您的建議。 Rajdeep Dua請你詳細介紹一下如何使用onDraw方法繪製自定義的線性佈局?作爲新手,我從來沒有這樣做過,再次感謝 – aftab
0
只使用一個彎曲的背景 - 修改佈局的OnDraw似乎對你太大材小用問題。 使用相對大小屏幕上的弧形背景,你可能需要在9-patch
相關問題
- 1. 從底部創建相對佈局30%
- 2. Android Studio如何使相對佈局圍繞相對佈局?
- 3. 佈局上的相對佈局的底部覆蓋
- 4. 滾動相對佈局不顯示底部的佈局
- 5. 從動作欄底部對齊佈局
- 6. 如何將線性佈局中的相對佈局與底部對齊?
- 7. 在一個相對佈局屏幕的底部對齊意見
- 8. 對齊的父級底部相對佈局隱藏了回收站視圖
- 9. 底部的相對佈局隱藏了底部等效高度中間的佈局。我的XML是如下:
- 10. 如何將相對佈局放置在屏幕底部(或線性佈局)。
- 11. 發送回相對佈局
- 12. 底部對齊 - 響應式佈局
- 13. 地鐵佈局對齊底部
- 14. 我想將我的相對佈局放在底部
- 15. 如何放置相對佈局底部總是
- 16. 如何在底部的linearlayout中放置相對佈局
- 17. 地方與高度相對佈局底部的觀點WRAP_CONTENT
- 18. 如何將相對佈局停靠在屏幕底部
- 19. 試圖把圖像放在相對佈局的底部
- 20. 如何將中心置於相對佈局的底部空間?
- 21. 相對佈局底部視圖的交替可見性
- 22. 相對佈局底部的按鈕上升
- 23. EditText在相對佈局覆蓋視圖的底部
- 24. 以編程方式修復頁面底部的相對佈局
- 25. 如何在底部顯示相對佈局?
- 26. 安卓:相對佈局,把一個元素底部
- 27. 底部的佈局空間
- 28. 佈局不是在底部
- 29. 底部佈局棄用11.0
- 30. 如何在底部佈局
爲什麼不只是把圖片作爲背景與彎曲的底部 – blessenm
@ blessenm是好的,如果我使用同樣大小的屏幕,但它造成的問題時,針對不同的設備.thanks屏幕的大小變化。 。 。 – aftab