diff options
-rw-r--r-- | api/current.xml | 11 | ||||
-rw-r--r-- | core/res/res/values/attrs.xml | 3 | ||||
-rw-r--r-- | core/res/res/values/public.xml | 1 |
3 files changed, 15 insertions, 0 deletions
diff --git a/api/current.xml b/api/current.xml index 9d354ee..d338b31 100644 --- a/api/current.xml +++ b/api/current.xml @@ -2176,6 +2176,17 @@ visibility="public" > </field> +<field name="allContactsName" + type="int" + transient="false" + volatile="false" + value="16843533" + static="true" + final="true" + deprecated="not deprecated" + visibility="public" +> +</field> <field name="allowBackup" type="int" transient="false" diff --git a/core/res/res/values/attrs.xml b/core/res/res/values/attrs.xml index 67a88ae..fd00330 100644 --- a/core/res/res/values/attrs.xml +++ b/core/res/res/values/attrs.xml @@ -3630,6 +3630,9 @@ <attr name="detailColumn" format="string" /> <!-- Flag indicating that detail should be built from SocialProvider. --> <attr name="detailSocialSummary" format="boolean" /> + <!-- Resource representing the term "All Contacts" (e.g. "All Friends" or + "All connections"). Optional (Default is "All Contacts"). --> + <attr name="allContactsName" format="string" /> </declare-styleable> <!-- =============================== --> diff --git a/core/res/res/values/public.xml b/core/res/res/values/public.xml index fb50735..fe27174 100644 --- a/core/res/res/values/public.xml +++ b/core/res/res/values/public.xml @@ -1274,5 +1274,6 @@ <public type="attr" name="column" /> <public type="attr" name="withExpression" /> <public type="attr" name="withClass" /> + <public type="attr" name="allContactsName" /> </resources> |