[Android]中文API(一)android包下的那些類

大搜車-自娛發表於2014-12-01

Android包,包含了app內的一些資源類,以及系統特性的一些應用許可權permissions

你通常可以直接引用R類中的資源,但是你要保證這些資源的唯一性,例如id,儘量不要使用外部依賴,來保證應用的凝聚力。
更為重要的是,你不要去使用drawable內的資源,因為他們可能會因為作業系統版本而發生變化,導致你的應用程式的相容性有問題
通常只有style資源才是你能夠使用的直接資源。

android.包內包含以下類:

 

 

 

Manifest
Manifest.permission
Manifest.permission_group
R
R.anim
R.animator
R.array
R.attr
R.bool
R.color
R.dimen
R.drawable
R.fraction
R.id
R.integer
R.interpolator
R.layout
R.menu
R.mipmap
R.plurals
R.raw
R.string
R.style
R.styleable
R.transition
R.xml

相關文章