Searched refs:description (Results 1 - 25 of 240) sorted by last modified time

12345678910

/frameworks/support/v17/leanback/src/android/support/v17/leanback/app/
H A DOnboardingFragment.java56 * common parts are composed of title, description and page navigator and the custom parts are
78 * <li>{@link #getPageDescription} to provide the description of the page.</li>
108 * When the page changes, the default animations of the title and description are played. The
269 mDescriptionView = (TextView) view.findViewById(R.id.description);
468 // Header description
469 view = getActivity().findViewById(R.id.description);
505 * Returns the description of the given page.
509 * @return The description of the page.
H A DOnboardingSupportFragment.java58 * common parts are composed of title, description and page navigator and the custom parts are
80 * <li>{@link #getPageDescription} to provide the description of the page.</li>
110 * When the page changes, the default animations of the title and description are played. The
271 mDescriptionView = (TextView) view.findViewById(R.id.description);
470 // Header description
471 view = getActivity().findViewById(R.id.description);
507 * Returns the description of the given page.
511 * @return The description of the page.
/frameworks/support/v17/leanback/src/android/support/v17/leanback/widget/
H A DFullWidthDetailsOverviewRowPresenter.java46 * the top and a customizable detailed description view on the right.
48 * <p>The detailed description is rendered using a {@link Presenter} passed in
50 * {@link AbstractDetailsDescriptionPresenter}. The application can access the detailed description
95 * This is the alignment mode that the logo and description align to the starting edge of the
100 * This is the alignment mode that the ending edge of logo and the starting edge of description
362 * Returns the root view for inserting details description.
404 * description of the row.
414 * description of the row.
746 View description = viewHolder.getDetailsDescriptionFrame();
747 MarginLayoutParams lpDesc = (MarginLayoutParams) description
[all...]
H A DGuidanceStylist.java72 * a longer description, a breadcrumb to help with global navigation (often indicating where
87 * Constructs a Guidance object with the specified title, description, breadcrumb, and
90 * @param description The description for the current guided step.
94 public Guidance(String title, String description, String breadcrumb, Drawable icon) { argument
97 mDescription = description;
110 * Returns the description specified when this Guidance was constructed.
111 * @return The description for this Guidance.
229 * Returns the view displaying the description of the guidance.
230 * @return The text view object for the description
[all...]
H A DGuidedAction.java32 * and a description, and typically also an icon.
120 * The mActionFlags holds various action states such as whether title or description are
264 * Sets the description for this action. The description is typically a longer string
266 * @param description The description for this action.
268 public B description(CharSequence description) { argument
269 mDescription = description;
274 * Sets the description fo
278 public B description(@StringRes int descriptionResourceId) { method in class:GuidedAction.BuilderBase
288 editDescription(CharSequence description) argument
681 setDescription(CharSequence description) argument
[all...]
H A DListRowHoverCardView.java26 * ListRowHoverCardView contains a title and description.
46 mDescriptionView = (TextView) findViewById(R.id.description);
69 * Returns the description text.
76 * Sets the description text.
/frameworks/support/v17/preference-leanback/
H A Dbuild.gradle101 description "Android Support Leanback Preference v17"
/frameworks/support/v17/tests/src/android/support/v17/leanback/app/wizard/
H A DGuidedDatePickerTest.java208 String description = "Testing the transition between longer to shorter months";
209 GuidanceStylist.Guidance guidance = new GuidanceStylist.Guidance(title, description,
342 String description = "";
343 GuidanceStylist.Guidance guidance = new GuidanceStylist.Guidance(title, description,
H A DGuidedStepAttributesTest.java83 String description = "";
84 GuidanceStylist.Guidance guidance = new GuidanceStylist.Guidance(title, description,
92 .description(res.getString(R.string.search_description) + i)
190 String description = "";
191 GuidanceStylist.Guidance guidance = new GuidanceStylist.Guidance(title, description,
198 .description(res.getString(R.string.revert_description))
206 .description(res.getString(R.string.search_description) + i)
328 String description = "";
329 GuidanceStylist.Guidance guidance = new GuidanceStylist.Guidance(title, description,
335 .description(re
[all...]
/frameworks/support/v4/api21/android/support/v4/media/
H A DMediaDescriptionCompatApi21.java80 public static void setDescription(Object builderObj, CharSequence description) { argument
81 ((MediaDescription.Builder)builderObj).setDescription(description);
/frameworks/support/v4/java/android/support/v4/media/
H A DMediaBrowserCompat.java331 * @param description The description of the media, which must include a
335 public MediaItem(@NonNull MediaDescriptionCompat description, @Flags int flags) { argument
336 if (description == null) {
337 throw new IllegalArgumentException("description cannot be null");
339 if (TextUtils.isEmpty(description.getMediaId())) {
340 throw new IllegalArgumentException("description must have a non-empty media id");
343 mDescription = description;
411 * Returns the description of the media.
H A DMediaDescriptionCompat.java40 "android.support.v4.media.description.MEDIA_URI";
47 "android.support.v4.media.description.NULL_BUNDLE_FLAG";
61 * A description suitable for display or null.
87 CharSequence description, Bitmap icon, Uri iconUri, Bundle extras, Uri mediaUri) {
91 mDescription = description;
139 * Returns a description suitable for display or null.
141 * @return A description or null.
169 * Returns any extras that were added to the description.
380 * Sets the description.
382 * @param description
86 MediaDescriptionCompat(String mediaId, CharSequence title, CharSequence subtitle, CharSequence description, Bitmap icon, Uri iconUri, Bundle extras, Uri mediaUri) argument
386 setDescription(@ullable CharSequence description) argument
[all...]
/frameworks/support/v4/java/android/support/v4/media/session/
H A DMediaSessionCompat.java947 * A single item that is part of the play queue. It contains a description
964 * @param description The {@link MediaDescriptionCompat} for this item.
968 public QueueItem(MediaDescriptionCompat description, long id) { argument
969 this(null, description, id);
972 private QueueItem(Object queueItem, MediaDescriptionCompat description, long id) { argument
973 if (description == null) {
979 mDescription = description;
990 * Get the description for this item.
1042 MediaDescriptionCompat description = MediaDescriptionCompat.fromMediaDescription(
1045 return new QueueItem(queueItem, description, i
[all...]
/frameworks/support/v4/tests/java/android/support/v4/testutils/
H A DTestUtilsMatchers.java47 public void describeTo(final Description description) {
48 description.appendText("with background color: ");
50 description.appendText(failedComparisonDescription);
89 public void describeTo(Description description) {
90 description.appendText("is identical to class: " + clazz);
109 public void describeTo(final Description description) {
110 description.appendText(failedCheckDescription);
155 public void describeTo(final Description description) {
156 description.appendText(failedCheckDescription);
200 public void describeTo(final Description description) {
[all...]
/frameworks/support/v7/appcompat/src/android/support/v7/app/
H A DActionBar.java882 * to provide a correct description of the action for accessibility support.</p>
902 * to provide a correct description of the action for accessibility support.</p>
914 * Set an alternate description for the Home/Up action, when enabled.
916 * <p>This description is commonly used for accessibility/screen readers when
924 * <p>Setting this to <code>null</code> will use the system default description.</p>
926 * @param description New description for the Home action when enabled
930 public void setHomeActionContentDescription(@Nullable CharSequence description) {} argument
933 * Set an alternate description for the Home/Up action, when enabled.
935 * <p>This description i
[all...]
H A DToolbarActionBar.java170 public void setHomeActionContentDescription(CharSequence description) { argument
171 mDecorToolbar.setNavigationContentDescription(description);
H A DWindowDecorActionBar.java926 public void setHomeActionContentDescription(CharSequence description) { argument
927 mDecorToolbar.setNavigationContentDescription(description);
/frameworks/support/v7/appcompat/src/android/support/v7/widget/
H A DDecorToolbar.java88 void setNavigationContentDescription(CharSequence description); argument
H A DToolbar.java494 * clicked. Apps using a logo should also supply a description using
610 * clicked. Apps using a logo should also supply a description using
642 * Set a description of the toolbar's logo.
644 * <p>This description will be used for accessibility or other similar descriptions
654 * Set a description of the toolbar's logo.
656 * <p>This description will be used for accessibility or other similar descriptions
659 * @param description Description to set
661 public void setLogoDescription(CharSequence description) { argument
662 if (!TextUtils.isEmpty(description)) {
666 mLogoView.setContentDescription(description);
911 setNavigationContentDescription(@ullable CharSequence description) argument
[all...]
H A DToolbarWidgetWrapper.java616 public void setNavigationContentDescription(CharSequence description) { argument
617 mHomeDescription = description;
/frameworks/support/v7/appcompat/tests/src/android/support/v7/app/
H A DDrawerDynamicLayoutTest.java71 public void describeTo(Description description) {
72 description.appendText("has parent");
/frameworks/support/v7/appcompat/tests/src/android/support/v7/testutils/
H A DTestUtilsMatchers.java48 public void describeTo(final Description description) {
49 description.appendText("with drawable of color: ");
51 description.appendText(failedComparisonDescription);
88 public void describeTo(final Description description) {
89 description.appendText("with background of color: ");
91 description.appendText(failedComparisonDescription);
125 public void describeTo(final Description description) {
126 description.appendText("with ascendant background of color: ");
128 description.appendText(failedComparisonDescription);
160 public void describeTo(final Description description) {
[all...]
/frameworks/support/v7/appcompat/tests/src/android/support/v7/widget/
H A DAppCompatBaseViewTest.java74 private void verifyBackgroundIsColoredAs(String description, @NonNull View view, argument
77 TestUtils.assertAllPixelsOfColor(description,
H A DPopupMenuTest.java238 public void describeTo(Description description) {
239 description.appendText("has window focus");
/frameworks/support/v7/mediarouter/jellybean-mr2/android/support/v7/media/
H A DMediaRouterJellybeanMr2.java40 public static void setDescription(Object routeObj, CharSequence description) { argument
41 ((android.media.MediaRouter.UserRouteInfo)routeObj).setDescription(description);

Completed in 454 milliseconds

12345678910