选择器仅适用于android 6

时间:2016-06-14 14:40:00

标签: android

我在布局中添加了一个选择器,在按下布局时应该添加白色边框。它按预期工作,但仅适用于Android 6.0,旧版设备未突出显示。我尝试在清单中添加android:hardwareAccelerated =“true”,但这并没有什么区别。

有人知道为什么这对旧的Android版本不起作用吗?

突出显示的布局

<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:clickable="true"
android:foreground="@drawable/selector">

选择

<selector xmlns:android="http://schemas.android.com/apk/res/android">
<item android:state_pressed="true"
    android:drawable="@drawable/border_white_rounded" />

边界

<?xml version="1.0" encoding="UTF-8"?>
<shape xmlns:android="http://schemas.android.com/apk/res/android">
<solid android:color="@color/transparent" />

<stroke
    android:width="3dp"
    android:color="@color/color_white" />

<corners android:radius="3dp" />

1 个答案:

答案 0 :(得分:0)

自API 1 it was only moved up to the View class in API 23 (Marshmallow, 6.0)以来android:foreground已存在。

从API 1到API 23,android:foreground仅适用于FrameLayout

以下是一个类似的问题,其中包含一些支持Android早期版本中前景的解决方案:How to set foreground attribute to other non FrameLayout view