Q
顏色與線條
-3
A
回答
2
要實現對角線的背景,只需在Paint或Photoshop中創建一個單獨的小行。將其保存在Drawable文件夾中。
現在創建一個XML drawable。
diagonal_background.xml
<?xml version="1.0" encoding="utf-8"?>
<bitmap xmlns:android="http://schemas.android.com/apk/res/android"
android:src="@drawable/DiagonalLine"
android:tileMode="repeat"
android:dither="true"
>
</bitmap>
在您的佈局:
<?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="your_color"
>
<ImageView
android:layout_height="fill_parent"
android:layout_width="fill_parent"
android:background="@drawable/diagonal_background"
android:visibility="gone"/> <---- set it to gone and call it under an if-else statement
</LinearLayout>
編輯
您可以使用此設置查看從繪製背景:
layout.setBackground(ContextCompat.getDrawable(context, R.drawable.diagonal_background));
相關問題
- 1. SVG:線條顏色
- 2. 將箭頭顏色與D3中的線條顏色相匹配
- 3. CSS:線條通過與文本顏色不同的顏色?
- 4. Raphael:設置線條顏色
- 5. 線條顏色在MATLAB
- 6. 更改線條顏色
- 7. Android:刪除線條顏色
- 8. 線條顏色,線條樣式,線條重量組合框
- 9. 有條件地設置線條顏色
- 10. 負線時改變線條顏色
- 11. 地塊與集線顏色與顯示顏色略有不同
- 12. 使用顏色映射更改線條顏色
- 13. 圖例文本顏色按照jqplot中的線條顏色
- 14. řmatplot匹配圖例顏色線條顏色
- 15. 從綠盤Quantmod ChartSeries中線條顏色到另一種顏色
- 16. 如何在顏色表中的顏色之間插入線條?
- 17. 如何生成非線性顏色表/顏色條?
- 18. OHLC圖表的線條顏色
- 19. 用顏色條設置等值線圖
- 20. 指定大熊貓的線條顏色
- 21. 構建不正確的線條顏色
- 22. Qplot線條顏色和圖例美學
- 23. 線條的顏色沒有改變?
- 24. DropMode.INSERT_ROW中線條標記的顏色
- 25. pyplot.plot()修改線條顏色循環
- 26. GNUPLOT:boxplots可變線條樣式/顏色
- 27. 在TChart中設置線條顏色
- 28. 線條圖的SSRS自定義顏色
- 29. 更改圖形線條顏色
- 30. Actionbarsherlock - 更改操作欄線條顏色
你應該在這裏發佈圖像,而不是在外面託管它,所以我們肯定是不會離線 – rakwaht
我在堆棧託管圖像,但我沒有15的聲望 – xyz
簡單**瓦**一個紅色正方形如@Abhi所建議的那樣,採用對角黑線。 –