Android自定义View-使用BitmapShader实现圆形图片(叁)

整个代码主要使用了三个工具:Paint(画笔-用来绘图),BitmapShader(着色器-拉伸图片,画笔的助手),Martix(矩阵-用来缩放图片,着色器的小助手)

整体思路为:
1.重写onMeasure方法获取View宽高的最小值,并将最小值设置为该View的宽与高
2.获取图片资源,并用着色器拉伸放缩图片
3.将着色器配置给画笔,并在画布上将圆形图案画出来

代码实现
首先新建一个CircleImageView.java的类,让其继承androidx.appcompat.widget.AppCompatImageView
实现三个构造器方法,我们主要用到含两个参数的构造方法。
1.定义初始变量
private Paint mPaint; //创建画笔

private int mRadius;    //图片的半径大小

private Matrix mMartix;     //缩放图片的矩阵

private Bitmap mBitmap;     //Bitmap图片资源

private BitmapShader mBitmapShader;    //Bitmap着色器,对bitmap进行拉伸

2.重写onMeasure()函数,获取并设置View的宽高
先通过获取图片的最短宽高让图片的宽度与高度保持一致,除以2后即为半径大小
//通过获取图片的最短宽高让图片的宽高保持一致,除以2后即为半径大小
mRadius = Math.min(getMeasuredWidth(), getMeasuredHeight()) / 2;
然后再重新设置视图的宽高
//重新设置视图的宽高
setMeasuredDimension(mRadius * 2, mRadius * 2);
onMeasure()部分的完整代码为:
@Override
protected void onMeasure(int widthMeasureSpec, int heightMeasureSpec) {
super.onMeasure(widthMeasureSpec, heightMeasureSpec);
mRadius = Math.min(getMeasuredWidth(), getMeasuredHeight()) / 2;
setMeasuredDimension(mRadius * 2, mRadius * 2);
}
3.进行初始化操作
在第二个构造器中添加init()函数
public CircleImageView(Context context, @Nullable AttributeSet attrs) {
super(context, attrs);
init();
}
新建init()函数,在其中进行初始化操作
第一步先判断是否有图片资源存在,如果没有话就不继续执行后面的方法了
if (getDrawable() == null){
return;
}
接下来我们先对画笔,矩阵进行初始化设置,并将Drawable转化为Bitmap
https://github.com/users/tyw80974936/projects/1518
https://github.com/users/tyw80974936/projects/1519
https://github.com/users/tyw80974936/projects/1520
https://github.com/users/tyw80974936/projects/1521
https://github.com/users/tyw80974936/projects/1522
https://github.com/users/tyw80974936/projects/1523
https://github.com/users/tyw80974936/projects/1524
https://github.com/users/tyw80974936/projects/1525
https://github.com/users/tyw80974936/projects/1526
https://github.com/users/tyw80974936/projects/1527
https://github.com/users/tyw80974936/projects/1528
https://github.com/users/tyw80974936/projects/1529
https://github.com/users/tyw80974936/projects/1530
https://github.com/users/tyw80974936/projects/1531
https://github.com/users/tyw80974936/projects/1532
https://github.com/users/tyw80974936/projects/1533
https://github.com/users/tyw80974936/projects/1534
https://github.com/users/tyw80974936/projects/1535
https://github.com/users/tyw80974936/projects/1536
https://github.com/users/tyw80974936/projects/1537
https://github.com/users/tyw80974936/projects/1538
https://github.com/users/tyw80974936/projects/1539
https://github.com/users/tyw80974936/projects/1540
https://github.com/users/tyw80974936/projects/1541
https://github.com/users/tyw80974936/projects/1542
https://github.com/users/tyw80974936/projects/1543
https://github.com/users/tyw80974936/projects/1544
https://github.com/users/tyw80974936/projects/1545
https://github.com/users/tyw80974936/projects/1546
https://github.com/users/tyw80974936/projects/1547
https://github.com/users/tyw80974936/projects/1548
https://github.com/users/tyw80974936/projects/1549
https://github.com/users/tyw80974936/projects/1550
https://github.com/users/tyw80974936/projects/1551
https://github.com/users/tyw80974936/projects/1552
https://github.com/users/tyw80974936/projects/1553
https://github.com/users/tyw80974936/projects/1554
https://github.com/users/tyw80974936/projects/1555
https://github.com/users/tyw80974936/projects/1556
https://github.com/users/tyw80974936/projects/1557
https://github.com/users/tyw80974936/projects/1558
https://github.com/users/tyw80974936/projects/1559
https://github.com/users/tyw80974936/projects/1560
https://github.com/users/tyw80974936/projects/1561
https://github.com/users/tyw80974936/projects/1562
https://github.com/users/tyw80974936/projects/1563
https://github.com/users/tyw80974936/projects/1564
https://github.com/users/tyw80974936/projects/1565
https://github.com/users/tyw80974936/projects/1566
https://github.com/users/tyw80974936/projects/1567
https://github.com/users/tyw80974936/projects/1568
https://github.com/users/tyw80974936/projects/1569
https://github.com/users/tyw80974936/projects/1570
https://github.com/users/tyw80974936/projects/1571
https://github.com/users/tyw80974936/projects/1572
https://github.com/users/tyw80974936/projects/1573
https://github.com/users/tyw80974936/projects/1574
https://github.com/users/tyw80974936/projects/1575
https://github.com/users/tyw80974936/projects/1576
https://github.com/users/tyw80974936/projects/1577
https://github.com/users/tyw80974936/projects/1578
https://github.com/users/tyw80974936/projects/1579
https://github.com/users/tyw80974936/projects/1580
https://github.com/users/tyw80974936/projects/1581
https://github.com/users/tyw80974936/projects/1582
https://github.com/users/tyw80974936/projects/1583
https://github.com/users/tyw80974936/projects/1584
https://github.com/users/tyw80974936/projects/1585
https://github.com/users/tyw80974936/projects/1586
https://github.com/users/tyw80974936/projects/1587
https://github.com/users/tyw80974936/projects/1588
https://github.com/users/tyw80974936/projects/1589
https://github.com/users/tyw80974936/projects/1590
https://github.com/users/tyw80974936/projects/1591
https://github.com/users/tyw80974936/projects/1592
https://github.com/users/tyw80974936/projects/1593
https://github.com/users/tyw80974936/projects/1594
https://github.com/users/tyw80974936/projects/1595
https://github.com/users/tyw80974936/projects/1596
https://github.com/users/tyw80974936/projects/1597
https://github.com/users/tyw80974936/projects/1598
https://github.com/users/tyw80974936/projects/1599
https://github.com/users/tyw80974936/projects/1600
https://github.com/users/tyw80974936/projects/1601
https://github.com/users/tyw80974936/projects/1602
https://github.com/users/tyw80974936/projects/1603
https://github.com/users/tyw80974936/projects/1604
https://github.com/users/tyw80974936/projects/1605
https://github.com/users/tyw80974936/projects/1606
https://github.com/users/tyw80974936/projects/1607
https://github.com/users/tyw80974936/projects/1608
https://github.com/users/tyw80974936/projects/1609
https://github.com/users/tyw80974936/projects/1610
https://github.com/users/tyw80974936/projects/1611
https://github.com/users/tyw80974936/projects/1612
https://github.com/users/tyw80974936/projects/1613
https://github.com/users/tyw80974936/projects/1614
https://github.com/users/tyw80974936/projects/1615
https://github.com/users/tyw80974936/projects/1616
https://github.com/users/tyw80974936/projects/1617
https://github.com/users/tyw80974936/projects/1618
https://github.com/users/tyw80974936/projects/1619
https://github.com/users/tyw80974936/projects/1620
https://github.com/users/tyw80974936/projects/1621
https://github.com/users/tyw80974936/projects/1622
https://github.com/users/tyw80974936/projects/1623
https://github.com/users/tyw80974936/projects/1624
https://github.com/users/tyw80974936/projects/1625
https://github.com/users/tyw80974936/projects/1626
https://github.com/users/tyw80974936/projects/1627
https://github.com/users/tyw80974936/projects/1628
https://github.com/users/tyw80974936/projects/1629
https://github.com/users/tyw80974936/projects/1630
https://github.com/users/tyw80974936/projects/1631
https://github.com/users/tyw80974936/projects/1632
https://github.com/users/tyw80974936/projects/1633
https://github.com/users/tyw80974936/projects/1634
https://github.com/users/tyw80974936/projects/1635
https://github.com/users/tyw80974936/projects/1636
https://github.com/users/tyw80974936/projects/1637
https://github.com/users/tyw80974936/projects/1638
https://github.com/users/tyw80974936/projects/1639
https://github.com/users/tyw80974936/projects/1640
https://github.com/users/tyw80974936/projects/1641
https://github.com/users/tyw80974936/projects/1642
https://github.com/users/tyw80974936/projects/1643
https://github.com/users/tyw80974936/projects/1644
https://github.com/users/tyw80974936/projects/1645
https://github.com/users/tyw80974936/projects/1646
https://github.com/users/tyw80974936/projects/1647
https://github.com/users/tyw80974936/projects/1648
https://github.com/users/tyw80974936/projects/1649
https://github.com/users/tyw80974936/projects/1650
https://github.com/users/tyw80974936/projects/1651
https://github.com/users/tyw80974936/projects/1652
https://github.com/users/tyw80974936/projects/1653
https://github.com/users/tyw80974936/projects/1654
https://github.com/users/tyw80974936/projects/1655
https://github.com/users/tyw80974936/projects/1656
https://github.com/users/tyw80974936/projects/1657
https://github.com/users/tyw80974936/projects/1658
https://github.com/users/tyw80974936/projects/1659
https://github.com/users/tyw80974936/projects/1660
https://github.com/users/tyw80974936/projects/1661
https://github.com/users/tyw80974936/projects/1662
https://github.com/users/tyw80974936/projects/1663
https://github.com/users/tyw80974936/projects/1664
https://github.com/users/tyw80974936/projects/1665
https://github.com/users/tyw80974936/projects/1666
https://github.com/users/tyw80974936/projects/1667
https://github.com/users/tyw80974936/projects/1668
https://github.com/users/tyw80974936/projects/1669
https://github.com/users/tyw80974936/projects/1670
https://github.com/users/tyw80974936/projects/1671
https://github.com/users/tyw80974936/projects/1672
https://github.com/users/tyw80974936/projects/1673
https://github.com/users/tyw80974936/projects/1674
https://github.com/users/tyw80974936/projects/1675
https://github.com/users/tyw80974936/projects/1676
https://github.com/users/tyw80974936/projects/1677
https://github.com/users/tyw80974936/projects/1678
https://github.com/users/tyw80974936/projects/1679
https://github.com/users/tyw80974936/projects/1680
https://github.com/users/tyw80974936/projects/1681
https://github.com/users/tyw80974936/projects/1682
https://github.com/users/tyw80974936/projects/1683
https://github.com/users/tyw80974936/projects/1684
https://github.com/users/tyw80974936/projects/1685
https://github.com/users/tyw80974936/projects/1686
https://github.com/users/tyw80974936/projects/1687
https://github.com/users/tyw80974936/projects/1688
https://github.com/users/tyw80974936/projects/1689
https://github.com/users/tyw80974936/projects/1690
https://github.com/users/tyw80974936/projects/1691
https://github.com/users/tyw80974936/projects/1692
https://github.com/users/tyw80974936/projects/1693
https://github.com/users/tyw80974936/projects/1694
https://github.com/users/tyw80974936/projects/1695
https://github.com/users/tyw80974936/projects/1696
https://github.com/users/tyw80974936/projects/1697
https://github.com/users/tyw80974936/projects/1698
https://github.com/users/tyw80974936/projects/1699
https://github.com/users/tyw80974936/projects/1700
https://github.com/users/tyw80974936/projects/1701
https://github.com/users/tyw80974936/projects/1702
https://github.com/users/tyw80974936/projects/1703
https://github.com/users/tyw80974936/projects/1704
https://github.com/users/tyw80974936/projects/1705
https://github.com/users/tyw80974936/projects/1706
https://github.com/users/tyw80974936/projects/1707
https://github.com/users/tyw80974936/projects/1708
https://github.com/users/tyw80974936/projects/1709
https://github.com/users/tyw80974936/projects/1710
https://github.com/users/tyw80974936/projects/1711
https://github.com/users/tyw80974936/projects/1712
https://github.com/users/tyw80974936/projects/1713
https://github.com/users/tyw80974936/projects/1714
https://github.com/users/tyw80974936/projects/1715
https://github.com/users/tyw80974936/projects/1716
https://github.com/users/tyw80974936/projects/1717
https://github.com/users/tyw80974936/projects/1718
https://github.com/users/tyw80974936/projects/1719
https://github.com/users/tyw80974936/projects/1720
https://github.com/users/tyw80974936/projects/1721
https://github.com/users/tyw80974936/projects/1722
https://github.com/users/tyw80974936/projects/1723
https://github.com/users/tyw80974936/projects/1724
https://github.com/users/tyw80974936/projects/1725
https://github.com/users/tyw80974936/projects/1726
https://github.com/users/tyw80974936/projects/1727
https://github.com/users/tyw80974936/projects/1728
https://github.com/users/tyw80974936/projects/1729
https://github.com/users/tyw80974936/projects/1730
https://github.com/users/tyw80974936/projects/1731
https://github.com/users/tyw80974936/projects/1732
https://github.com/users/tyw80974936/projects/1733
https://github.com/users/tyw80974936/projects/1734
https://github.com/users/tyw80974936/projects/1735
https://github.com/users/tyw80974936/projects/1736
https://github.com/users/tyw80974936/projects/1737
https://github.com/users/tyw80974936/projects/1738
https://github.com/users/tyw80974936/projects/1739
https://github.com/users/tyw80974936/projects/1740
https://github.com/users/tyw80974936/projects/1741
https://github.com/users/tyw80974936/projects/1742
https://github.com/users/tyw80974936/projects/1743
https://github.com/users/tyw80974936/projects/1744
https://github.com/users/tyw80974936/projects/1745
https://github.com/users/tyw80974936/projects/1746
https://github.com/users/tyw80974936/projects/1747
https://github.com/users/tyw80974936/projects/1748
https://github.com/users/tyw80974936/projects/1749
https://github.com/users/tyw80974936/projects/1750
https://github.com/users/tyw80974936/projects/1751
https://github.com/users/tyw80974936/projects/1752
https://github.com/users/tyw80974936/projects/1753
https://github.com/users/tyw80974936/projects/1754
https://github.com/users/tyw80974936/projects/1755
https://github.com/users/tyw80974936/projects/1756
https://github.com/users/tyw80974936/projects/1757
https://github.com/users/tyw80974936/projects/1758
https://github.com/users/tyw80974936/projects/1759
https://github.com/users/tyw80974936/projects/1760
https://github.com/users/tyw80974936/projects/1761
https://github.com/users/tyw80974936/projects/1762
https://github.com/users/tyw80974936/projects/1763
https://github.com/users/tyw80974936/projects/1764
https://github.com/users/tyw80974936/projects/1765
https://github.com/users/tyw80974936/projects/1766
https://github.com/users/tyw80974936/projects/1767
https://github.com/users/tyw80974936/projects/1768
https://github.com/users/tyw80974936/projects/1769
https://github.com/users/tyw80974936/projects/1770
https://github.com/users/tyw80974936/projects/1771
https://github.com/users/tyw80974936/projects/1772
https://github.com/users/tyw80974936/projects/1773
https://github.com/users/tyw80974936/projects/1774
https://github.com/users/tyw80974936/projects/1775
https://github.com/users/tyw80974936/projects/1776
https://github.com/users/tyw80974936/projects/1777
https://github.com/users/tyw80974936/projects/1778
https://github.com/users/tyw80974936/projects/1779
https://github.com/users/tyw80974936/projects/1780
https://github.com/users/tyw80974936/projects/1781
https://github.com/users/tyw80974936/projects/1782
https://github.com/users/tyw80974936/projects/1783
https://github.com/users/tyw80974936/projects/1784
https://github.com/users/tyw80974936/projects/1785
https://github.com/users/tyw80974936/projects/1786
https://github.com/users/tyw80974936/projects/1787
https://github.com/users/tyw80974936/projects/1788
https://github.com/users/tyw80974936/projects/1789
https://github.com/users/tyw80974936/projects/1790
https://github.com/users/tyw80974936/projects/1791
https://github.com/users/tyw80974936/projects/1792
https://github.com/users/tyw80974936/projects/1793
https://github.com/users/tyw80974936/projects/1794
https://github.com/users/tyw80974936/projects/1795
https://github.com/users/tyw80974936/projects/1796
https://github.com/users/tyw80974936/projects/1797
https://github.com/users/tyw80974936/projects/1798
https://github.com/users/tyw80974936/projects/1799
https://github.com/users/tyw80974936/projects/1800
https://github.com/users/tyw80974936/projects/1801
https://github.com/users/tyw80974936/projects/1802
https://github.com/users/tyw80974936/projects/1803
https://github.com/users/tyw80974936/projects/1804
https://github.com/users/tyw80974936/projects/1805
https://github.com/users/tyw80974936/projects/1806
https://github.com/users/tyw80974936/projects/1807
https://github.com/users/tyw80974936/projects/1808
https://github.com/users/tyw80974936/projects/1809
https://github.com/users/tyw80974936/projects/1810
https://github.com/users/tyw80974936/projects/1811
https://github.com/users/tyw80974936/projects/1812
https://github.com/users/tyw80974936/projects/1813
https://github.com/users/tyw80974936/projects/1814
https://github.com/users/tyw80974936/projects/1815
https://github.com/users/tyw80974936/projects/1816
https://github.com/users/tyw80974936/projects/1817
https://github.com/users/tyw80974936/projects/1818
https://github.com/users/tyw80974936/projects/1819
https://github.com/users/tyw80974936/projects/1820
https://github.com/users/tyw80974936/projects/1821
https://github.com/users/tyw80974936/projects/1822
https://github.com/users/tyw80974936/projects/1823
https://github.com/users/tyw80974936/projects/1824
https://github.com/users/tyw80974936/projects/1825
https://github.com/users/tyw80974936/projects/1826
https://github.com/users/tyw80974936/projects/1827
https://github.com/users/tyw80974936/projects/1828
https://github.com/users/tyw80974936/projects/1829
https://github.com/users/tyw80974936/projects/1830
https://github.com/users/tyw80974936/projects/1831
https://github.com/users/tyw80974936/projects/1832
https://github.com/users/tyw80974936/projects/1833
https://github.com/users/tyw80974936/projects/1834
https://github.com/users/tyw80974936/projects/1835
https://github.com/users/tyw80974936/projects/1836
https://github.com/users/tyw80974936/projects/1837
https://github.com/users/tyw80974936/projects/1838
https://github.com/users/tyw80974936/projects/1839
https://github.com/users/tyw80974936/projects/1840
https://github.com/users/tyw80974936/projects/1841
https://github.com/users/tyw80974936/projects/1842
https://github.com/users/tyw80974936/projects/1843
https://github.com/users/tyw80974936/projects/1844
https://github.com/users/tyw80974936/projects/1845
https://github.com/users/tyw80974936/projects/1846
https://github.com/users/tyw80974936/projects/1847
https://github.com/users/tyw80974936/projects/1848
https://github.com/users/tyw80974936/projects/1849
https://github.com/users/tyw

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值