drawable的<bitmap/>标签实现图片复用repeatMode效果

来源:互联网 发布:ubuntu官网下载 编辑:程序博客网 时间:2024/05/29 17:58
实现图片重复效果
1、原图
ss
效果图:
ss

2、实现:
1)原图:crop__tile.png
ss
2)定义drawable:crop__texture.xml
<?xml version="1.0" encoding="utf-8"?>
<bitmap xmlns:android="http://schemas.android.com/apk/res/android"
android:src="@drawable/crop__tile"
android:tileMode="repeat" />
3)使用,注意是background
<ImageView
android:id="@+id/crop_image"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:background="@drawable/crop__texture"
/>

阅读全文
0 0