摘要:
Android系统支持的颜色是由4个值组成的,前3个为RGB,也就是我们常说的三原色(红、绿、蓝),最后一个值是A,也就是Alpha。这4个值都在0~255之间。颜色值越小,表示该颜色越淡,颜色值越大,表示该颜色越深。如果RGB都是0,就是黑色,如果都为255,就是白色。Alpha也需要在0~255 阅读全文
摘要:
1.使用Android系统自带的透明效果资源 <Button android:background="@android:color/transparent"/> 2.使用ARGB来控制 半透明 <Button android:background="#e0000000"/> 透明 <Button a 阅读全文
摘要:
ImageView的scaleType的属性有好几种,分别是matrix(默认)、center、centerCrop、centerInside、fitCenter、fitEnd、fitStart、fitXY android:scaleType="center" 保持原图的大小,显示在ImageVie 阅读全文