Q
顏色漸變的背景
-3
A
回答
0
這裏試試這個在:
<?xml version="1.0" encoding="UTF-8"?>
<shape xmlns:android="http://schemas.android.com/apk/res/android"android:shape="rectangle" >
<gradient
android:angle="90"
android:centerColor="Your Color"
android:endColor="Your Color"
android:startColor="Your Color"
android:type="linear" />
</shape>
0
在/RES /繪製創建gradient.xml:
<?xml version="1.0" encoding="utf-8"?>
<shape xmlns:android="http://schemas.android.com/apk/res/android"
android:shape="rectangle">
<gradient
android:startColor="#FFFFFF"
android:endColor="#00000000"
android:angle="45"/>
</shape>
,並在/RES /佈局您main.xml中佈局文件:
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:orientation="vertical"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:background="@drawable/gradient">
</LinearLayout>
您可以通過更換機器人指定角:值和開始/結束顏色通過替換android:startColor和android:endColor
0
製作一個xml文件水庫>繪製文件夾命名background.xml和下面編輯:
<shape xmlns:android="http://schemas.android.com/apk/res/android" android:shape="rectangle" >
<gradient
android:type="radial"
android:centerX="50%"
android:centerY="50%"
android:startColor="#FFFF8205"
android:endColor="#FFF7F7F7"
android:gradientRadius="100"/>
</shape>
在activity_main.xml中的文件引用
現在這個作爲父佈局的背景
<LinearLayout
.......
android:background="@drawable/background">
.....
</LinearLayout>
相關問題
- 1. 漸變顏色背景?
- 2. 爲surfaceview設置漸變背景顏色
- 3. 更改背景顏色作爲漸變
- 4. 將背景設置爲漸變顏色
- 5. IE11漸變顏色在背景
- 6. 逐漸改變背景顏色,所有的顏色不斷
- 7. 如果背景漸變,如何將邊框顏色更改爲背景顏色?
- 8. IE漸變濾鏡背景覆蓋活動背景顏色
- 9. 將導航欄顏色混合到背景顏色(漸變?)
- 10. 爲uibutton背景圖像設置漸變顏色(顏色)iphone sdk
- 11. 用顏色漸變更改背景顏色
- 12. R:ggplot背景漸變着色
- 13. 子圖背景漸變色
- 14. 的UILabel更改背景顏色逐漸
- 15. 在列表項上懸停背景顏色變化的漸變
- 16. 背景漸變
- 17. 漸變背景
- 18. Safari中的顏色背景中的透明漸變問題
- 19. jQuery的獲得背景漸變色
- 20. 帶純色的背景漸變
- 21. 如何改變背景顏色和背景顏色?
- 22. 如何製作更平滑的漸變背景顏色
- 23. 將顏色和漸變應用於QPushButton的背景
- 24. 如何停止重複自身的背景顏色漸變? (css)
- 25. UIButton的背景顏色逐漸變暗觸摸下拖動
- 26. 逐漸改變Swift中的背景顏色
- 27. 如何使用平坦顏色的CSS漸變製作背景?
- 28. 什麼是Android EditText中背景的默認顏色漸變?
- 29. 帶漸變顏色的CSS背景樣式
- 30. Android:使用seekbar逐漸改變多個imageview背景的顏色
你嘗試過什麼到目前爲止? –
如果您可以發佈您嘗試過的一些示例,這將有所幫助,因此我們可以幫助您診斷出現問題的原因。 – theatlasroom