今天我遇到了一个问题:
在我的自定义布局中,LinearLayout具有灰色背景,而ToggleButton位于此LinearLayout内的TextView之后.
切换按钮具有透明背景.
但在android Lollipop这里是不必要的影子.
我试过了elevation = 0dp属性.但这并没有解决我的问题.
当我设置api = 21时会发生这种情况
并且发生在旧的apis< 21 以下是示例布局:
<LinearLayout android:layout_width="match_parent" android:layout_height="45dp" android:orientation="horizontal" android:background="@color/grey_light"> <TextView android:layout_width="wrap_content" android:layout_height="wrap_content" android:text="0123" /> <ToggleButton android:layout_width="wrap_content" android:layout_height="match_parent" android:background="@android:color/transparent" android:button="@android:color/transparent" /> </LinearLayout>
如何删除这个阴影?
解决方法
尝试使用style =“@ android:style / Widget.Holo.Button.Borderless
将小部件更改为appcompat(或您正在使用的任何内容).
我用这个:
style="?android:attr/borderlessButtonStyle"