我正在努力解决一个小问题,我的问题是我在设计部分使用透明的编辑文本视图,在4.2版本的android设备中看起来很好很好,如果我检查2.3版本中的相同编辑文本和下面的版本显示黑色的编辑文本。这是我的编辑文本代码。
<EditText android:id="@+id/name"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_margin="5dip"
android:layout_weight="1"
android:alpha="0.3"
android:background="@drawable/reg_edittext"
android:ellipsize="end"
android:ems="10"
android:lines="1"
android:scrollHorizontally="true"
android:singleLine="true"
android:textColor="#ffffff" />
这是我的reg_edittext
<?xml version="1.0" encoding="utf-8"?>
<!-- res/drawable/rounded_edittext.xml -->
<shape xmlns:android="http://schemas.android.com/apk/res/android" android:shape="rectangle" android:padding="10dp" >
<solid android:color="#000000" />
<corners android:bottomRightRadius="5dp"
android:bottomLeftRadius="5dp"
android:topLeftRadius="5dp"
android:topRightRadius="5dp"/>
</shape>
在2.3版本中显示黑色编辑文本,在4.2中显示透明。回答我,我想在2.3版本中查看相同的透明
答案 0 :(得分:3)
虽然@Sri的答案大多是正确的,但并不完整。您看到了不透明的黑色背景,因为在API级别 11 (Android 3.0)之前未添加以下属性:
幸运的是,您可以为颜色添加透明度。要使背景颜色为半透明,使用相同的0.3 / 30%alpha值,请将solid
声明更改为:
<solid android:color="#4C000000" />
答案 1 :(得分:2)
android:alpha="0.3" this alpha property is added in API level 14. So in the previous version it map looks different depends on devices.
尝试将背景纯色更改为透明,它可能会帮助您。
android:color="#000000" to transparent color range- #FF000000 to #00000000
答案 2 :(得分:0)
如果要为其提供任何透明度,则必须在指定颜色时指定alpha。因此,总颜色值应采用#AARRGGBB格式,其中AA - 是alpha颜色值(00 - 透明,FF-不透明),RR - 红色,GG - 绿色,BB-蓝色。在你的情况下,要获得完整的透明背景,你必须指定如下:
android:textColor="#00000000"