diff --git a/core/java/android/widget/ProgressBar.java b/core/java/android/widget/ProgressBar.java index d816200947cdf..5392a96715bf3 100644 --- a/core/java/android/widget/ProgressBar.java +++ b/core/java/android/widget/ProgressBar.java @@ -184,6 +184,7 @@ import java.util.ArrayList; * @attr ref android.R.styleable#ProgressBar_maxWidth * @attr ref android.R.styleable#ProgressBar_minHeight * @attr ref android.R.styleable#ProgressBar_minWidth + * @attr ref android.R.styleable#ProgressBar_mirrorForRtl * @attr ref android.R.styleable#ProgressBar_progress * @attr ref android.R.styleable#ProgressBar_progressDrawable * @attr ref android.R.styleable#ProgressBar_secondaryProgress diff --git a/docs/html/guide/topics/manifest/application-element.jd b/docs/html/guide/topics/manifest/application-element.jd index 42cfdd56ae104..6bfa3dc8aee88 100644 --- a/docs/html/guide/topics/manifest/application-element.jd +++ b/docs/html/guide/topics/manifest/application-element.jd @@ -1,11 +1,11 @@ page.title=<application> -parent.title=The AndroidManifest.xml File -parent.link=manifest-intro.html + @jd:body
<application android:allowTaskReparenting=["true" | "false"]
+ android:allowBackup=["true" | "false"]
android:backupAgent="string"
android:debuggable=["true" | "false"]
android:description="string resource"
@@ -23,10 +23,14 @@ parent.link=manifest-intro.html
android:persistent=["true" | "false"]
android:process="string"
android:restoreAnyVersion=["true" | "false"]
+ android:requiredAccountType="string"
+ android:restrictedAccountType="string"
android:supportsRtl=["true" | "false"]
android:taskAffinity="string"
+ android:testOnly=["true" | "false"]
android:theme="resource or theme"
- android:uiOptions=["none" | "splitActionBarWhenNarrow"] >
+ android:uiOptions=["none" | "splitActionBarWhenNarrow"]
+ android:vmSafeMode=["true" | "false"] >
. . .
</application>The default value of this attribute is {@code false}.
The default value is null and indicates that the application +can work without any accounts. + +
Because restricted profiles currently +cannot add accounts, specifying this attribute makes your app +unavailable from a restricted profile unless you also declare +{@code android:restrictedAccountType} with +the same value.
+ +Caution: +If the account data may reveal personally identifiable information, it's important +that you declare this attribute and leave {@code android:restrictedAccountType} null, so that restricted profiles cannot use +your app to access personal information that belongs to the owner user.
+ +This attribute was added in API level 18.
+The default value is null and indicates that the application can work without any +accounts. + +
Caution: +Specifying this attribute allows restricted profiles to use your +app with accounts that belong to the owner user, which may reveal personally identifiable +information. If the account may reveal personal details, you should not +use this attribute and you should instead declare the {@code android:requiredAccountType} attribute +to make your app unavailable to restricted profiles.
+ +This attribute was added in API level 18.
+If set to {@code true} and <manifest> element.
This attribute was added in API level 14.
@[package:]drawable/filename
android:gravity=["top" | "bottom" | "left" | "right" | "center_vertical" |
"fill_vertical" | "center_horizontal" | "fill_horizontal" |
"center" | "fill" | "clip_vertical" | "clip_horizontal"]
+ android:mipMap=["true" | "false"]
android:tileMode=["disabled" | "clamp" | "repeat" | "mirror"] />
@@ -245,6 +246,12 @@ the right edge, a right gravity clips the left edge, and neither clips both edge
+
+ android:mipMapandroid:tileMode