Home
last modified time | relevance | path

Searched refs:category (Results 1 – 25 of 63) sorted by relevance

123

/frameworks/base/docs/html/guide/topics/manifest/
Dcategory-element.jd1 page.title=<category>
8 <dd><pre class="stx">&lt;category android:<a href="#nm">name</a>="<i>string</i>" /&gt;</pre></dd>
14 <dd>Adds a category name to an intent filter. See
16 Intent Filters</a> for details on intent filters and the role of category
22 <dd>The name of the category. Standard categories are defined in the
25 by prefixing "{@code android.intent.category.}" to the
28 "{@code android.intent.category.LAUNCHER}".
Dintent-filter-element.jd24 <dd><code><a href="{@docRoot}guide/topics/manifest/category-element.html">&lt;category&gt;</a></cod…
38 <code><a href="{@docRoot}guide/topics/manifest/category-element.html">&lt;category&gt;</a></code>, …
133 <br/><code><a href="{@docRoot}guide/topics/manifest/category-element.html">&lt;category&gt;</a></co…
Ddata-element.jd166 <br/><code><a href="{@docRoot}guide/topics/manifest/category-element.html">&lt;category&gt;</a></co…
Dpermission-group-element.jd23 Note that this element does not declare a permission itself, only a category in
/frameworks/base/docs/html/guide/topics/intents/
Dintents-filters.jd88 of interest to the Android system (such as the category of component that
232 that should handle the intent. Any number of category descriptions can be
234 several category constants, including these:
268 places a category in an Intent object, <code>{@link android.content.Intent#removeCategory
269 removeCategory()}</code> deletes a category previously added, and <code>{@link android.content.Inte…
361 <br/>category</p>
421 A filter has fields that parallel the action, data, and category fields of an
480 &lt;category android:name="android.intent.category.DEFAULT" /&gt;
481 &lt;category android:name="android.intent.category.BROWSABLE" /&gt;
488 instance, the "{@code android.intent.category.BROWSABLE}" string in the example
[all …]
/frameworks/base/core/java/android/widget/
DFrameLayout.java58 @ViewDebug.ExportedProperty(category = "measurement")
61 @ViewDebug.ExportedProperty(category = "drawing")
64 @ViewDebug.ExportedProperty(category = "padding")
67 @ViewDebug.ExportedProperty(category = "padding")
70 @ViewDebug.ExportedProperty(category = "padding")
73 @ViewDebug.ExportedProperty(category = "padding")
79 @ViewDebug.ExportedProperty(category = "drawing")
83 @ViewDebug.ExportedProperty(category = "drawing")
DAdapterView.java65 @ViewDebug.ExportedProperty(category = "scrolling")
150 @ViewDebug.ExportedProperty(category = "list")
161 @ViewDebug.ExportedProperty(category = "list")
177 @ViewDebug.ExportedProperty(category = "list")
DLinearLayout.java82 @ViewDebug.ExportedProperty(category = "layout")
92 @ViewDebug.ExportedProperty(category = "layout")
100 @ViewDebug.ExportedProperty(category = "measurement")
103 @ViewDebug.ExportedProperty(category = "measurement")
106 @ViewDebug.ExportedProperty(category = "measurement", flagMapping = {
140 @ViewDebug.ExportedProperty(category = "measurement")
143 @ViewDebug.ExportedProperty(category = "layout")
146 @ViewDebug.ExportedProperty(category = "layout")
1746 @ViewDebug.ExportedProperty(category = "layout")
1754 @ViewDebug.ExportedProperty(category = "layout", mapping = {
DTableRow.java392 @ViewDebug.ExportedProperty(category = "layout")
398 @ViewDebug.ExportedProperty(category = "layout")
DProgressBar.java419 @ViewDebug.ExportedProperty(category = "progress")
718 @ViewDebug.ExportedProperty(category = "progress")
735 @ViewDebug.ExportedProperty(category = "progress")
749 @ViewDebug.ExportedProperty(category = "progress")
/frameworks/base/services/java/com/android/server/
DUiModeManagerService.java110 static Intent buildHomeIntent(String category) { in buildHomeIntent() argument
112 intent.addCategory(category); in buildHomeIntent()
134 String category = null;
139 category = Intent.CATEGORY_CAR_DOCK;
146 category = Intent.CATEGORY_DESK_DOCK;
151 category = Intent.CATEGORY_HOME;
155 if (category != null) {
158 Intent homeIntent = buildHomeIntent(category);
/frameworks/base/core/java/android/os/
DBatteryStats.java1174 private static final void dumpLine(PrintWriter pw, int uid, String category, String type, in dumpLine() argument
1178 pw.print(category); pw.print(','); in dumpLine()
1213 String category = STAT_NAMES[which]; in dumpCheckinLocked() local
1216 dumpLine(pw, 0 /* uid */, category, BATTERY_DATA, in dumpCheckinLocked()
1253 dumpLine(pw, 0 /* uid */, category, MISC_DATA, in dumpCheckinLocked()
1264 dumpLine(pw, 0 /* uid */, category, SCREEN_BRIGHTNESS_DATA, args); in dumpCheckinLocked()
1271 dumpLine(pw, 0 /* uid */, category, SIGNAL_STRENGTH_TIME_DATA, args); in dumpCheckinLocked()
1272 dumpLine(pw, 0 /* uid */, category, SIGNAL_SCANNING_TIME_DATA, in dumpCheckinLocked()
1277 dumpLine(pw, 0 /* uid */, category, SIGNAL_STRENGTH_COUNT_DATA, args); in dumpCheckinLocked()
1284 dumpLine(pw, 0 /* uid */, category, DATA_CONNECTION_TIME_DATA, args); in dumpCheckinLocked()
[all …]
/frameworks/base/core/java/com/android/internal/view/menu/
DActionMenuView.java525 @ViewDebug.ExportedProperty(category = "layout")
527 @ViewDebug.ExportedProperty(category = "layout")
529 @ViewDebug.ExportedProperty(category = "layout")
531 @ViewDebug.ExportedProperty(category = "layout")
533 @ViewDebug.ExportedProperty(category = "layout")
/frameworks/base/core/java/android/content/
DIntentFilter.java973 public final void addCategory(String category) { in addCategory() argument
975 if (!mCategories.contains(category)) { in addCategory()
976 mCategories.add(category.intern()); in addCategory()
1001 public final boolean hasCategory(String category) { in hasCategory() argument
1002 return mCategories != null && mCategories.contains(category); in hasCategory()
1037 final String category = it.next(); in matchCategories() local
1038 if (!mCategories.contains(category)) { in matchCategories()
1039 return category; in matchCategories()
DIntent.java3532 public boolean hasCategory(String category) { in hasCategory() argument
3533 return mCategories != null && mCategories.contains(category); in hasCategory()
4343 public Intent addCategory(String category) { in addCategory() argument
4347 mCategories.add(category.intern()); in addCategory()
4358 public void removeCategory(String category) { in removeCategory() argument
4360 mCategories.remove(category); in removeCategory()
5765 for (String category : mCategories) { in toUri()
5766 uri.append("category=").append(Uri.encode(category)).append(';'); in toUri()
5839 for (String category : mCategories) { in writeToParcel()
5840 out.writeString(category); in writeToParcel()
/frameworks/base/core/java/android/view/
DView.java1519 @ViewDebug.ExportedProperty(category = "measurement")
1526 @ViewDebug.ExportedProperty(category = "measurement")
2188 @ViewDebug.ExportedProperty(category = "layout")
2195 @ViewDebug.ExportedProperty(category = "layout")
2202 @ViewDebug.ExportedProperty(category = "layout")
2209 @ViewDebug.ExportedProperty(category = "layout")
2217 @ViewDebug.ExportedProperty(category = "scrolling")
2224 @ViewDebug.ExportedProperty(category = "scrolling")
2232 @ViewDebug.ExportedProperty(category = "padding")
2239 @ViewDebug.ExportedProperty(category = "padding")
[all …]
DViewGroup.java141 @ViewDebug.ExportedProperty(category = "events")
143 @ViewDebug.ExportedProperty(category = "events")
146 @ViewDebug.ExportedProperty(category = "events")
149 @ViewDebug.ExportedProperty(category = "events")
370 @ViewDebug.ExportedProperty(category = "drawing")
472 @ViewDebug.ExportedProperty(category = "focus", mapping = {
4312 @ViewDebug.ExportedProperty(category = "drawing")
4347 @ViewDebug.ExportedProperty(category = "drawing")
4379 @ViewDebug.ExportedProperty(category = "drawing")
4416 @ViewDebug.ExportedProperty(category = "drawing", mapping = {
[all …]
DMenuInflater.java330 …final int category = a.getInt(com.android.internal.R.styleable.MenuItem_menuCategory, groupCategor… in readItem() local
332 itemCategoryOrder = (category & Menu.CATEGORY_MASK) | (order & Menu.USER_MASK); in readItem()
DViewDebug.java259 String category() default ""; in category() method
1473 property.category().length() != 0 ? property.category() + ":" : ""; in exportMethods()
1546 property.category().length() != 0 ? property.category() + ":" : ""; in exportFields()
/frameworks/base/sax/tests/saxtests/src/android/sax/
DSafeSaxTest.java283 video.category = body; in newContentHandler()
512 video.category = takeText(); in endElement()
536 public String category; field in SafeSaxTest.YouTubeVideo
/frameworks/base/docs/html/guide/topics/nfc/
Dnfc.jd343 category to filter on. Many applications will filter for {@link
368 &lt;category android:name="android.intent.category.DEFAULT"/&gt;
377 &lt;category android:name="android.intent.category.DEFAULT"/&gt;
533 &lt;category android:name="android.intent.category.DEFAULT" /&gt;
556 &lt;category android:name="android.intent.category.DEFAULT" /&gt;
587 &lt;category android:name="android.intent.category.DEFAULT" /&gt;
612 &lt;category android:name="android.intent.category.DEFAULT" /&gt;
634 &lt;category android:name="android.intent.category.DEFAULT" /&gt;
907 &lt;category android:name="android.intent.category.DEFAULT"/&gt;
/frameworks/base/docs/html/resources/articles/
Dwikinotes-intents.jd179 &lt;category name="android.intent.category.DEFAULT"/&gt;
180 &lt;category name="android.intent.category.BROWSABLE"/&gt;
186 category indicates that the WikiNotes activity should be treated as a
188 BROWSABLE category means it can be invoked from a "browser", in this
/frameworks/base/docs/html/intl/ja/guide/topics/
Dfundamentals.jd267 &lt;category android:name="android.intent.category.LAUNCHER" /&gt;
272 &lt;category android:name="android.intent.category.DEFAULT" /&gt;
280 この例の 1 つ目のフィルタは、アクション「{@code android.intent.action.MAIN}」とカテゴリ「{@code android.intent.category.LAUNC…
461 …として "{@code android.intent.action.MAIN}"、カテゴリとして "{@code android.intent.category.LAUNCHER}" を指定したイ…
/frameworks/base/core/java/android/app/
DActionBar.java904 @ViewDebug.ExportedProperty(category = "layout", mapping = {
/frameworks/base/docs/html/guide/developing/tools/
Dmonkey.jd167 <td><code>-c &lt;main-category&gt;</code></td>
170 If you don't specify any categories, the Monkey will select activities listed with the category
172 option multiple times &mdash; one -c option per category.</td>

123