Roy*_*Lee 2 android background android-imageview
有没有办法在android中绘制'strip-lines'作为背景?
图片附件更好地说明:(Youtube App)

添加wood_pattern.xml到res/drawable/:
<layer-list xmlns:android="http://schemas.android.com/apk/res/android">
<item>
<bitmap
android:src="@drawable/bg_wood"
android:tileMode="repeat"
android:dither="true"
android:antialias="true"/>
</item>
</layer-list>
Run Code Online (Sandbox Code Playgroud)
将此设置为背景:
android:background="@drawable/wood_pattern"
Run Code Online (Sandbox Code Playgroud)