Android - 叠加布局强制按钮元素透明
Android - overlaid layout is forcing transparency on a button element
我有我的主屏幕,但在它加载后我想显示一个覆盖的滚轮选择器,一旦做出选择它就会消失。到目前为止,一切都进行得很顺利,只是轮选择器的提交按钮被强加了一些透明度。
我已经尝试 android:alpha 强制它完全不透明,但没有效果。这是 xml 布局:
<?xml version="1.0" encoding="utf-8"?>
<FrameLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:orientation="vertical"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:gravity="center_vertical"
android:textColor="#000000"
android:background="#faff67"
>
<LinearLayout android:orientation="vertical"
android:layout_width="match_parent"
android:layout_height="match_parent"
>
[ Not relevant? ]
</LinearLayout>
<RelativeLayout android:id="@+id/wheelView" android:background="#CC000000"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:orientation="vertical">
<LinearLayout android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_centerInParent="true"
android:orientation="vertical">
<kankan.wheel.widget.WheelView android:id="@+id/deptWheel"
android:layout_height="110dp"
android:layout_width="wrap_content"
android:layout_weight="1"/>
<Button android:id="@+id/button_selectDept"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_weight="1"
android:alpha="1"
android:text="Submit"></Button>
</LinearLayout>
</RelativeLayout>
对我在这里做错了什么有什么想法吗?
也许可以为按钮添加背景:
android:background="#FFFFFF"
或更改颜色 alpha:
android:color="#FF000000"
也许两者都有:
android:background="#FFFFFFFF"
我有我的主屏幕,但在它加载后我想显示一个覆盖的滚轮选择器,一旦做出选择它就会消失。到目前为止,一切都进行得很顺利,只是轮选择器的提交按钮被强加了一些透明度。
我已经尝试 android:alpha 强制它完全不透明,但没有效果。这是 xml 布局:
<?xml version="1.0" encoding="utf-8"?>
<FrameLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:orientation="vertical"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:gravity="center_vertical"
android:textColor="#000000"
android:background="#faff67"
>
<LinearLayout android:orientation="vertical"
android:layout_width="match_parent"
android:layout_height="match_parent"
>
[ Not relevant? ]
</LinearLayout>
<RelativeLayout android:id="@+id/wheelView" android:background="#CC000000"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:orientation="vertical">
<LinearLayout android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_centerInParent="true"
android:orientation="vertical">
<kankan.wheel.widget.WheelView android:id="@+id/deptWheel"
android:layout_height="110dp"
android:layout_width="wrap_content"
android:layout_weight="1"/>
<Button android:id="@+id/button_selectDept"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_weight="1"
android:alpha="1"
android:text="Submit"></Button>
</LinearLayout>
</RelativeLayout>
对我在这里做错了什么有什么想法吗?
也许可以为按钮添加背景:
android:background="#FFFFFF"
或更改颜色 alpha:
android:color="#FF000000"
也许两者都有:
android:background="#FFFFFFFF"