2

我正在尝试为按钮设置无边框背景(按下时必须突出显示)。为此,我尝试设置:

android:background="?android:attr/selectableItemBackground"

(如此所述)

但得到错误:

error: Error: No resource found that matches the given name (at 'background' with value '?android:attr/selectableItemBackground').

API 级别 1.6,也尝试过 API 2.2

4

2 回答 2

5

这仅适用于 API 级别 11,即 Android 3.0

于 2013-02-10T03:30:53.183 回答
1

听起来?android:attr/selectableItemBackground不是资源而是属性。您必须在属性上指定资源android:background

于 2012-08-23T15:36:06.760 回答