Home
last modified time | relevance | path

Searched refs:important (Results 1 – 25 of 283) sorted by relevance

12345678910>>...12

/frameworks/base/packages/Keyguard/src/com/android/keyguard/
DKeyguardMessageArea.java94 public void setMessage(CharSequence msg, boolean important) { in setMessage() argument
95 if (!TextUtils.isEmpty(msg) && important) { in setMessage()
103 public void setMessage(int resId, boolean important) { in setMessage() argument
104 if (resId != 0 && important) { in setMessage()
113 public void setMessage(int resId, boolean important, Object... formatArgs) { in setMessage() argument
114 if (resId != 0 && important) { in setMessage()
DSecurityMessageDisplay.java23 void setMessage(CharSequence msg, boolean important); in setMessage() argument
25 void setMessage(int resId, boolean important); in setMessage() argument
27 void setMessage(int resId, boolean important, Object... formatArgs); in setMessage() argument
/frameworks/base/services/core/java/com/android/server/pm/
DOtaDexoptService.java120 final List<PackageParser.Package> important; in prepare() local
124 important = PackageManagerServiceUtils.getPackagesForDexopt( in prepare()
128 others.removeAll(important); in prepare()
134 for (PackageParser.Package p : important) { in prepare()
166 prepareMetricsLogging(important.size(), others.size(), spaceAvailable, spaceAvailableNow); in prepare()
355 private void prepareMetricsLogging(int important, int others, long spaceBegin, long spaceBulk) { in prepareMetricsLogging() argument
360 importantPackageCount = important; in prepareMetricsLogging()
/frameworks/base/docs/html/distribute/engage/
Dwidgets.jd2 page.metaDescription=Use home screen widgets to remind users about important information in your ap…
15 views of an app's <strong>most important data and features</strong>,
20 Use widgets to <strong>remind users</strong> about important information in
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/phone/
DPanelBar.java64 int important = showing ? IMPORTANT_FOR_ACCESSIBILITY_NO_HIDE_DESCENDANTS in setBouncerShowing() local
67 setImportantForAccessibility(important); in setBouncerShowing()
69 if (mPanel != null) mPanel.setImportantForAccessibility(important); in setBouncerShowing()
/frameworks/base/docs/html/design/patterns/
Dactionbar.jd26 …<li>Makes important actions prominent and accessible in a predictable way (such as <em>New</em> or…
31 <p>If you're new to writing Android apps, note that the action bar is one of the most important des…
80 Show the most important actions of your app in the actions section. Actions that don't fit in the
98 <p>One of the most important UI issues to consider when creating an app is how to adjust to screen
135 <p><em>Action buttons</em> on the action bar surface your app's most important activities. Think ab…
137 estate, the system shows your most important actions as action buttons and moves the rest to the
278 <h4>How important is view navigation to the task?</h4>
279 <p>If view navigation is very important to your app, use tabs (for fastest view-switching) or spinn…
284 <h4>What else is important enough to warrant continuous display?</h4>
285 <p>Sometimes it is important to display contextual information for your app that's always visible.
[all …]
Dnotifications_k.jd20 Think of notifications as a news channel that alerts the user to important
69 imminently important and meaningful ones.</p>
132 always see their most important notifications first. You can choose from the
148 <td>Use high priority notifications primarily for important communication,
232 important to design your notifications carefully. Notifications embody your
237 <p>To create an application that people love, it's important to recognize that
242 nonetheless still important
245 plan your notifications, ask yourself if they are important enough to warrant
Dnew.jd21 … href="https://material.google.com/patterns/notifications.html">Notifications</a> receive important
141 "at-a-glance" views of an app's most important data and functionality right from
211 <p>The action bar is the most important structural element of an Android
226 sizes is important in the Android world. Multi-pane layouts allow you to
Dwidgets.jd13 …omization. You can imagine them as "at-a-glance" views of an app's most important data and functio…
20 <p>Information widgets typically display a few crucial information elements that are important to a…
59 …ld be understood as "mini apps", there are certain limitations that are important to understand be…
94 <p>Allowing users to resize widgets has important benefits:</p>
117 …ng of cells can vary widely from device to device, and hence it is very important that your widget…
/frameworks/base/docs/html/training/managing-audio/
Dindex.jd28 <p>If your app plays audio, it’s important that your users can control the audio in a predictable
29 manner. To ensure a great user experience, it’s also important that your app manages the audio focus
53 <dd>With multiple apps potentially playing audio it's important to think about how they should
/frameworks/base/docs/html/guide/topics/processes/
Dprocess-lifecycle.jd12 that the system knows are running, how important these things are to the user,
15 <p>It is important that
21 important work.</strong></p>
71 process is considered extremely important and will not be killed unless doing so is
107 important level found among all the components currently active in the process.
120 classification will always be at least as important as process A's.</p>
/frameworks/base/docs/html/design/handhelds/
Dindex.jd7 Aspects of UI that are especially important for phones and tablets include
12 Your app will play an important part in keeping the overall Android experience
31 <p>The Favorites Tray at the bottom always keeps your most important shortcuts and folders in view
93 provide updates, reminders, or information that's important, but not critical enough to warrant
132 <p>The command and control center for your app. The action bar surfaces the most important actions
/frameworks/base/packages/SystemUI/src/com/android/systemui/volume/
DVolumeDialog.java287 public void setStreamImportant(int stream, boolean important) { in setStreamImportant() argument
288 mHandler.obtainMessage(H.SET_STREAM_IMPORTANT, stream, important ? 1 : 0).sendToTarget(); in setStreamImportant()
309 private void addRow(int stream, int iconRes, int iconMuteRes, boolean important) { in addRow() argument
311 initRow(row, stream, iconRes, iconMuteRes, important); in addRow()
320 initRow(row, row.stream, row.iconRes, row.iconMuteRes, row.important); in addExistingRows()
372 boolean important) { in initRow() argument
376 row.important = important; in initRow()
627 || (mExpanded && (row.important || isActive))
912 private void setStreamImportantH(int stream, boolean important) {
915 row.important = important;
[all …]
/frameworks/base/core/java/android/view/accessibility/
DAccessibilityRecord.java138 boolean important = true; in setSource()
144 important = root.isImportantForAccessibility(); in setSource()
155 setBooleanProperty(PROPERTY_IMPORTANT_FOR_ACCESSIBILITY, important); in setSource()
/frameworks/base/docs/html/design/get-started/
Dprinciples.jd209 <h4 id="interrupt-only-if-important">Only interrupt me if it's important</h4>
297 <h4 id="make-important-things-fast">Make important things fast</h4>
298 <p>Not all actions are equal. Decide what's most important in your app and make it easy to find and
/frameworks/base/docs/html/topic/performance/power/
Dindex.jd28 <p>Battery life is the single most important aspect of the mobile user
30 For this reason, it is critically important that apps be as respectful of
33 <p>There are three important things to keep in mind in keeping your app
/frameworks/base/docs/html/guide/practices/
Dindex.jd23 <p>As Ice Cream Sandwich rolls out to more devices, it's important that you begin to migrate
30 One important result is better support for a new size of screen; what is typically called a “7-inch”
/frameworks/base/docs/html/training/appbar/
Dindex.jd25 important design elements in your app's activities, because
39 <li>Access to important actions in a predictable way, such as search.
/frameworks/base/docs/html/distribute/users/
Dyour-listing.jd44 important to make sure your launcher icon is crisp and high quality. To do
61 Be sure to showcase how your apps look, their important features, and what
88 Choosing the right featured image is important, it needs to convey as much
/frameworks/base/docs/html-intl/intl/zh-cn/design/get-started/
Dprinciples.jd209 <h4 id="interrupt-only-if-important">只在确实对我很重要时才打断我</h4>
297 <h4 id="make-important-things-fast">让重要事项能更快地完成</h4>
/frameworks/base/docs/html-intl/intl/ja/design/get-started/
Dprinciples.jd209 <h4 id="interrupt-only-if-important">割り込みは必要な場合のみ</h4>
297 <h4 id="make-important-things-fast">重要なことはすみやかに</h4>
/frameworks/base/docs/html-intl/intl/zh-tw/design/get-started/
Dprinciples.jd209 <h4 id="interrupt-only-if-important">重要時才打斷</h4>
297 <h4 id="make-important-things-fast">快速找到重要的功能</h4>
/frameworks/base/docs/html-intl/intl/ko/design/get-started/
Dprinciples.jd209 <h4 id="interrupt-only-if-important">중요할 때만 작업을 중단하기</h4>
297 <h4 id="make-important-things-fast">중요한 일은 빨리 해결되도록 하기</h4>
/frameworks/base/docs/html-intl/intl/ru/design/get-started/
Dprinciples.jd209 <h4 id="interrupt-only-if-important">Прерывайте пользователя только в действительно важных ситуация…
297 <h4 id="make-important-things-fast">Важные действия должны происходить быстро</h4>
/frameworks/base/docs/html/training/wearables/data-layer/
Dindex.jd20 send and synchronize over the wire and listeners that notify your apps of important events with
48 lets you listen for important data layer events in a service. The system manages the lifecycle of
56 in an activity lets you listen for important data layer events when an activity

12345678910>>...12