‘壹’ android 半透明效果怎么实现的
设置透明效果 大概有三种
1、用android系统的透明效果
Java代码
android:background="@android:color/transparent"
例如 设置按钮
Java代码
<Button android:background="@android:color/transparent"
android:text="@+id/Button01"
android:id="@+id/Button01"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:textColor="#ffffff" />
2、用ARGB来控制
Java代码
半透明<Button android:background="#e0000000" />
透明<Button android:background="#00000000" />
3、设置alpha
Java代码
View v = findViewById(R.id.content);//找到你要设透明背景的layout 的id
v.getBackground().setAlpha(100);//0~255透明度值
‘贰’ Android中按钮如何设置透明或半透明,求代码
在main.xml里面加入如下代码,就可以Android中按钮如何设置透明或半透明;
<Button
android:text="@+id/Button01"
android:id="@+id/Button01"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:background="#00000000"
/>
‘叁’ android button边框怎么去掉
设置为无背景
android:background="@null"
方法二:
将背景改为
android:background="#00000000"
这里00000000为透明
‘肆’ Android 当给一个button设置一个透明背景后 文字不见了 怎么解决
你可以把Button的background属性设为 “@null” 。 如果字不显示,就设置下字的颜色textColor
‘伍’ 请教android怎么让控件背景透明
以Android Studio为例,步骤如下:
1、直接打开相关窗口,在Android-app-res-layout的空白处点击鼠标右键并选择New-Layoutresource file。
‘陆’ android,按钮设置为背景透明了,点击按钮后,没有按钮下去再上来的那个效果了,怎么解决啊
android:background="#00000000" />
用这个试试看吧,我以前用透明都是用这个属性。
你我找个按钮试验下,你先用这个试试
刚才试验了下,我的没为题,估计是你代码出问题了,打印信息,看看你的BUTTON监听里有没有输出