Android给TextView设置透明背景、圆角边框
第一种方法:在drawable文件夹下新建一个文件设置背景样式
代码:
在drawable文件夹下面新建text_view_border.xml
<?xml version="1.0" encoding="UTF-8"?> <shape xmlns:android="http://schemas.android.com/apk/res/android"> <solid android:color="#80858175" /> <stroke android:width="1dip" android:color="#aea594" /> <corners android:topLeftRadius="2dp" android:topRightRadius="2dp" android:bottomRightRadius="2dp" android:bottomLeftRadius="2dp"/> </shape>
在布局文件调用:
<TextView android:id="@+id/tv" android:layout_width="wrap_content" android:layout_height="wrap_content" android:background="@drawable/text_view_border" />
在类文件中调用:
tv.setBackgroundResource(R.drawable.text_view_border);
分析:
solid设置填充颜色,颜色值以#80开头表示透明
stroke 设置边框宽度,颜色值
corners设置圆角
第二种方法:用图片设置background
Button或者ImageButton的背景设为透明或者半透明
半透明<Button
android:background="#e0000000"
/>
透明<Button
android:background="#00000000"
/>
v.getBackground().setAlpha(100);//0~255透明度值
郑重声明:本站内容如果来自互联网及其他传播媒体,其版权均属原媒体及文章作者所有。转载目的在于传递更多信息及用于网络分享,并不代表本站赞同其观点和对其真实性负责,也不构成任何其他建议。