Difference between ?selectableItemBackground, ?and

2019-03-12 11:28发布

What is the difference between:

android:background="?selectableItemBackground"

android:background="?attr/selectableItemBackground"

android:background="?android:selectableItemBackground"

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

in Android?

2条回答
Melony?
2楼-- · 2019-03-12 12:07

They all do the same work. The only difference is that android prefix is for android 3.0 and above and if you want to use the same attribute for android 2.3 and below you have to remove the android prefix. Thanks

查看更多
Melony?
3楼-- · 2019-03-12 12:11

Here,

android:background="?selectableItemBackground"

is attribute reference from appCompat library so it is applied to older versions of android and doesn't need android prefix.

android:background="?android:selectableItemBackground"

is attribute provided by platform which may not support older android versions but only from version they are introduced.

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

Here use of attr applies to the attribute defined for current theme. i.e if you have your application theme set for light version then selectableItemBackground of light theme will be applied.

And you can define your own values which can be accessed without using android prefix.

查看更多
登录 后发表回答