1*344a7f5eSAndroid Build Coastguard Workerpackage android.support.animation { 2*344a7f5eSAndroid Build Coastguard Worker 3*344a7f5eSAndroid Build Coastguard Worker public abstract class DynamicAnimation<T extends android.support.animation.DynamicAnimation<T>> { 4*344a7f5eSAndroid Build Coastguard Worker method public T addEndListener(android.support.animation.DynamicAnimation.OnAnimationEndListener); 5*344a7f5eSAndroid Build Coastguard Worker method public T addUpdateListener(android.support.animation.DynamicAnimation.OnAnimationUpdateListener); 6*344a7f5eSAndroid Build Coastguard Worker method public void cancel(); 7*344a7f5eSAndroid Build Coastguard Worker method public float getMinimumVisibleChange(); 8*344a7f5eSAndroid Build Coastguard Worker method public boolean isRunning(); 9*344a7f5eSAndroid Build Coastguard Worker method public void removeEndListener(android.support.animation.DynamicAnimation.OnAnimationEndListener); 10*344a7f5eSAndroid Build Coastguard Worker method public void removeUpdateListener(android.support.animation.DynamicAnimation.OnAnimationUpdateListener); 11*344a7f5eSAndroid Build Coastguard Worker method public T setMaxValue(float); 12*344a7f5eSAndroid Build Coastguard Worker method public T setMinValue(float); 13*344a7f5eSAndroid Build Coastguard Worker method public T setMinimumVisibleChange(float); 14*344a7f5eSAndroid Build Coastguard Worker method public T setStartValue(float); 15*344a7f5eSAndroid Build Coastguard Worker method public T setStartVelocity(float); 16*344a7f5eSAndroid Build Coastguard Worker method public void start(); 17*344a7f5eSAndroid Build Coastguard Worker field public static final android.support.animation.DynamicAnimation.ViewProperty ALPHA; 18*344a7f5eSAndroid Build Coastguard Worker field public static final float MIN_VISIBLE_CHANGE_ALPHA = 0.00390625f; 19*344a7f5eSAndroid Build Coastguard Worker field public static final float MIN_VISIBLE_CHANGE_PIXELS = 1.0f; 20*344a7f5eSAndroid Build Coastguard Worker field public static final float MIN_VISIBLE_CHANGE_ROTATION_DEGREES = 0.1f; 21*344a7f5eSAndroid Build Coastguard Worker field public static final float MIN_VISIBLE_CHANGE_SCALE = 0.002f; 22*344a7f5eSAndroid Build Coastguard Worker field public static final android.support.animation.DynamicAnimation.ViewProperty ROTATION; 23*344a7f5eSAndroid Build Coastguard Worker field public static final android.support.animation.DynamicAnimation.ViewProperty ROTATION_X; 24*344a7f5eSAndroid Build Coastguard Worker field public static final android.support.animation.DynamicAnimation.ViewProperty ROTATION_Y; 25*344a7f5eSAndroid Build Coastguard Worker field public static final android.support.animation.DynamicAnimation.ViewProperty SCALE_X; 26*344a7f5eSAndroid Build Coastguard Worker field public static final android.support.animation.DynamicAnimation.ViewProperty SCALE_Y; 27*344a7f5eSAndroid Build Coastguard Worker field public static final android.support.animation.DynamicAnimation.ViewProperty SCROLL_X; 28*344a7f5eSAndroid Build Coastguard Worker field public static final android.support.animation.DynamicAnimation.ViewProperty SCROLL_Y; 29*344a7f5eSAndroid Build Coastguard Worker field public static final android.support.animation.DynamicAnimation.ViewProperty TRANSLATION_X; 30*344a7f5eSAndroid Build Coastguard Worker field public static final android.support.animation.DynamicAnimation.ViewProperty TRANSLATION_Y; 31*344a7f5eSAndroid Build Coastguard Worker field public static final android.support.animation.DynamicAnimation.ViewProperty TRANSLATION_Z; 32*344a7f5eSAndroid Build Coastguard Worker field public static final android.support.animation.DynamicAnimation.ViewProperty X; 33*344a7f5eSAndroid Build Coastguard Worker field public static final android.support.animation.DynamicAnimation.ViewProperty Y; 34*344a7f5eSAndroid Build Coastguard Worker field public static final android.support.animation.DynamicAnimation.ViewProperty Z; 35*344a7f5eSAndroid Build Coastguard Worker } 36*344a7f5eSAndroid Build Coastguard Worker 37*344a7f5eSAndroid Build Coastguard Worker public static abstract interface DynamicAnimation.OnAnimationEndListener { 38*344a7f5eSAndroid Build Coastguard Worker method public abstract void onAnimationEnd(android.support.animation.DynamicAnimation, boolean, float, float); 39*344a7f5eSAndroid Build Coastguard Worker } 40*344a7f5eSAndroid Build Coastguard Worker 41*344a7f5eSAndroid Build Coastguard Worker public static abstract interface DynamicAnimation.OnAnimationUpdateListener { 42*344a7f5eSAndroid Build Coastguard Worker method public abstract void onAnimationUpdate(android.support.animation.DynamicAnimation, float, float); 43*344a7f5eSAndroid Build Coastguard Worker } 44*344a7f5eSAndroid Build Coastguard Worker 45*344a7f5eSAndroid Build Coastguard Worker public static abstract class DynamicAnimation.ViewProperty extends android.support.animation.FloatPropertyCompat { 46*344a7f5eSAndroid Build Coastguard Worker } 47*344a7f5eSAndroid Build Coastguard Worker 48*344a7f5eSAndroid Build Coastguard Worker public final class FlingAnimation extends android.support.animation.DynamicAnimation { 49*344a7f5eSAndroid Build Coastguard Worker ctor public FlingAnimation(android.support.animation.FloatValueHolder); 50*344a7f5eSAndroid Build Coastguard Worker ctor public FlingAnimation(K, android.support.animation.FloatPropertyCompat<K>); 51*344a7f5eSAndroid Build Coastguard Worker method public float getFriction(); 52*344a7f5eSAndroid Build Coastguard Worker method public android.support.animation.FlingAnimation setFriction(float); 53*344a7f5eSAndroid Build Coastguard Worker } 54*344a7f5eSAndroid Build Coastguard Worker 55*344a7f5eSAndroid Build Coastguard Worker public abstract class FloatPropertyCompat<T> { 56*344a7f5eSAndroid Build Coastguard Worker ctor public FloatPropertyCompat(java.lang.String); 57*344a7f5eSAndroid Build Coastguard Worker method public static <T> android.support.animation.FloatPropertyCompat<T> createFloatPropertyCompat(android.util.FloatProperty<T>); 58*344a7f5eSAndroid Build Coastguard Worker method public abstract float getValue(T); 59*344a7f5eSAndroid Build Coastguard Worker method public abstract void setValue(T, float); 60*344a7f5eSAndroid Build Coastguard Worker } 61*344a7f5eSAndroid Build Coastguard Worker 62*344a7f5eSAndroid Build Coastguard Worker public final class FloatValueHolder { 63*344a7f5eSAndroid Build Coastguard Worker ctor public FloatValueHolder(); 64*344a7f5eSAndroid Build Coastguard Worker ctor public FloatValueHolder(float); 65*344a7f5eSAndroid Build Coastguard Worker method public float getValue(); 66*344a7f5eSAndroid Build Coastguard Worker method public void setValue(float); 67*344a7f5eSAndroid Build Coastguard Worker } 68*344a7f5eSAndroid Build Coastguard Worker 69*344a7f5eSAndroid Build Coastguard Worker public final class SpringAnimation extends android.support.animation.DynamicAnimation { 70*344a7f5eSAndroid Build Coastguard Worker ctor public SpringAnimation(android.support.animation.FloatValueHolder); 71*344a7f5eSAndroid Build Coastguard Worker ctor public SpringAnimation(K, android.support.animation.FloatPropertyCompat<K>); 72*344a7f5eSAndroid Build Coastguard Worker ctor public SpringAnimation(K, android.support.animation.FloatPropertyCompat<K>, float); 73*344a7f5eSAndroid Build Coastguard Worker method public void animateToFinalPosition(float); 74*344a7f5eSAndroid Build Coastguard Worker method public boolean canSkipToEnd(); 75*344a7f5eSAndroid Build Coastguard Worker method public android.support.animation.SpringForce getSpring(); 76*344a7f5eSAndroid Build Coastguard Worker method public android.support.animation.SpringAnimation setSpring(android.support.animation.SpringForce); 77*344a7f5eSAndroid Build Coastguard Worker method public void skipToEnd(); 78*344a7f5eSAndroid Build Coastguard Worker } 79*344a7f5eSAndroid Build Coastguard Worker 80*344a7f5eSAndroid Build Coastguard Worker public final class SpringForce { 81*344a7f5eSAndroid Build Coastguard Worker ctor public SpringForce(); 82*344a7f5eSAndroid Build Coastguard Worker ctor public SpringForce(float); 83*344a7f5eSAndroid Build Coastguard Worker method public float getDampingRatio(); 84*344a7f5eSAndroid Build Coastguard Worker method public float getFinalPosition(); 85*344a7f5eSAndroid Build Coastguard Worker method public float getStiffness(); 86*344a7f5eSAndroid Build Coastguard Worker method public android.support.animation.SpringForce setDampingRatio(float); 87*344a7f5eSAndroid Build Coastguard Worker method public android.support.animation.SpringForce setFinalPosition(float); 88*344a7f5eSAndroid Build Coastguard Worker method public android.support.animation.SpringForce setStiffness(float); 89*344a7f5eSAndroid Build Coastguard Worker field public static final float DAMPING_RATIO_HIGH_BOUNCY = 0.2f; 90*344a7f5eSAndroid Build Coastguard Worker field public static final float DAMPING_RATIO_LOW_BOUNCY = 0.75f; 91*344a7f5eSAndroid Build Coastguard Worker field public static final float DAMPING_RATIO_MEDIUM_BOUNCY = 0.5f; 92*344a7f5eSAndroid Build Coastguard Worker field public static final float DAMPING_RATIO_NO_BOUNCY = 1.0f; 93*344a7f5eSAndroid Build Coastguard Worker field public static final float STIFFNESS_HIGH = 10000.0f; 94*344a7f5eSAndroid Build Coastguard Worker field public static final float STIFFNESS_LOW = 200.0f; 95*344a7f5eSAndroid Build Coastguard Worker field public static final float STIFFNESS_MEDIUM = 1500.0f; 96*344a7f5eSAndroid Build Coastguard Worker field public static final float STIFFNESS_VERY_LOW = 50.0f; 97*344a7f5eSAndroid Build Coastguard Worker } 98*344a7f5eSAndroid Build Coastguard Worker 99*344a7f5eSAndroid Build Coastguard Worker} 100*344a7f5eSAndroid Build Coastguard Worker 101*344a7f5eSAndroid Build Coastguard Workerpackage android.support.app.recommendation { 102*344a7f5eSAndroid Build Coastguard Worker 103*344a7f5eSAndroid Build Coastguard Worker public final class ContentRecommendation { 104*344a7f5eSAndroid Build Coastguard Worker method public java.lang.String getBackgroundImageUri(); 105*344a7f5eSAndroid Build Coastguard Worker method public int getBadgeImageResourceId(); 106*344a7f5eSAndroid Build Coastguard Worker method public int getColor(); 107*344a7f5eSAndroid Build Coastguard Worker method public android.graphics.Bitmap getContentImage(); 108*344a7f5eSAndroid Build Coastguard Worker method public android.support.app.recommendation.ContentRecommendation.IntentData getContentIntent(); 109*344a7f5eSAndroid Build Coastguard Worker method public java.lang.String[] getContentTypes(); 110*344a7f5eSAndroid Build Coastguard Worker method public android.support.app.recommendation.ContentRecommendation.IntentData getDismissIntent(); 111*344a7f5eSAndroid Build Coastguard Worker method public java.lang.String[] getGenres(); 112*344a7f5eSAndroid Build Coastguard Worker method public java.lang.String getGroup(); 113*344a7f5eSAndroid Build Coastguard Worker method public java.lang.String getIdTag(); 114*344a7f5eSAndroid Build Coastguard Worker method public java.lang.String getMaturityRating(); 115*344a7f5eSAndroid Build Coastguard Worker method public android.app.Notification getNotificationObject(android.content.Context); 116*344a7f5eSAndroid Build Coastguard Worker method public java.lang.String getPricingType(); 117*344a7f5eSAndroid Build Coastguard Worker method public java.lang.String getPricingValue(); 118*344a7f5eSAndroid Build Coastguard Worker method public java.lang.String getPrimaryContentType(); 119*344a7f5eSAndroid Build Coastguard Worker method public int getProgressMax(); 120*344a7f5eSAndroid Build Coastguard Worker method public int getProgressValue(); 121*344a7f5eSAndroid Build Coastguard Worker method public long getRunningTime(); 122*344a7f5eSAndroid Build Coastguard Worker method public java.lang.String getSortKey(); 123*344a7f5eSAndroid Build Coastguard Worker method public java.lang.String getSourceName(); 124*344a7f5eSAndroid Build Coastguard Worker method public int getStatus(); 125*344a7f5eSAndroid Build Coastguard Worker method public java.lang.String getText(); 126*344a7f5eSAndroid Build Coastguard Worker method public java.lang.String getTitle(); 127*344a7f5eSAndroid Build Coastguard Worker method public boolean hasProgressInfo(); 128*344a7f5eSAndroid Build Coastguard Worker method public boolean isAutoDismiss(); 129*344a7f5eSAndroid Build Coastguard Worker method public void setAutoDismiss(boolean); 130*344a7f5eSAndroid Build Coastguard Worker method public void setGroup(java.lang.String); 131*344a7f5eSAndroid Build Coastguard Worker method public void setProgress(int, int); 132*344a7f5eSAndroid Build Coastguard Worker method public void setSortKey(java.lang.String); 133*344a7f5eSAndroid Build Coastguard Worker method public void setStatus(int); 134*344a7f5eSAndroid Build Coastguard Worker field public static final java.lang.String CONTENT_MATURITY_ALL = "android.contentMaturity.all"; 135*344a7f5eSAndroid Build Coastguard Worker field public static final java.lang.String CONTENT_MATURITY_HIGH = "android.contentMaturity.high"; 136*344a7f5eSAndroid Build Coastguard Worker field public static final java.lang.String CONTENT_MATURITY_LOW = "android.contentMaturity.low"; 137*344a7f5eSAndroid Build Coastguard Worker field public static final java.lang.String CONTENT_MATURITY_MEDIUM = "android.contentMaturity.medium"; 138*344a7f5eSAndroid Build Coastguard Worker field public static final java.lang.String CONTENT_PRICING_FREE = "android.contentPrice.free"; 139*344a7f5eSAndroid Build Coastguard Worker field public static final java.lang.String CONTENT_PRICING_PREORDER = "android.contentPrice.preorder"; 140*344a7f5eSAndroid Build Coastguard Worker field public static final java.lang.String CONTENT_PRICING_PURCHASE = "android.contentPrice.purchase"; 141*344a7f5eSAndroid Build Coastguard Worker field public static final java.lang.String CONTENT_PRICING_RENTAL = "android.contentPrice.rental"; 142*344a7f5eSAndroid Build Coastguard Worker field public static final java.lang.String CONTENT_PRICING_SUBSCRIPTION = "android.contentPrice.subscription"; 143*344a7f5eSAndroid Build Coastguard Worker field public static final int CONTENT_STATUS_AVAILABLE = 2; // 0x2 144*344a7f5eSAndroid Build Coastguard Worker field public static final int CONTENT_STATUS_PENDING = 1; // 0x1 145*344a7f5eSAndroid Build Coastguard Worker field public static final int CONTENT_STATUS_READY = 0; // 0x0 146*344a7f5eSAndroid Build Coastguard Worker field public static final int CONTENT_STATUS_UNAVAILABLE = 3; // 0x3 147*344a7f5eSAndroid Build Coastguard Worker field public static final java.lang.String CONTENT_TYPE_APP = "android.contentType.app"; 148*344a7f5eSAndroid Build Coastguard Worker field public static final java.lang.String CONTENT_TYPE_BOOK = "android.contentType.book"; 149*344a7f5eSAndroid Build Coastguard Worker field public static final java.lang.String CONTENT_TYPE_COMIC = "android.contentType.comic"; 150*344a7f5eSAndroid Build Coastguard Worker field public static final java.lang.String CONTENT_TYPE_GAME = "android.contentType.game"; 151*344a7f5eSAndroid Build Coastguard Worker field public static final java.lang.String CONTENT_TYPE_MAGAZINE = "android.contentType.magazine"; 152*344a7f5eSAndroid Build Coastguard Worker field public static final java.lang.String CONTENT_TYPE_MOVIE = "android.contentType.movie"; 153*344a7f5eSAndroid Build Coastguard Worker field public static final java.lang.String CONTENT_TYPE_MUSIC = "android.contentType.music"; 154*344a7f5eSAndroid Build Coastguard Worker field public static final java.lang.String CONTENT_TYPE_NEWS = "android.contentType.news"; 155*344a7f5eSAndroid Build Coastguard Worker field public static final java.lang.String CONTENT_TYPE_PODCAST = "android.contentType.podcast"; 156*344a7f5eSAndroid Build Coastguard Worker field public static final java.lang.String CONTENT_TYPE_RADIO = "android.contentType.radio"; 157*344a7f5eSAndroid Build Coastguard Worker field public static final java.lang.String CONTENT_TYPE_SERIAL = "android.contentType.serial"; 158*344a7f5eSAndroid Build Coastguard Worker field public static final java.lang.String CONTENT_TYPE_SPORTS = "android.contentType.sports"; 159*344a7f5eSAndroid Build Coastguard Worker field public static final java.lang.String CONTENT_TYPE_TRAILER = "android.contentType.trailer"; 160*344a7f5eSAndroid Build Coastguard Worker field public static final java.lang.String CONTENT_TYPE_VIDEO = "android.contentType.video"; 161*344a7f5eSAndroid Build Coastguard Worker field public static final java.lang.String CONTENT_TYPE_WEBSITE = "android.contentType.website"; 162*344a7f5eSAndroid Build Coastguard Worker field public static final int INTENT_TYPE_ACTIVITY = 1; // 0x1 163*344a7f5eSAndroid Build Coastguard Worker field public static final int INTENT_TYPE_BROADCAST = 2; // 0x2 164*344a7f5eSAndroid Build Coastguard Worker field public static final int INTENT_TYPE_SERVICE = 3; // 0x3 165*344a7f5eSAndroid Build Coastguard Worker } 166*344a7f5eSAndroid Build Coastguard Worker 167*344a7f5eSAndroid Build Coastguard Worker public static final class ContentRecommendation.Builder { 168*344a7f5eSAndroid Build Coastguard Worker ctor public ContentRecommendation.Builder(); 169*344a7f5eSAndroid Build Coastguard Worker method public android.support.app.recommendation.ContentRecommendation build(); 170*344a7f5eSAndroid Build Coastguard Worker method public android.support.app.recommendation.ContentRecommendation.Builder setAutoDismiss(boolean); 171*344a7f5eSAndroid Build Coastguard Worker method public android.support.app.recommendation.ContentRecommendation.Builder setBackgroundImageUri(java.lang.String); 172*344a7f5eSAndroid Build Coastguard Worker method public android.support.app.recommendation.ContentRecommendation.Builder setBadgeIcon(int); 173*344a7f5eSAndroid Build Coastguard Worker method public android.support.app.recommendation.ContentRecommendation.Builder setColor(int); 174*344a7f5eSAndroid Build Coastguard Worker method public android.support.app.recommendation.ContentRecommendation.Builder setContentImage(android.graphics.Bitmap); 175*344a7f5eSAndroid Build Coastguard Worker method public android.support.app.recommendation.ContentRecommendation.Builder setContentIntentData(int, android.content.Intent, int, android.os.Bundle); 176*344a7f5eSAndroid Build Coastguard Worker method public android.support.app.recommendation.ContentRecommendation.Builder setContentTypes(java.lang.String[]); 177*344a7f5eSAndroid Build Coastguard Worker method public android.support.app.recommendation.ContentRecommendation.Builder setDismissIntentData(int, android.content.Intent, int, android.os.Bundle); 178*344a7f5eSAndroid Build Coastguard Worker method public android.support.app.recommendation.ContentRecommendation.Builder setGenres(java.lang.String[]); 179*344a7f5eSAndroid Build Coastguard Worker method public android.support.app.recommendation.ContentRecommendation.Builder setGroup(java.lang.String); 180*344a7f5eSAndroid Build Coastguard Worker method public android.support.app.recommendation.ContentRecommendation.Builder setIdTag(java.lang.String); 181*344a7f5eSAndroid Build Coastguard Worker method public android.support.app.recommendation.ContentRecommendation.Builder setMaturityRating(java.lang.String); 182*344a7f5eSAndroid Build Coastguard Worker method public android.support.app.recommendation.ContentRecommendation.Builder setPricingInformation(java.lang.String, java.lang.String); 183*344a7f5eSAndroid Build Coastguard Worker method public android.support.app.recommendation.ContentRecommendation.Builder setProgress(int, int); 184*344a7f5eSAndroid Build Coastguard Worker method public android.support.app.recommendation.ContentRecommendation.Builder setRunningTime(long); 185*344a7f5eSAndroid Build Coastguard Worker method public android.support.app.recommendation.ContentRecommendation.Builder setSortKey(java.lang.String); 186*344a7f5eSAndroid Build Coastguard Worker method public android.support.app.recommendation.ContentRecommendation.Builder setSourceName(java.lang.String); 187*344a7f5eSAndroid Build Coastguard Worker method public android.support.app.recommendation.ContentRecommendation.Builder setStatus(int); 188*344a7f5eSAndroid Build Coastguard Worker method public android.support.app.recommendation.ContentRecommendation.Builder setText(java.lang.String); 189*344a7f5eSAndroid Build Coastguard Worker method public android.support.app.recommendation.ContentRecommendation.Builder setTitle(java.lang.String); 190*344a7f5eSAndroid Build Coastguard Worker } 191*344a7f5eSAndroid Build Coastguard Worker 192*344a7f5eSAndroid Build Coastguard Worker public static abstract class ContentRecommendation.ContentMaturity implements java.lang.annotation.Annotation { 193*344a7f5eSAndroid Build Coastguard Worker } 194*344a7f5eSAndroid Build Coastguard Worker 195*344a7f5eSAndroid Build Coastguard Worker public static abstract class ContentRecommendation.ContentPricing implements java.lang.annotation.Annotation { 196*344a7f5eSAndroid Build Coastguard Worker } 197*344a7f5eSAndroid Build Coastguard Worker 198*344a7f5eSAndroid Build Coastguard Worker public static abstract class ContentRecommendation.ContentStatus implements java.lang.annotation.Annotation { 199*344a7f5eSAndroid Build Coastguard Worker } 200*344a7f5eSAndroid Build Coastguard Worker 201*344a7f5eSAndroid Build Coastguard Worker public static abstract class ContentRecommendation.ContentType implements java.lang.annotation.Annotation { 202*344a7f5eSAndroid Build Coastguard Worker } 203*344a7f5eSAndroid Build Coastguard Worker 204*344a7f5eSAndroid Build Coastguard Worker public static class ContentRecommendation.IntentData { 205*344a7f5eSAndroid Build Coastguard Worker ctor public ContentRecommendation.IntentData(); 206*344a7f5eSAndroid Build Coastguard Worker } 207*344a7f5eSAndroid Build Coastguard Worker 208*344a7f5eSAndroid Build Coastguard Worker public static abstract class ContentRecommendation.IntentType implements java.lang.annotation.Annotation { 209*344a7f5eSAndroid Build Coastguard Worker } 210*344a7f5eSAndroid Build Coastguard Worker 211*344a7f5eSAndroid Build Coastguard Worker public final class RecommendationExtender implements android.app.Notification.Extender { 212*344a7f5eSAndroid Build Coastguard Worker ctor public RecommendationExtender(); 213*344a7f5eSAndroid Build Coastguard Worker ctor public RecommendationExtender(android.app.Notification); 214*344a7f5eSAndroid Build Coastguard Worker method public android.app.Notification.Builder extend(android.app.Notification.Builder); 215*344a7f5eSAndroid Build Coastguard Worker method public java.lang.String[] getContentTypes(); 216*344a7f5eSAndroid Build Coastguard Worker method public java.lang.String[] getGenres(); 217*344a7f5eSAndroid Build Coastguard Worker method public java.lang.String getMaturityRating(); 218*344a7f5eSAndroid Build Coastguard Worker method public java.lang.String getPricingType(); 219*344a7f5eSAndroid Build Coastguard Worker method public java.lang.String getPricingValue(); 220*344a7f5eSAndroid Build Coastguard Worker method public java.lang.String getPrimaryContentType(); 221*344a7f5eSAndroid Build Coastguard Worker method public long getRunningTime(); 222*344a7f5eSAndroid Build Coastguard Worker method public int getStatus(); 223*344a7f5eSAndroid Build Coastguard Worker method public android.support.app.recommendation.RecommendationExtender setContentTypes(java.lang.String[]); 224*344a7f5eSAndroid Build Coastguard Worker method public android.support.app.recommendation.RecommendationExtender setGenres(java.lang.String[]); 225*344a7f5eSAndroid Build Coastguard Worker method public android.support.app.recommendation.RecommendationExtender setMaturityRating(java.lang.String); 226*344a7f5eSAndroid Build Coastguard Worker method public android.support.app.recommendation.RecommendationExtender setPricingInformation(java.lang.String, java.lang.String); 227*344a7f5eSAndroid Build Coastguard Worker method public android.support.app.recommendation.RecommendationExtender setRunningTime(long); 228*344a7f5eSAndroid Build Coastguard Worker method public android.support.app.recommendation.RecommendationExtender setStatus(int); 229*344a7f5eSAndroid Build Coastguard Worker } 230*344a7f5eSAndroid Build Coastguard Worker 231*344a7f5eSAndroid Build Coastguard Worker} 232*344a7f5eSAndroid Build Coastguard Worker 233*344a7f5eSAndroid Build Coastguard Workerpackage android.support.customtabs { 234*344a7f5eSAndroid Build Coastguard Worker 235*344a7f5eSAndroid Build Coastguard Worker public class CustomTabsCallback { 236*344a7f5eSAndroid Build Coastguard Worker ctor public CustomTabsCallback(); 237*344a7f5eSAndroid Build Coastguard Worker method public void extraCallback(java.lang.String, android.os.Bundle); 238*344a7f5eSAndroid Build Coastguard Worker method public void onMessageChannelReady(android.os.Bundle); 239*344a7f5eSAndroid Build Coastguard Worker method public void onNavigationEvent(int, android.os.Bundle); 240*344a7f5eSAndroid Build Coastguard Worker method public void onPostMessage(java.lang.String, android.os.Bundle); 241*344a7f5eSAndroid Build Coastguard Worker field public static final int NAVIGATION_ABORTED = 4; // 0x4 242*344a7f5eSAndroid Build Coastguard Worker field public static final int NAVIGATION_FAILED = 3; // 0x3 243*344a7f5eSAndroid Build Coastguard Worker field public static final int NAVIGATION_FINISHED = 2; // 0x2 244*344a7f5eSAndroid Build Coastguard Worker field public static final int NAVIGATION_STARTED = 1; // 0x1 245*344a7f5eSAndroid Build Coastguard Worker field public static final int TAB_HIDDEN = 6; // 0x6 246*344a7f5eSAndroid Build Coastguard Worker field public static final int TAB_SHOWN = 5; // 0x5 247*344a7f5eSAndroid Build Coastguard Worker } 248*344a7f5eSAndroid Build Coastguard Worker 249*344a7f5eSAndroid Build Coastguard Worker public class CustomTabsClient { 250*344a7f5eSAndroid Build Coastguard Worker method public static boolean bindCustomTabsService(android.content.Context, java.lang.String, android.support.customtabs.CustomTabsServiceConnection); 251*344a7f5eSAndroid Build Coastguard Worker method public static boolean connectAndInitialize(android.content.Context, java.lang.String); 252*344a7f5eSAndroid Build Coastguard Worker method public android.os.Bundle extraCommand(java.lang.String, android.os.Bundle); 253*344a7f5eSAndroid Build Coastguard Worker method public static java.lang.String getPackageName(android.content.Context, java.util.List<java.lang.String>); 254*344a7f5eSAndroid Build Coastguard Worker method public static java.lang.String getPackageName(android.content.Context, java.util.List<java.lang.String>, boolean); 255*344a7f5eSAndroid Build Coastguard Worker method public android.support.customtabs.CustomTabsSession newSession(android.support.customtabs.CustomTabsCallback); 256*344a7f5eSAndroid Build Coastguard Worker method public boolean warmup(long); 257*344a7f5eSAndroid Build Coastguard Worker } 258*344a7f5eSAndroid Build Coastguard Worker 259*344a7f5eSAndroid Build Coastguard Worker public final class CustomTabsIntent { 260*344a7f5eSAndroid Build Coastguard Worker method public static int getMaxToolbarItems(); 261*344a7f5eSAndroid Build Coastguard Worker method public void launchUrl(android.content.Context, android.net.Uri); 262*344a7f5eSAndroid Build Coastguard Worker method public static android.content.Intent setAlwaysUseBrowserUI(android.content.Intent); 263*344a7f5eSAndroid Build Coastguard Worker method public static boolean shouldAlwaysUseBrowserUI(android.content.Intent); 264*344a7f5eSAndroid Build Coastguard Worker field public static final java.lang.String EXTRA_ACTION_BUTTON_BUNDLE = "android.support.customtabs.extra.ACTION_BUTTON_BUNDLE"; 265*344a7f5eSAndroid Build Coastguard Worker field public static final java.lang.String EXTRA_CLOSE_BUTTON_ICON = "android.support.customtabs.extra.CLOSE_BUTTON_ICON"; 266*344a7f5eSAndroid Build Coastguard Worker field public static final java.lang.String EXTRA_DEFAULT_SHARE_MENU_ITEM = "android.support.customtabs.extra.SHARE_MENU_ITEM"; 267*344a7f5eSAndroid Build Coastguard Worker field public static final java.lang.String EXTRA_ENABLE_INSTANT_APPS = "android.support.customtabs.extra.EXTRA_ENABLE_INSTANT_APPS"; 268*344a7f5eSAndroid Build Coastguard Worker field public static final java.lang.String EXTRA_ENABLE_URLBAR_HIDING = "android.support.customtabs.extra.ENABLE_URLBAR_HIDING"; 269*344a7f5eSAndroid Build Coastguard Worker field public static final java.lang.String EXTRA_EXIT_ANIMATION_BUNDLE = "android.support.customtabs.extra.EXIT_ANIMATION_BUNDLE"; 270*344a7f5eSAndroid Build Coastguard Worker field public static final java.lang.String EXTRA_MENU_ITEMS = "android.support.customtabs.extra.MENU_ITEMS"; 271*344a7f5eSAndroid Build Coastguard Worker field public static final java.lang.String EXTRA_REMOTEVIEWS = "android.support.customtabs.extra.EXTRA_REMOTEVIEWS"; 272*344a7f5eSAndroid Build Coastguard Worker field public static final java.lang.String EXTRA_REMOTEVIEWS_CLICKED_ID = "android.support.customtabs.extra.EXTRA_REMOTEVIEWS_CLICKED_ID"; 273*344a7f5eSAndroid Build Coastguard Worker field public static final java.lang.String EXTRA_REMOTEVIEWS_PENDINGINTENT = "android.support.customtabs.extra.EXTRA_REMOTEVIEWS_PENDINGINTENT"; 274*344a7f5eSAndroid Build Coastguard Worker field public static final java.lang.String EXTRA_REMOTEVIEWS_VIEW_IDS = "android.support.customtabs.extra.EXTRA_REMOTEVIEWS_VIEW_IDS"; 275*344a7f5eSAndroid Build Coastguard Worker field public static final java.lang.String EXTRA_SECONDARY_TOOLBAR_COLOR = "android.support.customtabs.extra.SECONDARY_TOOLBAR_COLOR"; 276*344a7f5eSAndroid Build Coastguard Worker field public static final java.lang.String EXTRA_SESSION = "android.support.customtabs.extra.SESSION"; 277*344a7f5eSAndroid Build Coastguard Worker field public static final java.lang.String EXTRA_TINT_ACTION_BUTTON = "android.support.customtabs.extra.TINT_ACTION_BUTTON"; 278*344a7f5eSAndroid Build Coastguard Worker field public static final java.lang.String EXTRA_TITLE_VISIBILITY_STATE = "android.support.customtabs.extra.TITLE_VISIBILITY"; 279*344a7f5eSAndroid Build Coastguard Worker field public static final java.lang.String EXTRA_TOOLBAR_COLOR = "android.support.customtabs.extra.TOOLBAR_COLOR"; 280*344a7f5eSAndroid Build Coastguard Worker field public static final java.lang.String EXTRA_TOOLBAR_ITEMS = "android.support.customtabs.extra.TOOLBAR_ITEMS"; 281*344a7f5eSAndroid Build Coastguard Worker field public static final java.lang.String KEY_DESCRIPTION = "android.support.customtabs.customaction.DESCRIPTION"; 282*344a7f5eSAndroid Build Coastguard Worker field public static final java.lang.String KEY_ICON = "android.support.customtabs.customaction.ICON"; 283*344a7f5eSAndroid Build Coastguard Worker field public static final java.lang.String KEY_ID = "android.support.customtabs.customaction.ID"; 284*344a7f5eSAndroid Build Coastguard Worker field public static final java.lang.String KEY_MENU_ITEM_TITLE = "android.support.customtabs.customaction.MENU_ITEM_TITLE"; 285*344a7f5eSAndroid Build Coastguard Worker field public static final java.lang.String KEY_PENDING_INTENT = "android.support.customtabs.customaction.PENDING_INTENT"; 286*344a7f5eSAndroid Build Coastguard Worker field public static final int NO_TITLE = 0; // 0x0 287*344a7f5eSAndroid Build Coastguard Worker field public static final int SHOW_PAGE_TITLE = 1; // 0x1 288*344a7f5eSAndroid Build Coastguard Worker field public static final int TOOLBAR_ACTION_BUTTON_ID = 0; // 0x0 289*344a7f5eSAndroid Build Coastguard Worker field public final android.content.Intent intent; 290*344a7f5eSAndroid Build Coastguard Worker field public final android.os.Bundle startAnimationBundle; 291*344a7f5eSAndroid Build Coastguard Worker } 292*344a7f5eSAndroid Build Coastguard Worker 293*344a7f5eSAndroid Build Coastguard Worker public static final class CustomTabsIntent.Builder { 294*344a7f5eSAndroid Build Coastguard Worker ctor public CustomTabsIntent.Builder(); 295*344a7f5eSAndroid Build Coastguard Worker ctor public CustomTabsIntent.Builder(android.support.customtabs.CustomTabsSession); 296*344a7f5eSAndroid Build Coastguard Worker method public android.support.customtabs.CustomTabsIntent.Builder addDefaultShareMenuItem(); 297*344a7f5eSAndroid Build Coastguard Worker method public android.support.customtabs.CustomTabsIntent.Builder addMenuItem(java.lang.String, android.app.PendingIntent); 298*344a7f5eSAndroid Build Coastguard Worker method public deprecated android.support.customtabs.CustomTabsIntent.Builder addToolbarItem(int, android.graphics.Bitmap, java.lang.String, android.app.PendingIntent) throws java.lang.IllegalStateException; 299*344a7f5eSAndroid Build Coastguard Worker method public android.support.customtabs.CustomTabsIntent build(); 300*344a7f5eSAndroid Build Coastguard Worker method public android.support.customtabs.CustomTabsIntent.Builder enableUrlBarHiding(); 301*344a7f5eSAndroid Build Coastguard Worker method public android.support.customtabs.CustomTabsIntent.Builder setActionButton(android.graphics.Bitmap, java.lang.String, android.app.PendingIntent, boolean); 302*344a7f5eSAndroid Build Coastguard Worker method public android.support.customtabs.CustomTabsIntent.Builder setActionButton(android.graphics.Bitmap, java.lang.String, android.app.PendingIntent); 303*344a7f5eSAndroid Build Coastguard Worker method public android.support.customtabs.CustomTabsIntent.Builder setCloseButtonIcon(android.graphics.Bitmap); 304*344a7f5eSAndroid Build Coastguard Worker method public android.support.customtabs.CustomTabsIntent.Builder setExitAnimations(android.content.Context, int, int); 305*344a7f5eSAndroid Build Coastguard Worker method public android.support.customtabs.CustomTabsIntent.Builder setInstantAppsEnabled(boolean); 306*344a7f5eSAndroid Build Coastguard Worker method public android.support.customtabs.CustomTabsIntent.Builder setSecondaryToolbarColor(int); 307*344a7f5eSAndroid Build Coastguard Worker method public android.support.customtabs.CustomTabsIntent.Builder setSecondaryToolbarViews(android.widget.RemoteViews, int[], android.app.PendingIntent); 308*344a7f5eSAndroid Build Coastguard Worker method public android.support.customtabs.CustomTabsIntent.Builder setShowTitle(boolean); 309*344a7f5eSAndroid Build Coastguard Worker method public android.support.customtabs.CustomTabsIntent.Builder setStartAnimations(android.content.Context, int, int); 310*344a7f5eSAndroid Build Coastguard Worker method public android.support.customtabs.CustomTabsIntent.Builder setToolbarColor(int); 311*344a7f5eSAndroid Build Coastguard Worker } 312*344a7f5eSAndroid Build Coastguard Worker 313*344a7f5eSAndroid Build Coastguard Worker public abstract class CustomTabsService extends android.app.Service { 314*344a7f5eSAndroid Build Coastguard Worker ctor public CustomTabsService(); 315*344a7f5eSAndroid Build Coastguard Worker method protected boolean cleanUpSession(android.support.customtabs.CustomTabsSessionToken); 316*344a7f5eSAndroid Build Coastguard Worker method protected abstract android.os.Bundle extraCommand(java.lang.String, android.os.Bundle); 317*344a7f5eSAndroid Build Coastguard Worker method protected abstract boolean mayLaunchUrl(android.support.customtabs.CustomTabsSessionToken, android.net.Uri, android.os.Bundle, java.util.List<android.os.Bundle>); 318*344a7f5eSAndroid Build Coastguard Worker method protected abstract boolean newSession(android.support.customtabs.CustomTabsSessionToken); 319*344a7f5eSAndroid Build Coastguard Worker method public android.os.IBinder onBind(android.content.Intent); 320*344a7f5eSAndroid Build Coastguard Worker method protected abstract int postMessage(android.support.customtabs.CustomTabsSessionToken, java.lang.String, android.os.Bundle); 321*344a7f5eSAndroid Build Coastguard Worker method protected abstract boolean requestPostMessageChannel(android.support.customtabs.CustomTabsSessionToken, android.net.Uri); 322*344a7f5eSAndroid Build Coastguard Worker method protected abstract boolean updateVisuals(android.support.customtabs.CustomTabsSessionToken, android.os.Bundle); 323*344a7f5eSAndroid Build Coastguard Worker method protected abstract boolean warmup(long); 324*344a7f5eSAndroid Build Coastguard Worker field public static final java.lang.String ACTION_CUSTOM_TABS_CONNECTION = "android.support.customtabs.action.CustomTabsService"; 325*344a7f5eSAndroid Build Coastguard Worker field public static final java.lang.String KEY_URL = "android.support.customtabs.otherurls.URL"; 326*344a7f5eSAndroid Build Coastguard Worker field public static final int RESULT_FAILURE_DISALLOWED = -1; // 0xffffffff 327*344a7f5eSAndroid Build Coastguard Worker field public static final int RESULT_FAILURE_MESSAGING_ERROR = -3; // 0xfffffffd 328*344a7f5eSAndroid Build Coastguard Worker field public static final int RESULT_FAILURE_REMOTE_ERROR = -2; // 0xfffffffe 329*344a7f5eSAndroid Build Coastguard Worker field public static final int RESULT_SUCCESS = 0; // 0x0 330*344a7f5eSAndroid Build Coastguard Worker } 331*344a7f5eSAndroid Build Coastguard Worker 332*344a7f5eSAndroid Build Coastguard Worker public static abstract class CustomTabsService.Result implements java.lang.annotation.Annotation { 333*344a7f5eSAndroid Build Coastguard Worker } 334*344a7f5eSAndroid Build Coastguard Worker 335*344a7f5eSAndroid Build Coastguard Worker public abstract class CustomTabsServiceConnection implements android.content.ServiceConnection { 336*344a7f5eSAndroid Build Coastguard Worker ctor public CustomTabsServiceConnection(); 337*344a7f5eSAndroid Build Coastguard Worker method public abstract void onCustomTabsServiceConnected(android.content.ComponentName, android.support.customtabs.CustomTabsClient); 338*344a7f5eSAndroid Build Coastguard Worker method public final void onServiceConnected(android.content.ComponentName, android.os.IBinder); 339*344a7f5eSAndroid Build Coastguard Worker } 340*344a7f5eSAndroid Build Coastguard Worker 341*344a7f5eSAndroid Build Coastguard Worker public final class CustomTabsSession { 342*344a7f5eSAndroid Build Coastguard Worker method public boolean mayLaunchUrl(android.net.Uri, android.os.Bundle, java.util.List<android.os.Bundle>); 343*344a7f5eSAndroid Build Coastguard Worker method public int postMessage(java.lang.String, android.os.Bundle); 344*344a7f5eSAndroid Build Coastguard Worker method public boolean requestPostMessageChannel(android.net.Uri); 345*344a7f5eSAndroid Build Coastguard Worker method public boolean setActionButton(android.graphics.Bitmap, java.lang.String); 346*344a7f5eSAndroid Build Coastguard Worker method public boolean setSecondaryToolbarViews(android.widget.RemoteViews, int[], android.app.PendingIntent); 347*344a7f5eSAndroid Build Coastguard Worker method public deprecated boolean setToolbarItem(int, android.graphics.Bitmap, java.lang.String); 348*344a7f5eSAndroid Build Coastguard Worker } 349*344a7f5eSAndroid Build Coastguard Worker 350*344a7f5eSAndroid Build Coastguard Worker public class CustomTabsSessionToken { 351*344a7f5eSAndroid Build Coastguard Worker method public android.support.customtabs.CustomTabsCallback getCallback(); 352*344a7f5eSAndroid Build Coastguard Worker method public static android.support.customtabs.CustomTabsSessionToken getSessionTokenFromIntent(android.content.Intent); 353*344a7f5eSAndroid Build Coastguard Worker method public boolean isAssociatedWith(android.support.customtabs.CustomTabsSession); 354*344a7f5eSAndroid Build Coastguard Worker } 355*344a7f5eSAndroid Build Coastguard Worker 356*344a7f5eSAndroid Build Coastguard Worker public class PostMessageService extends android.app.Service { 357*344a7f5eSAndroid Build Coastguard Worker ctor public PostMessageService(); 358*344a7f5eSAndroid Build Coastguard Worker method public android.os.IBinder onBind(android.content.Intent); 359*344a7f5eSAndroid Build Coastguard Worker } 360*344a7f5eSAndroid Build Coastguard Worker 361*344a7f5eSAndroid Build Coastguard Worker public abstract class PostMessageServiceConnection implements android.content.ServiceConnection { 362*344a7f5eSAndroid Build Coastguard Worker ctor public PostMessageServiceConnection(android.support.customtabs.CustomTabsSessionToken); 363*344a7f5eSAndroid Build Coastguard Worker method public boolean bindSessionToPostMessageService(android.content.Context, java.lang.String); 364*344a7f5eSAndroid Build Coastguard Worker method public final boolean notifyMessageChannelReady(android.os.Bundle); 365*344a7f5eSAndroid Build Coastguard Worker method public void onPostMessageServiceConnected(); 366*344a7f5eSAndroid Build Coastguard Worker method public void onPostMessageServiceDisconnected(); 367*344a7f5eSAndroid Build Coastguard Worker method public final void onServiceConnected(android.content.ComponentName, android.os.IBinder); 368*344a7f5eSAndroid Build Coastguard Worker method public final void onServiceDisconnected(android.content.ComponentName); 369*344a7f5eSAndroid Build Coastguard Worker method public final boolean postMessage(java.lang.String, android.os.Bundle); 370*344a7f5eSAndroid Build Coastguard Worker method public void unbindFromContext(android.content.Context); 371*344a7f5eSAndroid Build Coastguard Worker } 372*344a7f5eSAndroid Build Coastguard Worker 373*344a7f5eSAndroid Build Coastguard Worker} 374*344a7f5eSAndroid Build Coastguard Worker 375*344a7f5eSAndroid Build Coastguard Workerpackage android.support.design.widget { 376*344a7f5eSAndroid Build Coastguard Worker 377*344a7f5eSAndroid Build Coastguard Worker public class AppBarLayout extends android.widget.LinearLayout { 378*344a7f5eSAndroid Build Coastguard Worker ctor public AppBarLayout(android.content.Context); 379*344a7f5eSAndroid Build Coastguard Worker ctor public AppBarLayout(android.content.Context, android.util.AttributeSet); 380*344a7f5eSAndroid Build Coastguard Worker method public void addOnOffsetChangedListener(android.support.design.widget.AppBarLayout.OnOffsetChangedListener); 381*344a7f5eSAndroid Build Coastguard Worker method public deprecated float getTargetElevation(); 382*344a7f5eSAndroid Build Coastguard Worker method public final int getTotalScrollRange(); 383*344a7f5eSAndroid Build Coastguard Worker method public void removeOnOffsetChangedListener(android.support.design.widget.AppBarLayout.OnOffsetChangedListener); 384*344a7f5eSAndroid Build Coastguard Worker method public void setExpanded(boolean); 385*344a7f5eSAndroid Build Coastguard Worker method public void setExpanded(boolean, boolean); 386*344a7f5eSAndroid Build Coastguard Worker method public deprecated void setTargetElevation(float); 387*344a7f5eSAndroid Build Coastguard Worker } 388*344a7f5eSAndroid Build Coastguard Worker 389*344a7f5eSAndroid Build Coastguard Worker public static class AppBarLayout.Behavior extends android.support.design.widget.HeaderBehavior { 390*344a7f5eSAndroid Build Coastguard Worker ctor public AppBarLayout.Behavior(); 391*344a7f5eSAndroid Build Coastguard Worker ctor public AppBarLayout.Behavior(android.content.Context, android.util.AttributeSet); 392*344a7f5eSAndroid Build Coastguard Worker method public boolean onLayoutChild(android.support.design.widget.CoordinatorLayout, android.support.design.widget.AppBarLayout, int); 393*344a7f5eSAndroid Build Coastguard Worker method public boolean onMeasureChild(android.support.design.widget.CoordinatorLayout, android.support.design.widget.AppBarLayout, int, int, int, int); 394*344a7f5eSAndroid Build Coastguard Worker method public void onNestedPreScroll(android.support.design.widget.CoordinatorLayout, android.support.design.widget.AppBarLayout, android.view.View, int, int, int[], int); 395*344a7f5eSAndroid Build Coastguard Worker method public void onNestedScroll(android.support.design.widget.CoordinatorLayout, android.support.design.widget.AppBarLayout, android.view.View, int, int, int, int, int); 396*344a7f5eSAndroid Build Coastguard Worker method public void onRestoreInstanceState(android.support.design.widget.CoordinatorLayout, android.support.design.widget.AppBarLayout, android.os.Parcelable); 397*344a7f5eSAndroid Build Coastguard Worker method public android.os.Parcelable onSaveInstanceState(android.support.design.widget.CoordinatorLayout, android.support.design.widget.AppBarLayout); 398*344a7f5eSAndroid Build Coastguard Worker method public boolean onStartNestedScroll(android.support.design.widget.CoordinatorLayout, android.support.design.widget.AppBarLayout, android.view.View, android.view.View, int, int); 399*344a7f5eSAndroid Build Coastguard Worker method public void onStopNestedScroll(android.support.design.widget.CoordinatorLayout, android.support.design.widget.AppBarLayout, android.view.View, int); 400*344a7f5eSAndroid Build Coastguard Worker method public void setDragCallback(android.support.design.widget.AppBarLayout.Behavior.DragCallback); 401*344a7f5eSAndroid Build Coastguard Worker } 402*344a7f5eSAndroid Build Coastguard Worker 403*344a7f5eSAndroid Build Coastguard Worker public static abstract class AppBarLayout.Behavior.DragCallback { 404*344a7f5eSAndroid Build Coastguard Worker ctor public AppBarLayout.Behavior.DragCallback(); 405*344a7f5eSAndroid Build Coastguard Worker method public abstract boolean canDrag(android.support.design.widget.AppBarLayout); 406*344a7f5eSAndroid Build Coastguard Worker } 407*344a7f5eSAndroid Build Coastguard Worker 408*344a7f5eSAndroid Build Coastguard Worker protected static class AppBarLayout.Behavior.SavedState extends android.support.v4.view.AbsSavedState { 409*344a7f5eSAndroid Build Coastguard Worker ctor public AppBarLayout.Behavior.SavedState(android.os.Parcel, java.lang.ClassLoader); 410*344a7f5eSAndroid Build Coastguard Worker ctor public AppBarLayout.Behavior.SavedState(android.os.Parcelable); 411*344a7f5eSAndroid Build Coastguard Worker field public static final android.os.Parcelable.Creator<android.support.design.widget.AppBarLayout.Behavior.SavedState> CREATOR; 412*344a7f5eSAndroid Build Coastguard Worker } 413*344a7f5eSAndroid Build Coastguard Worker 414*344a7f5eSAndroid Build Coastguard Worker public static class AppBarLayout.LayoutParams extends android.widget.LinearLayout.LayoutParams { 415*344a7f5eSAndroid Build Coastguard Worker ctor public AppBarLayout.LayoutParams(android.content.Context, android.util.AttributeSet); 416*344a7f5eSAndroid Build Coastguard Worker ctor public AppBarLayout.LayoutParams(int, int); 417*344a7f5eSAndroid Build Coastguard Worker ctor public AppBarLayout.LayoutParams(int, int, float); 418*344a7f5eSAndroid Build Coastguard Worker ctor public AppBarLayout.LayoutParams(android.view.ViewGroup.LayoutParams); 419*344a7f5eSAndroid Build Coastguard Worker ctor public AppBarLayout.LayoutParams(android.view.ViewGroup.MarginLayoutParams); 420*344a7f5eSAndroid Build Coastguard Worker ctor public AppBarLayout.LayoutParams(android.widget.LinearLayout.LayoutParams); 421*344a7f5eSAndroid Build Coastguard Worker ctor public AppBarLayout.LayoutParams(android.support.design.widget.AppBarLayout.LayoutParams); 422*344a7f5eSAndroid Build Coastguard Worker method public int getScrollFlags(); 423*344a7f5eSAndroid Build Coastguard Worker method public android.view.animation.Interpolator getScrollInterpolator(); 424*344a7f5eSAndroid Build Coastguard Worker method public void setScrollFlags(int); 425*344a7f5eSAndroid Build Coastguard Worker method public void setScrollInterpolator(android.view.animation.Interpolator); 426*344a7f5eSAndroid Build Coastguard Worker field public static final int SCROLL_FLAG_ENTER_ALWAYS = 4; // 0x4 427*344a7f5eSAndroid Build Coastguard Worker field public static final int SCROLL_FLAG_ENTER_ALWAYS_COLLAPSED = 8; // 0x8 428*344a7f5eSAndroid Build Coastguard Worker field public static final int SCROLL_FLAG_EXIT_UNTIL_COLLAPSED = 2; // 0x2 429*344a7f5eSAndroid Build Coastguard Worker field public static final int SCROLL_FLAG_SCROLL = 1; // 0x1 430*344a7f5eSAndroid Build Coastguard Worker field public static final int SCROLL_FLAG_SNAP = 16; // 0x10 431*344a7f5eSAndroid Build Coastguard Worker } 432*344a7f5eSAndroid Build Coastguard Worker 433*344a7f5eSAndroid Build Coastguard Worker public static abstract interface AppBarLayout.OnOffsetChangedListener { 434*344a7f5eSAndroid Build Coastguard Worker method public abstract void onOffsetChanged(android.support.design.widget.AppBarLayout, int); 435*344a7f5eSAndroid Build Coastguard Worker } 436*344a7f5eSAndroid Build Coastguard Worker 437*344a7f5eSAndroid Build Coastguard Worker public static class AppBarLayout.ScrollingViewBehavior extends android.support.design.widget.HeaderScrollingViewBehavior { 438*344a7f5eSAndroid Build Coastguard Worker ctor public AppBarLayout.ScrollingViewBehavior(); 439*344a7f5eSAndroid Build Coastguard Worker ctor public AppBarLayout.ScrollingViewBehavior(android.content.Context, android.util.AttributeSet); 440*344a7f5eSAndroid Build Coastguard Worker method public boolean layoutDependsOn(android.support.design.widget.CoordinatorLayout, android.view.View, android.view.View); 441*344a7f5eSAndroid Build Coastguard Worker method public boolean onDependentViewChanged(android.support.design.widget.CoordinatorLayout, android.view.View, android.view.View); 442*344a7f5eSAndroid Build Coastguard Worker method public boolean onRequestChildRectangleOnScreen(android.support.design.widget.CoordinatorLayout, android.view.View, android.graphics.Rect, boolean); 443*344a7f5eSAndroid Build Coastguard Worker } 444*344a7f5eSAndroid Build Coastguard Worker 445*344a7f5eSAndroid Build Coastguard Worker public abstract class BaseTransientBottomBar<B extends android.support.design.widget.BaseTransientBottomBar<B>> { 446*344a7f5eSAndroid Build Coastguard Worker ctor protected BaseTransientBottomBar(android.view.ViewGroup, android.view.View, android.support.design.widget.BaseTransientBottomBar.ContentViewCallback); 447*344a7f5eSAndroid Build Coastguard Worker method public B addCallback(android.support.design.widget.BaseTransientBottomBar.BaseCallback<B>); 448*344a7f5eSAndroid Build Coastguard Worker method public void dismiss(); 449*344a7f5eSAndroid Build Coastguard Worker method public android.content.Context getContext(); 450*344a7f5eSAndroid Build Coastguard Worker method public int getDuration(); 451*344a7f5eSAndroid Build Coastguard Worker method public android.view.View getView(); 452*344a7f5eSAndroid Build Coastguard Worker method public boolean isShown(); 453*344a7f5eSAndroid Build Coastguard Worker method public boolean isShownOrQueued(); 454*344a7f5eSAndroid Build Coastguard Worker method public B removeCallback(android.support.design.widget.BaseTransientBottomBar.BaseCallback<B>); 455*344a7f5eSAndroid Build Coastguard Worker method public B setDuration(int); 456*344a7f5eSAndroid Build Coastguard Worker method public void show(); 457*344a7f5eSAndroid Build Coastguard Worker field public static final int LENGTH_INDEFINITE = -2; // 0xfffffffe 458*344a7f5eSAndroid Build Coastguard Worker field public static final int LENGTH_LONG = 0; // 0x0 459*344a7f5eSAndroid Build Coastguard Worker field public static final int LENGTH_SHORT = -1; // 0xffffffff 460*344a7f5eSAndroid Build Coastguard Worker } 461*344a7f5eSAndroid Build Coastguard Worker 462*344a7f5eSAndroid Build Coastguard Worker public static abstract class BaseTransientBottomBar.BaseCallback<B> { 463*344a7f5eSAndroid Build Coastguard Worker ctor public BaseTransientBottomBar.BaseCallback(); 464*344a7f5eSAndroid Build Coastguard Worker method public void onDismissed(B, int); 465*344a7f5eSAndroid Build Coastguard Worker method public void onShown(B); 466*344a7f5eSAndroid Build Coastguard Worker field public static final int DISMISS_EVENT_ACTION = 1; // 0x1 467*344a7f5eSAndroid Build Coastguard Worker field public static final int DISMISS_EVENT_CONSECUTIVE = 4; // 0x4 468*344a7f5eSAndroid Build Coastguard Worker field public static final int DISMISS_EVENT_MANUAL = 3; // 0x3 469*344a7f5eSAndroid Build Coastguard Worker field public static final int DISMISS_EVENT_SWIPE = 0; // 0x0 470*344a7f5eSAndroid Build Coastguard Worker field public static final int DISMISS_EVENT_TIMEOUT = 2; // 0x2 471*344a7f5eSAndroid Build Coastguard Worker } 472*344a7f5eSAndroid Build Coastguard Worker 473*344a7f5eSAndroid Build Coastguard Worker public static abstract interface BaseTransientBottomBar.ContentViewCallback { 474*344a7f5eSAndroid Build Coastguard Worker method public abstract void animateContentIn(int, int); 475*344a7f5eSAndroid Build Coastguard Worker method public abstract void animateContentOut(int, int); 476*344a7f5eSAndroid Build Coastguard Worker } 477*344a7f5eSAndroid Build Coastguard Worker 478*344a7f5eSAndroid Build Coastguard Worker public class BottomNavigationView extends android.widget.FrameLayout { 479*344a7f5eSAndroid Build Coastguard Worker ctor public BottomNavigationView(android.content.Context); 480*344a7f5eSAndroid Build Coastguard Worker ctor public BottomNavigationView(android.content.Context, android.util.AttributeSet); 481*344a7f5eSAndroid Build Coastguard Worker ctor public BottomNavigationView(android.content.Context, android.util.AttributeSet, int); 482*344a7f5eSAndroid Build Coastguard Worker method public int getItemBackgroundResource(); 483*344a7f5eSAndroid Build Coastguard Worker method public android.content.res.ColorStateList getItemIconTintList(); 484*344a7f5eSAndroid Build Coastguard Worker method public android.content.res.ColorStateList getItemTextColor(); 485*344a7f5eSAndroid Build Coastguard Worker method public int getMaxItemCount(); 486*344a7f5eSAndroid Build Coastguard Worker method public android.view.Menu getMenu(); 487*344a7f5eSAndroid Build Coastguard Worker method public int getSelectedItemId(); 488*344a7f5eSAndroid Build Coastguard Worker method public void inflateMenu(int); 489*344a7f5eSAndroid Build Coastguard Worker method public void setItemBackgroundResource(int); 490*344a7f5eSAndroid Build Coastguard Worker method public void setItemIconTintList(android.content.res.ColorStateList); 491*344a7f5eSAndroid Build Coastguard Worker method public void setItemTextColor(android.content.res.ColorStateList); 492*344a7f5eSAndroid Build Coastguard Worker method public void setOnNavigationItemReselectedListener(android.support.design.widget.BottomNavigationView.OnNavigationItemReselectedListener); 493*344a7f5eSAndroid Build Coastguard Worker method public void setOnNavigationItemSelectedListener(android.support.design.widget.BottomNavigationView.OnNavigationItemSelectedListener); 494*344a7f5eSAndroid Build Coastguard Worker method public void setSelectedItemId(int); 495*344a7f5eSAndroid Build Coastguard Worker } 496*344a7f5eSAndroid Build Coastguard Worker 497*344a7f5eSAndroid Build Coastguard Worker public static abstract interface BottomNavigationView.OnNavigationItemReselectedListener { 498*344a7f5eSAndroid Build Coastguard Worker method public abstract void onNavigationItemReselected(android.view.MenuItem); 499*344a7f5eSAndroid Build Coastguard Worker } 500*344a7f5eSAndroid Build Coastguard Worker 501*344a7f5eSAndroid Build Coastguard Worker public static abstract interface BottomNavigationView.OnNavigationItemSelectedListener { 502*344a7f5eSAndroid Build Coastguard Worker method public abstract boolean onNavigationItemSelected(android.view.MenuItem); 503*344a7f5eSAndroid Build Coastguard Worker } 504*344a7f5eSAndroid Build Coastguard Worker 505*344a7f5eSAndroid Build Coastguard Worker public class BottomSheetBehavior<V extends android.view.View> extends android.support.design.widget.CoordinatorLayout.Behavior { 506*344a7f5eSAndroid Build Coastguard Worker ctor public BottomSheetBehavior(); 507*344a7f5eSAndroid Build Coastguard Worker ctor public BottomSheetBehavior(android.content.Context, android.util.AttributeSet); 508*344a7f5eSAndroid Build Coastguard Worker method public static <V extends android.view.View> android.support.design.widget.BottomSheetBehavior<V> from(V); 509*344a7f5eSAndroid Build Coastguard Worker method public final int getPeekHeight(); 510*344a7f5eSAndroid Build Coastguard Worker method public boolean getSkipCollapsed(); 511*344a7f5eSAndroid Build Coastguard Worker method public final int getState(); 512*344a7f5eSAndroid Build Coastguard Worker method public boolean isHideable(); 513*344a7f5eSAndroid Build Coastguard Worker method public void setBottomSheetCallback(android.support.design.widget.BottomSheetBehavior.BottomSheetCallback); 514*344a7f5eSAndroid Build Coastguard Worker method public void setHideable(boolean); 515*344a7f5eSAndroid Build Coastguard Worker method public final void setPeekHeight(int); 516*344a7f5eSAndroid Build Coastguard Worker method public void setSkipCollapsed(boolean); 517*344a7f5eSAndroid Build Coastguard Worker method public final void setState(int); 518*344a7f5eSAndroid Build Coastguard Worker field public static final int PEEK_HEIGHT_AUTO = -1; // 0xffffffff 519*344a7f5eSAndroid Build Coastguard Worker field public static final int STATE_COLLAPSED = 4; // 0x4 520*344a7f5eSAndroid Build Coastguard Worker field public static final int STATE_DRAGGING = 1; // 0x1 521*344a7f5eSAndroid Build Coastguard Worker field public static final int STATE_EXPANDED = 3; // 0x3 522*344a7f5eSAndroid Build Coastguard Worker field public static final int STATE_HIDDEN = 5; // 0x5 523*344a7f5eSAndroid Build Coastguard Worker field public static final int STATE_SETTLING = 2; // 0x2 524*344a7f5eSAndroid Build Coastguard Worker } 525*344a7f5eSAndroid Build Coastguard Worker 526*344a7f5eSAndroid Build Coastguard Worker public static abstract class BottomSheetBehavior.BottomSheetCallback { 527*344a7f5eSAndroid Build Coastguard Worker ctor public BottomSheetBehavior.BottomSheetCallback(); 528*344a7f5eSAndroid Build Coastguard Worker method public abstract void onSlide(android.view.View, float); 529*344a7f5eSAndroid Build Coastguard Worker method public abstract void onStateChanged(android.view.View, int); 530*344a7f5eSAndroid Build Coastguard Worker } 531*344a7f5eSAndroid Build Coastguard Worker 532*344a7f5eSAndroid Build Coastguard Worker protected static class BottomSheetBehavior.SavedState extends android.support.v4.view.AbsSavedState { 533*344a7f5eSAndroid Build Coastguard Worker ctor public BottomSheetBehavior.SavedState(android.os.Parcel); 534*344a7f5eSAndroid Build Coastguard Worker ctor public BottomSheetBehavior.SavedState(android.os.Parcel, java.lang.ClassLoader); 535*344a7f5eSAndroid Build Coastguard Worker ctor public BottomSheetBehavior.SavedState(android.os.Parcelable, int); 536*344a7f5eSAndroid Build Coastguard Worker field public static final android.os.Parcelable.Creator<android.support.design.widget.BottomSheetBehavior.SavedState> CREATOR; 537*344a7f5eSAndroid Build Coastguard Worker } 538*344a7f5eSAndroid Build Coastguard Worker 539*344a7f5eSAndroid Build Coastguard Worker public class BottomSheetDialog extends android.support.v7.app.AppCompatDialog { 540*344a7f5eSAndroid Build Coastguard Worker ctor public BottomSheetDialog(android.content.Context); 541*344a7f5eSAndroid Build Coastguard Worker ctor public BottomSheetDialog(android.content.Context, int); 542*344a7f5eSAndroid Build Coastguard Worker ctor protected BottomSheetDialog(android.content.Context, boolean, android.content.DialogInterface.OnCancelListener); 543*344a7f5eSAndroid Build Coastguard Worker } 544*344a7f5eSAndroid Build Coastguard Worker 545*344a7f5eSAndroid Build Coastguard Worker public class BottomSheetDialogFragment extends android.support.v7.app.AppCompatDialogFragment { 546*344a7f5eSAndroid Build Coastguard Worker ctor public BottomSheetDialogFragment(); 547*344a7f5eSAndroid Build Coastguard Worker } 548*344a7f5eSAndroid Build Coastguard Worker 549*344a7f5eSAndroid Build Coastguard Worker public class CollapsingToolbarLayout extends android.widget.FrameLayout { 550*344a7f5eSAndroid Build Coastguard Worker ctor public CollapsingToolbarLayout(android.content.Context); 551*344a7f5eSAndroid Build Coastguard Worker ctor public CollapsingToolbarLayout(android.content.Context, android.util.AttributeSet); 552*344a7f5eSAndroid Build Coastguard Worker ctor public CollapsingToolbarLayout(android.content.Context, android.util.AttributeSet, int); 553*344a7f5eSAndroid Build Coastguard Worker method public int getCollapsedTitleGravity(); 554*344a7f5eSAndroid Build Coastguard Worker method public android.graphics.Typeface getCollapsedTitleTypeface(); 555*344a7f5eSAndroid Build Coastguard Worker method public android.graphics.drawable.Drawable getContentScrim(); 556*344a7f5eSAndroid Build Coastguard Worker method public int getExpandedTitleGravity(); 557*344a7f5eSAndroid Build Coastguard Worker method public int getExpandedTitleMarginBottom(); 558*344a7f5eSAndroid Build Coastguard Worker method public int getExpandedTitleMarginEnd(); 559*344a7f5eSAndroid Build Coastguard Worker method public int getExpandedTitleMarginStart(); 560*344a7f5eSAndroid Build Coastguard Worker method public int getExpandedTitleMarginTop(); 561*344a7f5eSAndroid Build Coastguard Worker method public android.graphics.Typeface getExpandedTitleTypeface(); 562*344a7f5eSAndroid Build Coastguard Worker method public long getScrimAnimationDuration(); 563*344a7f5eSAndroid Build Coastguard Worker method public int getScrimVisibleHeightTrigger(); 564*344a7f5eSAndroid Build Coastguard Worker method public android.graphics.drawable.Drawable getStatusBarScrim(); 565*344a7f5eSAndroid Build Coastguard Worker method public java.lang.CharSequence getTitle(); 566*344a7f5eSAndroid Build Coastguard Worker method public boolean isTitleEnabled(); 567*344a7f5eSAndroid Build Coastguard Worker method public void setCollapsedTitleGravity(int); 568*344a7f5eSAndroid Build Coastguard Worker method public void setCollapsedTitleTextAppearance(int); 569*344a7f5eSAndroid Build Coastguard Worker method public void setCollapsedTitleTextColor(int); 570*344a7f5eSAndroid Build Coastguard Worker method public void setCollapsedTitleTextColor(android.content.res.ColorStateList); 571*344a7f5eSAndroid Build Coastguard Worker method public void setCollapsedTitleTypeface(android.graphics.Typeface); 572*344a7f5eSAndroid Build Coastguard Worker method public void setContentScrim(android.graphics.drawable.Drawable); 573*344a7f5eSAndroid Build Coastguard Worker method public void setContentScrimColor(int); 574*344a7f5eSAndroid Build Coastguard Worker method public void setContentScrimResource(int); 575*344a7f5eSAndroid Build Coastguard Worker method public void setExpandedTitleColor(int); 576*344a7f5eSAndroid Build Coastguard Worker method public void setExpandedTitleGravity(int); 577*344a7f5eSAndroid Build Coastguard Worker method public void setExpandedTitleMargin(int, int, int, int); 578*344a7f5eSAndroid Build Coastguard Worker method public void setExpandedTitleMarginBottom(int); 579*344a7f5eSAndroid Build Coastguard Worker method public void setExpandedTitleMarginEnd(int); 580*344a7f5eSAndroid Build Coastguard Worker method public void setExpandedTitleMarginStart(int); 581*344a7f5eSAndroid Build Coastguard Worker method public void setExpandedTitleMarginTop(int); 582*344a7f5eSAndroid Build Coastguard Worker method public void setExpandedTitleTextAppearance(int); 583*344a7f5eSAndroid Build Coastguard Worker method public void setExpandedTitleTextColor(android.content.res.ColorStateList); 584*344a7f5eSAndroid Build Coastguard Worker method public void setExpandedTitleTypeface(android.graphics.Typeface); 585*344a7f5eSAndroid Build Coastguard Worker method public void setScrimAnimationDuration(long); 586*344a7f5eSAndroid Build Coastguard Worker method public void setScrimVisibleHeightTrigger(int); 587*344a7f5eSAndroid Build Coastguard Worker method public void setScrimsShown(boolean); 588*344a7f5eSAndroid Build Coastguard Worker method public void setScrimsShown(boolean, boolean); 589*344a7f5eSAndroid Build Coastguard Worker method public void setStatusBarScrim(android.graphics.drawable.Drawable); 590*344a7f5eSAndroid Build Coastguard Worker method public void setStatusBarScrimColor(int); 591*344a7f5eSAndroid Build Coastguard Worker method public void setStatusBarScrimResource(int); 592*344a7f5eSAndroid Build Coastguard Worker method public void setTitle(java.lang.CharSequence); 593*344a7f5eSAndroid Build Coastguard Worker method public void setTitleEnabled(boolean); 594*344a7f5eSAndroid Build Coastguard Worker } 595*344a7f5eSAndroid Build Coastguard Worker 596*344a7f5eSAndroid Build Coastguard Worker public static class CollapsingToolbarLayout.LayoutParams extends android.widget.FrameLayout.LayoutParams { 597*344a7f5eSAndroid Build Coastguard Worker ctor public CollapsingToolbarLayout.LayoutParams(android.content.Context, android.util.AttributeSet); 598*344a7f5eSAndroid Build Coastguard Worker ctor public CollapsingToolbarLayout.LayoutParams(int, int); 599*344a7f5eSAndroid Build Coastguard Worker ctor public CollapsingToolbarLayout.LayoutParams(int, int, int); 600*344a7f5eSAndroid Build Coastguard Worker ctor public CollapsingToolbarLayout.LayoutParams(android.view.ViewGroup.LayoutParams); 601*344a7f5eSAndroid Build Coastguard Worker ctor public CollapsingToolbarLayout.LayoutParams(android.view.ViewGroup.MarginLayoutParams); 602*344a7f5eSAndroid Build Coastguard Worker ctor public CollapsingToolbarLayout.LayoutParams(android.widget.FrameLayout.LayoutParams); 603*344a7f5eSAndroid Build Coastguard Worker method public int getCollapseMode(); 604*344a7f5eSAndroid Build Coastguard Worker method public float getParallaxMultiplier(); 605*344a7f5eSAndroid Build Coastguard Worker method public void setCollapseMode(int); 606*344a7f5eSAndroid Build Coastguard Worker method public void setParallaxMultiplier(float); 607*344a7f5eSAndroid Build Coastguard Worker field public static final int COLLAPSE_MODE_OFF = 0; // 0x0 608*344a7f5eSAndroid Build Coastguard Worker field public static final int COLLAPSE_MODE_PARALLAX = 2; // 0x2 609*344a7f5eSAndroid Build Coastguard Worker field public static final int COLLAPSE_MODE_PIN = 1; // 0x1 610*344a7f5eSAndroid Build Coastguard Worker } 611*344a7f5eSAndroid Build Coastguard Worker 612*344a7f5eSAndroid Build Coastguard Worker public class CoordinatorLayout extends android.view.ViewGroup implements android.support.v4.view.NestedScrollingParent2 { 613*344a7f5eSAndroid Build Coastguard Worker ctor public CoordinatorLayout(android.content.Context); 614*344a7f5eSAndroid Build Coastguard Worker ctor public CoordinatorLayout(android.content.Context, android.util.AttributeSet); 615*344a7f5eSAndroid Build Coastguard Worker ctor public CoordinatorLayout(android.content.Context, android.util.AttributeSet, int); 616*344a7f5eSAndroid Build Coastguard Worker method public void dispatchDependentViewsChanged(android.view.View); 617*344a7f5eSAndroid Build Coastguard Worker method public boolean doViewsOverlap(android.view.View, android.view.View); 618*344a7f5eSAndroid Build Coastguard Worker method public java.util.List<android.view.View> getDependencies(android.view.View); 619*344a7f5eSAndroid Build Coastguard Worker method public java.util.List<android.view.View> getDependents(android.view.View); 620*344a7f5eSAndroid Build Coastguard Worker method public android.graphics.drawable.Drawable getStatusBarBackground(); 621*344a7f5eSAndroid Build Coastguard Worker method public boolean isPointInChildBounds(android.view.View, int, int); 622*344a7f5eSAndroid Build Coastguard Worker method public void onAttachedToWindow(); 623*344a7f5eSAndroid Build Coastguard Worker method public void onDetachedFromWindow(); 624*344a7f5eSAndroid Build Coastguard Worker method public void onDraw(android.graphics.Canvas); 625*344a7f5eSAndroid Build Coastguard Worker method protected void onLayout(boolean, int, int, int, int); 626*344a7f5eSAndroid Build Coastguard Worker method public void onLayoutChild(android.view.View, int); 627*344a7f5eSAndroid Build Coastguard Worker method public void onMeasureChild(android.view.View, int, int, int, int); 628*344a7f5eSAndroid Build Coastguard Worker method public void onNestedPreScroll(android.view.View, int, int, int[], int); 629*344a7f5eSAndroid Build Coastguard Worker method public void onNestedScroll(android.view.View, int, int, int, int, int); 630*344a7f5eSAndroid Build Coastguard Worker method public void onNestedScrollAccepted(android.view.View, android.view.View, int, int); 631*344a7f5eSAndroid Build Coastguard Worker method public boolean onStartNestedScroll(android.view.View, android.view.View, int, int); 632*344a7f5eSAndroid Build Coastguard Worker method public void onStopNestedScroll(android.view.View, int); 633*344a7f5eSAndroid Build Coastguard Worker method public void setStatusBarBackground(android.graphics.drawable.Drawable); 634*344a7f5eSAndroid Build Coastguard Worker method public void setStatusBarBackgroundColor(int); 635*344a7f5eSAndroid Build Coastguard Worker method public void setStatusBarBackgroundResource(int); 636*344a7f5eSAndroid Build Coastguard Worker } 637*344a7f5eSAndroid Build Coastguard Worker 638*344a7f5eSAndroid Build Coastguard Worker public static abstract class CoordinatorLayout.Behavior<V extends android.view.View> { 639*344a7f5eSAndroid Build Coastguard Worker ctor public CoordinatorLayout.Behavior(); 640*344a7f5eSAndroid Build Coastguard Worker ctor public CoordinatorLayout.Behavior(android.content.Context, android.util.AttributeSet); 641*344a7f5eSAndroid Build Coastguard Worker method public boolean blocksInteractionBelow(android.support.design.widget.CoordinatorLayout, V); 642*344a7f5eSAndroid Build Coastguard Worker method public boolean getInsetDodgeRect(android.support.design.widget.CoordinatorLayout, V, android.graphics.Rect); 643*344a7f5eSAndroid Build Coastguard Worker method public int getScrimColor(android.support.design.widget.CoordinatorLayout, V); 644*344a7f5eSAndroid Build Coastguard Worker method public float getScrimOpacity(android.support.design.widget.CoordinatorLayout, V); 645*344a7f5eSAndroid Build Coastguard Worker method public static java.lang.Object getTag(android.view.View); 646*344a7f5eSAndroid Build Coastguard Worker method public boolean layoutDependsOn(android.support.design.widget.CoordinatorLayout, V, android.view.View); 647*344a7f5eSAndroid Build Coastguard Worker method public android.support.v4.view.WindowInsetsCompat onApplyWindowInsets(android.support.design.widget.CoordinatorLayout, V, android.support.v4.view.WindowInsetsCompat); 648*344a7f5eSAndroid Build Coastguard Worker method public void onAttachedToLayoutParams(android.support.design.widget.CoordinatorLayout.LayoutParams); 649*344a7f5eSAndroid Build Coastguard Worker method public boolean onDependentViewChanged(android.support.design.widget.CoordinatorLayout, V, android.view.View); 650*344a7f5eSAndroid Build Coastguard Worker method public void onDependentViewRemoved(android.support.design.widget.CoordinatorLayout, V, android.view.View); 651*344a7f5eSAndroid Build Coastguard Worker method public void onDetachedFromLayoutParams(); 652*344a7f5eSAndroid Build Coastguard Worker method public boolean onInterceptTouchEvent(android.support.design.widget.CoordinatorLayout, V, android.view.MotionEvent); 653*344a7f5eSAndroid Build Coastguard Worker method public boolean onLayoutChild(android.support.design.widget.CoordinatorLayout, V, int); 654*344a7f5eSAndroid Build Coastguard Worker method public boolean onMeasureChild(android.support.design.widget.CoordinatorLayout, V, int, int, int, int); 655*344a7f5eSAndroid Build Coastguard Worker method public boolean onNestedFling(android.support.design.widget.CoordinatorLayout, V, android.view.View, float, float, boolean); 656*344a7f5eSAndroid Build Coastguard Worker method public boolean onNestedPreFling(android.support.design.widget.CoordinatorLayout, V, android.view.View, float, float); 657*344a7f5eSAndroid Build Coastguard Worker method public deprecated void onNestedPreScroll(android.support.design.widget.CoordinatorLayout, V, android.view.View, int, int, int[]); 658*344a7f5eSAndroid Build Coastguard Worker method public void onNestedPreScroll(android.support.design.widget.CoordinatorLayout, V, android.view.View, int, int, int[], int); 659*344a7f5eSAndroid Build Coastguard Worker method public deprecated void onNestedScroll(android.support.design.widget.CoordinatorLayout, V, android.view.View, int, int, int, int); 660*344a7f5eSAndroid Build Coastguard Worker method public void onNestedScroll(android.support.design.widget.CoordinatorLayout, V, android.view.View, int, int, int, int, int); 661*344a7f5eSAndroid Build Coastguard Worker method public deprecated void onNestedScrollAccepted(android.support.design.widget.CoordinatorLayout, V, android.view.View, android.view.View, int); 662*344a7f5eSAndroid Build Coastguard Worker method public void onNestedScrollAccepted(android.support.design.widget.CoordinatorLayout, V, android.view.View, android.view.View, int, int); 663*344a7f5eSAndroid Build Coastguard Worker method public boolean onRequestChildRectangleOnScreen(android.support.design.widget.CoordinatorLayout, V, android.graphics.Rect, boolean); 664*344a7f5eSAndroid Build Coastguard Worker method public void onRestoreInstanceState(android.support.design.widget.CoordinatorLayout, V, android.os.Parcelable); 665*344a7f5eSAndroid Build Coastguard Worker method public android.os.Parcelable onSaveInstanceState(android.support.design.widget.CoordinatorLayout, V); 666*344a7f5eSAndroid Build Coastguard Worker method public deprecated boolean onStartNestedScroll(android.support.design.widget.CoordinatorLayout, V, android.view.View, android.view.View, int); 667*344a7f5eSAndroid Build Coastguard Worker method public boolean onStartNestedScroll(android.support.design.widget.CoordinatorLayout, V, android.view.View, android.view.View, int, int); 668*344a7f5eSAndroid Build Coastguard Worker method public deprecated void onStopNestedScroll(android.support.design.widget.CoordinatorLayout, V, android.view.View); 669*344a7f5eSAndroid Build Coastguard Worker method public void onStopNestedScroll(android.support.design.widget.CoordinatorLayout, V, android.view.View, int); 670*344a7f5eSAndroid Build Coastguard Worker method public boolean onTouchEvent(android.support.design.widget.CoordinatorLayout, V, android.view.MotionEvent); 671*344a7f5eSAndroid Build Coastguard Worker method public static void setTag(android.view.View, java.lang.Object); 672*344a7f5eSAndroid Build Coastguard Worker } 673*344a7f5eSAndroid Build Coastguard Worker 674*344a7f5eSAndroid Build Coastguard Worker public static abstract class CoordinatorLayout.DefaultBehavior implements java.lang.annotation.Annotation { 675*344a7f5eSAndroid Build Coastguard Worker } 676*344a7f5eSAndroid Build Coastguard Worker 677*344a7f5eSAndroid Build Coastguard Worker public static class CoordinatorLayout.LayoutParams extends android.view.ViewGroup.MarginLayoutParams { 678*344a7f5eSAndroid Build Coastguard Worker ctor public CoordinatorLayout.LayoutParams(int, int); 679*344a7f5eSAndroid Build Coastguard Worker ctor public CoordinatorLayout.LayoutParams(android.support.design.widget.CoordinatorLayout.LayoutParams); 680*344a7f5eSAndroid Build Coastguard Worker ctor public CoordinatorLayout.LayoutParams(android.view.ViewGroup.MarginLayoutParams); 681*344a7f5eSAndroid Build Coastguard Worker ctor public CoordinatorLayout.LayoutParams(android.view.ViewGroup.LayoutParams); 682*344a7f5eSAndroid Build Coastguard Worker method public int getAnchorId(); 683*344a7f5eSAndroid Build Coastguard Worker method public android.support.design.widget.CoordinatorLayout.Behavior getBehavior(); 684*344a7f5eSAndroid Build Coastguard Worker method public void setAnchorId(int); 685*344a7f5eSAndroid Build Coastguard Worker method public void setBehavior(android.support.design.widget.CoordinatorLayout.Behavior); 686*344a7f5eSAndroid Build Coastguard Worker field public int anchorGravity; 687*344a7f5eSAndroid Build Coastguard Worker field public int dodgeInsetEdges; 688*344a7f5eSAndroid Build Coastguard Worker field public int gravity; 689*344a7f5eSAndroid Build Coastguard Worker field public int insetEdge; 690*344a7f5eSAndroid Build Coastguard Worker field public int keyline; 691*344a7f5eSAndroid Build Coastguard Worker } 692*344a7f5eSAndroid Build Coastguard Worker 693*344a7f5eSAndroid Build Coastguard Worker protected static class CoordinatorLayout.SavedState extends android.support.v4.view.AbsSavedState { 694*344a7f5eSAndroid Build Coastguard Worker ctor public CoordinatorLayout.SavedState(android.os.Parcel, java.lang.ClassLoader); 695*344a7f5eSAndroid Build Coastguard Worker ctor public CoordinatorLayout.SavedState(android.os.Parcelable); 696*344a7f5eSAndroid Build Coastguard Worker field public static final android.os.Parcelable.Creator<android.support.design.widget.CoordinatorLayout.SavedState> CREATOR; 697*344a7f5eSAndroid Build Coastguard Worker } 698*344a7f5eSAndroid Build Coastguard Worker 699*344a7f5eSAndroid Build Coastguard Worker public class FloatingActionButton extends android.support.design.widget.VisibilityAwareImageButton { 700*344a7f5eSAndroid Build Coastguard Worker ctor public FloatingActionButton(android.content.Context); 701*344a7f5eSAndroid Build Coastguard Worker ctor public FloatingActionButton(android.content.Context, android.util.AttributeSet); 702*344a7f5eSAndroid Build Coastguard Worker ctor public FloatingActionButton(android.content.Context, android.util.AttributeSet, int); 703*344a7f5eSAndroid Build Coastguard Worker method public float getCompatElevation(); 704*344a7f5eSAndroid Build Coastguard Worker method public android.graphics.drawable.Drawable getContentBackground(); 705*344a7f5eSAndroid Build Coastguard Worker method public boolean getContentRect(android.graphics.Rect); 706*344a7f5eSAndroid Build Coastguard Worker method public int getRippleColor(); 707*344a7f5eSAndroid Build Coastguard Worker method public int getSize(); 708*344a7f5eSAndroid Build Coastguard Worker method public boolean getUseCompatPadding(); 709*344a7f5eSAndroid Build Coastguard Worker method public void hide(); 710*344a7f5eSAndroid Build Coastguard Worker method public void hide(android.support.design.widget.FloatingActionButton.OnVisibilityChangedListener); 711*344a7f5eSAndroid Build Coastguard Worker method public void setCompatElevation(float); 712*344a7f5eSAndroid Build Coastguard Worker method public void setRippleColor(int); 713*344a7f5eSAndroid Build Coastguard Worker method public void setSize(int); 714*344a7f5eSAndroid Build Coastguard Worker method public void setUseCompatPadding(boolean); 715*344a7f5eSAndroid Build Coastguard Worker method public void show(); 716*344a7f5eSAndroid Build Coastguard Worker method public void show(android.support.design.widget.FloatingActionButton.OnVisibilityChangedListener); 717*344a7f5eSAndroid Build Coastguard Worker field public static final int SIZE_AUTO = -1; // 0xffffffff 718*344a7f5eSAndroid Build Coastguard Worker field public static final int SIZE_MINI = 1; // 0x1 719*344a7f5eSAndroid Build Coastguard Worker field public static final int SIZE_NORMAL = 0; // 0x0 720*344a7f5eSAndroid Build Coastguard Worker } 721*344a7f5eSAndroid Build Coastguard Worker 722*344a7f5eSAndroid Build Coastguard Worker public static class FloatingActionButton.Behavior extends android.support.design.widget.CoordinatorLayout.Behavior { 723*344a7f5eSAndroid Build Coastguard Worker ctor public FloatingActionButton.Behavior(); 724*344a7f5eSAndroid Build Coastguard Worker ctor public FloatingActionButton.Behavior(android.content.Context, android.util.AttributeSet); 725*344a7f5eSAndroid Build Coastguard Worker method public boolean getInsetDodgeRect(android.support.design.widget.CoordinatorLayout, android.support.design.widget.FloatingActionButton, android.graphics.Rect); 726*344a7f5eSAndroid Build Coastguard Worker method public boolean isAutoHideEnabled(); 727*344a7f5eSAndroid Build Coastguard Worker method public boolean onDependentViewChanged(android.support.design.widget.CoordinatorLayout, android.support.design.widget.FloatingActionButton, android.view.View); 728*344a7f5eSAndroid Build Coastguard Worker method public boolean onLayoutChild(android.support.design.widget.CoordinatorLayout, android.support.design.widget.FloatingActionButton, int); 729*344a7f5eSAndroid Build Coastguard Worker method public void setAutoHideEnabled(boolean); 730*344a7f5eSAndroid Build Coastguard Worker } 731*344a7f5eSAndroid Build Coastguard Worker 732*344a7f5eSAndroid Build Coastguard Worker public static abstract class FloatingActionButton.OnVisibilityChangedListener { 733*344a7f5eSAndroid Build Coastguard Worker ctor public FloatingActionButton.OnVisibilityChangedListener(); 734*344a7f5eSAndroid Build Coastguard Worker method public void onHidden(android.support.design.widget.FloatingActionButton); 735*344a7f5eSAndroid Build Coastguard Worker method public void onShown(android.support.design.widget.FloatingActionButton); 736*344a7f5eSAndroid Build Coastguard Worker } 737*344a7f5eSAndroid Build Coastguard Worker 738*344a7f5eSAndroid Build Coastguard Worker abstract class HeaderBehavior<V extends android.view.View> extends android.support.design.widget.ViewOffsetBehavior { 739*344a7f5eSAndroid Build Coastguard Worker ctor public HeaderBehavior(); 740*344a7f5eSAndroid Build Coastguard Worker ctor public HeaderBehavior(android.content.Context, android.util.AttributeSet); 741*344a7f5eSAndroid Build Coastguard Worker } 742*344a7f5eSAndroid Build Coastguard Worker 743*344a7f5eSAndroid Build Coastguard Worker abstract class HeaderScrollingViewBehavior extends android.support.design.widget.ViewOffsetBehavior { 744*344a7f5eSAndroid Build Coastguard Worker ctor public HeaderScrollingViewBehavior(); 745*344a7f5eSAndroid Build Coastguard Worker ctor public HeaderScrollingViewBehavior(android.content.Context, android.util.AttributeSet); 746*344a7f5eSAndroid Build Coastguard Worker method public final int getOverlayTop(); 747*344a7f5eSAndroid Build Coastguard Worker method protected void layoutChild(android.support.design.widget.CoordinatorLayout, android.view.View, int); 748*344a7f5eSAndroid Build Coastguard Worker method public boolean onMeasureChild(android.support.design.widget.CoordinatorLayout, android.view.View, int, int, int, int); 749*344a7f5eSAndroid Build Coastguard Worker method public final void setOverlayTop(int); 750*344a7f5eSAndroid Build Coastguard Worker } 751*344a7f5eSAndroid Build Coastguard Worker 752*344a7f5eSAndroid Build Coastguard Worker public class NavigationView extends android.widget.FrameLayout { 753*344a7f5eSAndroid Build Coastguard Worker ctor public NavigationView(android.content.Context); 754*344a7f5eSAndroid Build Coastguard Worker ctor public NavigationView(android.content.Context, android.util.AttributeSet); 755*344a7f5eSAndroid Build Coastguard Worker ctor public NavigationView(android.content.Context, android.util.AttributeSet, int); 756*344a7f5eSAndroid Build Coastguard Worker method public void addHeaderView(android.view.View); 757*344a7f5eSAndroid Build Coastguard Worker method public int getHeaderCount(); 758*344a7f5eSAndroid Build Coastguard Worker method public android.view.View getHeaderView(int); 759*344a7f5eSAndroid Build Coastguard Worker method public android.graphics.drawable.Drawable getItemBackground(); 760*344a7f5eSAndroid Build Coastguard Worker method public android.content.res.ColorStateList getItemIconTintList(); 761*344a7f5eSAndroid Build Coastguard Worker method public android.content.res.ColorStateList getItemTextColor(); 762*344a7f5eSAndroid Build Coastguard Worker method public android.view.Menu getMenu(); 763*344a7f5eSAndroid Build Coastguard Worker method public android.view.View inflateHeaderView(int); 764*344a7f5eSAndroid Build Coastguard Worker method public void inflateMenu(int); 765*344a7f5eSAndroid Build Coastguard Worker method public void removeHeaderView(android.view.View); 766*344a7f5eSAndroid Build Coastguard Worker method public void setCheckedItem(int); 767*344a7f5eSAndroid Build Coastguard Worker method public void setItemBackground(android.graphics.drawable.Drawable); 768*344a7f5eSAndroid Build Coastguard Worker method public void setItemBackgroundResource(int); 769*344a7f5eSAndroid Build Coastguard Worker method public void setItemIconTintList(android.content.res.ColorStateList); 770*344a7f5eSAndroid Build Coastguard Worker method public void setItemTextAppearance(int); 771*344a7f5eSAndroid Build Coastguard Worker method public void setItemTextColor(android.content.res.ColorStateList); 772*344a7f5eSAndroid Build Coastguard Worker method public void setNavigationItemSelectedListener(android.support.design.widget.NavigationView.OnNavigationItemSelectedListener); 773*344a7f5eSAndroid Build Coastguard Worker } 774*344a7f5eSAndroid Build Coastguard Worker 775*344a7f5eSAndroid Build Coastguard Worker public static abstract interface NavigationView.OnNavigationItemSelectedListener { 776*344a7f5eSAndroid Build Coastguard Worker method public abstract boolean onNavigationItemSelected(android.view.MenuItem); 777*344a7f5eSAndroid Build Coastguard Worker } 778*344a7f5eSAndroid Build Coastguard Worker 779*344a7f5eSAndroid Build Coastguard Worker public static class NavigationView.SavedState extends android.support.v4.view.AbsSavedState { 780*344a7f5eSAndroid Build Coastguard Worker ctor public NavigationView.SavedState(android.os.Parcel, java.lang.ClassLoader); 781*344a7f5eSAndroid Build Coastguard Worker ctor public NavigationView.SavedState(android.os.Parcelable); 782*344a7f5eSAndroid Build Coastguard Worker field public static final android.os.Parcelable.Creator<android.support.design.widget.NavigationView.SavedState> CREATOR; 783*344a7f5eSAndroid Build Coastguard Worker field public android.os.Bundle menuState; 784*344a7f5eSAndroid Build Coastguard Worker } 785*344a7f5eSAndroid Build Coastguard Worker 786*344a7f5eSAndroid Build Coastguard Worker public final class Snackbar extends android.support.design.widget.BaseTransientBottomBar { 787*344a7f5eSAndroid Build Coastguard Worker method public static android.support.design.widget.Snackbar make(android.view.View, java.lang.CharSequence, int); 788*344a7f5eSAndroid Build Coastguard Worker method public static android.support.design.widget.Snackbar make(android.view.View, int, int); 789*344a7f5eSAndroid Build Coastguard Worker method public android.support.design.widget.Snackbar setAction(int, android.view.View.OnClickListener); 790*344a7f5eSAndroid Build Coastguard Worker method public android.support.design.widget.Snackbar setAction(java.lang.CharSequence, android.view.View.OnClickListener); 791*344a7f5eSAndroid Build Coastguard Worker method public android.support.design.widget.Snackbar setActionTextColor(android.content.res.ColorStateList); 792*344a7f5eSAndroid Build Coastguard Worker method public android.support.design.widget.Snackbar setActionTextColor(int); 793*344a7f5eSAndroid Build Coastguard Worker method public deprecated android.support.design.widget.Snackbar setCallback(android.support.design.widget.Snackbar.Callback); 794*344a7f5eSAndroid Build Coastguard Worker method public android.support.design.widget.Snackbar setText(java.lang.CharSequence); 795*344a7f5eSAndroid Build Coastguard Worker method public android.support.design.widget.Snackbar setText(int); 796*344a7f5eSAndroid Build Coastguard Worker field public static final int LENGTH_INDEFINITE = -2; // 0xfffffffe 797*344a7f5eSAndroid Build Coastguard Worker field public static final int LENGTH_LONG = 0; // 0x0 798*344a7f5eSAndroid Build Coastguard Worker field public static final int LENGTH_SHORT = -1; // 0xffffffff 799*344a7f5eSAndroid Build Coastguard Worker } 800*344a7f5eSAndroid Build Coastguard Worker 801*344a7f5eSAndroid Build Coastguard Worker public static class Snackbar.Callback extends android.support.design.widget.BaseTransientBottomBar.BaseCallback { 802*344a7f5eSAndroid Build Coastguard Worker ctor public Snackbar.Callback(); 803*344a7f5eSAndroid Build Coastguard Worker method public void onDismissed(android.support.design.widget.Snackbar, int); 804*344a7f5eSAndroid Build Coastguard Worker method public void onShown(android.support.design.widget.Snackbar); 805*344a7f5eSAndroid Build Coastguard Worker field public static final int DISMISS_EVENT_ACTION = 1; // 0x1 806*344a7f5eSAndroid Build Coastguard Worker field public static final int DISMISS_EVENT_CONSECUTIVE = 4; // 0x4 807*344a7f5eSAndroid Build Coastguard Worker field public static final int DISMISS_EVENT_MANUAL = 3; // 0x3 808*344a7f5eSAndroid Build Coastguard Worker field public static final int DISMISS_EVENT_SWIPE = 0; // 0x0 809*344a7f5eSAndroid Build Coastguard Worker field public static final int DISMISS_EVENT_TIMEOUT = 2; // 0x2 810*344a7f5eSAndroid Build Coastguard Worker } 811*344a7f5eSAndroid Build Coastguard Worker 812*344a7f5eSAndroid Build Coastguard Worker public class SwipeDismissBehavior<V extends android.view.View> extends android.support.design.widget.CoordinatorLayout.Behavior { 813*344a7f5eSAndroid Build Coastguard Worker ctor public SwipeDismissBehavior(); 814*344a7f5eSAndroid Build Coastguard Worker method public boolean canSwipeDismissView(android.view.View); 815*344a7f5eSAndroid Build Coastguard Worker method public int getDragState(); 816*344a7f5eSAndroid Build Coastguard Worker method public void setDragDismissDistance(float); 817*344a7f5eSAndroid Build Coastguard Worker method public void setEndAlphaSwipeDistance(float); 818*344a7f5eSAndroid Build Coastguard Worker method public void setListener(android.support.design.widget.SwipeDismissBehavior.OnDismissListener); 819*344a7f5eSAndroid Build Coastguard Worker method public void setSensitivity(float); 820*344a7f5eSAndroid Build Coastguard Worker method public void setStartAlphaSwipeDistance(float); 821*344a7f5eSAndroid Build Coastguard Worker method public void setSwipeDirection(int); 822*344a7f5eSAndroid Build Coastguard Worker field public static final int STATE_DRAGGING = 1; // 0x1 823*344a7f5eSAndroid Build Coastguard Worker field public static final int STATE_IDLE = 0; // 0x0 824*344a7f5eSAndroid Build Coastguard Worker field public static final int STATE_SETTLING = 2; // 0x2 825*344a7f5eSAndroid Build Coastguard Worker field public static final int SWIPE_DIRECTION_ANY = 2; // 0x2 826*344a7f5eSAndroid Build Coastguard Worker field public static final int SWIPE_DIRECTION_END_TO_START = 1; // 0x1 827*344a7f5eSAndroid Build Coastguard Worker field public static final int SWIPE_DIRECTION_START_TO_END = 0; // 0x0 828*344a7f5eSAndroid Build Coastguard Worker } 829*344a7f5eSAndroid Build Coastguard Worker 830*344a7f5eSAndroid Build Coastguard Worker public static abstract interface SwipeDismissBehavior.OnDismissListener { 831*344a7f5eSAndroid Build Coastguard Worker method public abstract void onDismiss(android.view.View); 832*344a7f5eSAndroid Build Coastguard Worker method public abstract void onDragStateChanged(int); 833*344a7f5eSAndroid Build Coastguard Worker } 834*344a7f5eSAndroid Build Coastguard Worker 835*344a7f5eSAndroid Build Coastguard Worker public final class TabItem extends android.view.View { 836*344a7f5eSAndroid Build Coastguard Worker ctor public TabItem(android.content.Context); 837*344a7f5eSAndroid Build Coastguard Worker ctor public TabItem(android.content.Context, android.util.AttributeSet); 838*344a7f5eSAndroid Build Coastguard Worker } 839*344a7f5eSAndroid Build Coastguard Worker 840*344a7f5eSAndroid Build Coastguard Worker public class TabLayout extends android.widget.HorizontalScrollView { 841*344a7f5eSAndroid Build Coastguard Worker ctor public TabLayout(android.content.Context); 842*344a7f5eSAndroid Build Coastguard Worker ctor public TabLayout(android.content.Context, android.util.AttributeSet); 843*344a7f5eSAndroid Build Coastguard Worker ctor public TabLayout(android.content.Context, android.util.AttributeSet, int); 844*344a7f5eSAndroid Build Coastguard Worker method public void addOnTabSelectedListener(android.support.design.widget.TabLayout.OnTabSelectedListener); 845*344a7f5eSAndroid Build Coastguard Worker method public void addTab(android.support.design.widget.TabLayout.Tab); 846*344a7f5eSAndroid Build Coastguard Worker method public void addTab(android.support.design.widget.TabLayout.Tab, int); 847*344a7f5eSAndroid Build Coastguard Worker method public void addTab(android.support.design.widget.TabLayout.Tab, boolean); 848*344a7f5eSAndroid Build Coastguard Worker method public void addTab(android.support.design.widget.TabLayout.Tab, int, boolean); 849*344a7f5eSAndroid Build Coastguard Worker method public void clearOnTabSelectedListeners(); 850*344a7f5eSAndroid Build Coastguard Worker method public int getSelectedTabPosition(); 851*344a7f5eSAndroid Build Coastguard Worker method public android.support.design.widget.TabLayout.Tab getTabAt(int); 852*344a7f5eSAndroid Build Coastguard Worker method public int getTabCount(); 853*344a7f5eSAndroid Build Coastguard Worker method public int getTabGravity(); 854*344a7f5eSAndroid Build Coastguard Worker method public int getTabMode(); 855*344a7f5eSAndroid Build Coastguard Worker method public android.content.res.ColorStateList getTabTextColors(); 856*344a7f5eSAndroid Build Coastguard Worker method public android.support.design.widget.TabLayout.Tab newTab(); 857*344a7f5eSAndroid Build Coastguard Worker method public void removeAllTabs(); 858*344a7f5eSAndroid Build Coastguard Worker method public void removeOnTabSelectedListener(android.support.design.widget.TabLayout.OnTabSelectedListener); 859*344a7f5eSAndroid Build Coastguard Worker method public void removeTab(android.support.design.widget.TabLayout.Tab); 860*344a7f5eSAndroid Build Coastguard Worker method public void removeTabAt(int); 861*344a7f5eSAndroid Build Coastguard Worker method public deprecated void setOnTabSelectedListener(android.support.design.widget.TabLayout.OnTabSelectedListener); 862*344a7f5eSAndroid Build Coastguard Worker method public void setScrollPosition(int, float, boolean); 863*344a7f5eSAndroid Build Coastguard Worker method public void setSelectedTabIndicatorColor(int); 864*344a7f5eSAndroid Build Coastguard Worker method public void setSelectedTabIndicatorHeight(int); 865*344a7f5eSAndroid Build Coastguard Worker method public void setTabGravity(int); 866*344a7f5eSAndroid Build Coastguard Worker method public void setTabMode(int); 867*344a7f5eSAndroid Build Coastguard Worker method public void setTabTextColors(android.content.res.ColorStateList); 868*344a7f5eSAndroid Build Coastguard Worker method public void setTabTextColors(int, int); 869*344a7f5eSAndroid Build Coastguard Worker method public deprecated void setTabsFromPagerAdapter(android.support.v4.view.PagerAdapter); 870*344a7f5eSAndroid Build Coastguard Worker method public void setupWithViewPager(android.support.v4.view.ViewPager); 871*344a7f5eSAndroid Build Coastguard Worker method public void setupWithViewPager(android.support.v4.view.ViewPager, boolean); 872*344a7f5eSAndroid Build Coastguard Worker field public static final int GRAVITY_CENTER = 1; // 0x1 873*344a7f5eSAndroid Build Coastguard Worker field public static final int GRAVITY_FILL = 0; // 0x0 874*344a7f5eSAndroid Build Coastguard Worker field public static final int MODE_FIXED = 1; // 0x1 875*344a7f5eSAndroid Build Coastguard Worker field public static final int MODE_SCROLLABLE = 0; // 0x0 876*344a7f5eSAndroid Build Coastguard Worker } 877*344a7f5eSAndroid Build Coastguard Worker 878*344a7f5eSAndroid Build Coastguard Worker public static abstract interface TabLayout.OnTabSelectedListener { 879*344a7f5eSAndroid Build Coastguard Worker method public abstract void onTabReselected(android.support.design.widget.TabLayout.Tab); 880*344a7f5eSAndroid Build Coastguard Worker method public abstract void onTabSelected(android.support.design.widget.TabLayout.Tab); 881*344a7f5eSAndroid Build Coastguard Worker method public abstract void onTabUnselected(android.support.design.widget.TabLayout.Tab); 882*344a7f5eSAndroid Build Coastguard Worker } 883*344a7f5eSAndroid Build Coastguard Worker 884*344a7f5eSAndroid Build Coastguard Worker public static final class TabLayout.Tab { 885*344a7f5eSAndroid Build Coastguard Worker method public java.lang.CharSequence getContentDescription(); 886*344a7f5eSAndroid Build Coastguard Worker method public android.view.View getCustomView(); 887*344a7f5eSAndroid Build Coastguard Worker method public android.graphics.drawable.Drawable getIcon(); 888*344a7f5eSAndroid Build Coastguard Worker method public int getPosition(); 889*344a7f5eSAndroid Build Coastguard Worker method public java.lang.Object getTag(); 890*344a7f5eSAndroid Build Coastguard Worker method public java.lang.CharSequence getText(); 891*344a7f5eSAndroid Build Coastguard Worker method public boolean isSelected(); 892*344a7f5eSAndroid Build Coastguard Worker method public void select(); 893*344a7f5eSAndroid Build Coastguard Worker method public android.support.design.widget.TabLayout.Tab setContentDescription(int); 894*344a7f5eSAndroid Build Coastguard Worker method public android.support.design.widget.TabLayout.Tab setContentDescription(java.lang.CharSequence); 895*344a7f5eSAndroid Build Coastguard Worker method public android.support.design.widget.TabLayout.Tab setCustomView(android.view.View); 896*344a7f5eSAndroid Build Coastguard Worker method public android.support.design.widget.TabLayout.Tab setCustomView(int); 897*344a7f5eSAndroid Build Coastguard Worker method public android.support.design.widget.TabLayout.Tab setIcon(android.graphics.drawable.Drawable); 898*344a7f5eSAndroid Build Coastguard Worker method public android.support.design.widget.TabLayout.Tab setIcon(int); 899*344a7f5eSAndroid Build Coastguard Worker method public android.support.design.widget.TabLayout.Tab setTag(java.lang.Object); 900*344a7f5eSAndroid Build Coastguard Worker method public android.support.design.widget.TabLayout.Tab setText(java.lang.CharSequence); 901*344a7f5eSAndroid Build Coastguard Worker method public android.support.design.widget.TabLayout.Tab setText(int); 902*344a7f5eSAndroid Build Coastguard Worker field public static final int INVALID_POSITION = -1; // 0xffffffff 903*344a7f5eSAndroid Build Coastguard Worker } 904*344a7f5eSAndroid Build Coastguard Worker 905*344a7f5eSAndroid Build Coastguard Worker public static class TabLayout.TabLayoutOnPageChangeListener implements android.support.v4.view.ViewPager.OnPageChangeListener { 906*344a7f5eSAndroid Build Coastguard Worker ctor public TabLayout.TabLayoutOnPageChangeListener(android.support.design.widget.TabLayout); 907*344a7f5eSAndroid Build Coastguard Worker method public void onPageScrollStateChanged(int); 908*344a7f5eSAndroid Build Coastguard Worker method public void onPageScrolled(int, float, int); 909*344a7f5eSAndroid Build Coastguard Worker method public void onPageSelected(int); 910*344a7f5eSAndroid Build Coastguard Worker } 911*344a7f5eSAndroid Build Coastguard Worker 912*344a7f5eSAndroid Build Coastguard Worker public static class TabLayout.ViewPagerOnTabSelectedListener implements android.support.design.widget.TabLayout.OnTabSelectedListener { 913*344a7f5eSAndroid Build Coastguard Worker ctor public TabLayout.ViewPagerOnTabSelectedListener(android.support.v4.view.ViewPager); 914*344a7f5eSAndroid Build Coastguard Worker method public void onTabReselected(android.support.design.widget.TabLayout.Tab); 915*344a7f5eSAndroid Build Coastguard Worker method public void onTabSelected(android.support.design.widget.TabLayout.Tab); 916*344a7f5eSAndroid Build Coastguard Worker method public void onTabUnselected(android.support.design.widget.TabLayout.Tab); 917*344a7f5eSAndroid Build Coastguard Worker } 918*344a7f5eSAndroid Build Coastguard Worker 919*344a7f5eSAndroid Build Coastguard Worker public class TextInputEditText extends android.support.v7.widget.AppCompatEditText { 920*344a7f5eSAndroid Build Coastguard Worker ctor public TextInputEditText(android.content.Context); 921*344a7f5eSAndroid Build Coastguard Worker ctor public TextInputEditText(android.content.Context, android.util.AttributeSet); 922*344a7f5eSAndroid Build Coastguard Worker ctor public TextInputEditText(android.content.Context, android.util.AttributeSet, int); 923*344a7f5eSAndroid Build Coastguard Worker } 924*344a7f5eSAndroid Build Coastguard Worker 925*344a7f5eSAndroid Build Coastguard Worker public class TextInputLayout extends android.widget.LinearLayout { 926*344a7f5eSAndroid Build Coastguard Worker ctor public TextInputLayout(android.content.Context); 927*344a7f5eSAndroid Build Coastguard Worker ctor public TextInputLayout(android.content.Context, android.util.AttributeSet); 928*344a7f5eSAndroid Build Coastguard Worker ctor public TextInputLayout(android.content.Context, android.util.AttributeSet, int); 929*344a7f5eSAndroid Build Coastguard Worker method public int getCounterMaxLength(); 930*344a7f5eSAndroid Build Coastguard Worker method public android.widget.EditText getEditText(); 931*344a7f5eSAndroid Build Coastguard Worker method public java.lang.CharSequence getError(); 932*344a7f5eSAndroid Build Coastguard Worker method public java.lang.CharSequence getHint(); 933*344a7f5eSAndroid Build Coastguard Worker method public java.lang.CharSequence getPasswordVisibilityToggleContentDescription(); 934*344a7f5eSAndroid Build Coastguard Worker method public android.graphics.drawable.Drawable getPasswordVisibilityToggleDrawable(); 935*344a7f5eSAndroid Build Coastguard Worker method public android.graphics.Typeface getTypeface(); 936*344a7f5eSAndroid Build Coastguard Worker method public boolean isCounterEnabled(); 937*344a7f5eSAndroid Build Coastguard Worker method public boolean isErrorEnabled(); 938*344a7f5eSAndroid Build Coastguard Worker method public boolean isHintAnimationEnabled(); 939*344a7f5eSAndroid Build Coastguard Worker method public boolean isHintEnabled(); 940*344a7f5eSAndroid Build Coastguard Worker method public boolean isPasswordVisibilityToggleEnabled(); 941*344a7f5eSAndroid Build Coastguard Worker method public android.os.Parcelable onSaveInstanceState(); 942*344a7f5eSAndroid Build Coastguard Worker method public void setCounterEnabled(boolean); 943*344a7f5eSAndroid Build Coastguard Worker method public void setCounterMaxLength(int); 944*344a7f5eSAndroid Build Coastguard Worker method public void setError(java.lang.CharSequence); 945*344a7f5eSAndroid Build Coastguard Worker method public void setErrorEnabled(boolean); 946*344a7f5eSAndroid Build Coastguard Worker method public void setErrorTextAppearance(int); 947*344a7f5eSAndroid Build Coastguard Worker method public void setHint(java.lang.CharSequence); 948*344a7f5eSAndroid Build Coastguard Worker method public void setHintAnimationEnabled(boolean); 949*344a7f5eSAndroid Build Coastguard Worker method public void setHintEnabled(boolean); 950*344a7f5eSAndroid Build Coastguard Worker method public void setHintTextAppearance(int); 951*344a7f5eSAndroid Build Coastguard Worker method public void setPasswordVisibilityToggleContentDescription(int); 952*344a7f5eSAndroid Build Coastguard Worker method public void setPasswordVisibilityToggleContentDescription(java.lang.CharSequence); 953*344a7f5eSAndroid Build Coastguard Worker method public void setPasswordVisibilityToggleDrawable(int); 954*344a7f5eSAndroid Build Coastguard Worker method public void setPasswordVisibilityToggleDrawable(android.graphics.drawable.Drawable); 955*344a7f5eSAndroid Build Coastguard Worker method public void setPasswordVisibilityToggleEnabled(boolean); 956*344a7f5eSAndroid Build Coastguard Worker method public void setPasswordVisibilityToggleTintList(android.content.res.ColorStateList); 957*344a7f5eSAndroid Build Coastguard Worker method public void setPasswordVisibilityToggleTintMode(android.graphics.PorterDuff.Mode); 958*344a7f5eSAndroid Build Coastguard Worker method public void setTypeface(android.graphics.Typeface); 959*344a7f5eSAndroid Build Coastguard Worker } 960*344a7f5eSAndroid Build Coastguard Worker 961*344a7f5eSAndroid Build Coastguard Worker class ViewOffsetBehavior<V extends android.view.View> extends android.support.design.widget.CoordinatorLayout.Behavior { 962*344a7f5eSAndroid Build Coastguard Worker ctor public ViewOffsetBehavior(); 963*344a7f5eSAndroid Build Coastguard Worker ctor public ViewOffsetBehavior(android.content.Context, android.util.AttributeSet); 964*344a7f5eSAndroid Build Coastguard Worker method public int getLeftAndRightOffset(); 965*344a7f5eSAndroid Build Coastguard Worker method public int getTopAndBottomOffset(); 966*344a7f5eSAndroid Build Coastguard Worker method protected void layoutChild(android.support.design.widget.CoordinatorLayout, V, int); 967*344a7f5eSAndroid Build Coastguard Worker method public boolean setLeftAndRightOffset(int); 968*344a7f5eSAndroid Build Coastguard Worker method public boolean setTopAndBottomOffset(int); 969*344a7f5eSAndroid Build Coastguard Worker } 970*344a7f5eSAndroid Build Coastguard Worker 971*344a7f5eSAndroid Build Coastguard Worker class VisibilityAwareImageButton extends android.widget.ImageButton { 972*344a7f5eSAndroid Build Coastguard Worker ctor public VisibilityAwareImageButton(android.content.Context); 973*344a7f5eSAndroid Build Coastguard Worker ctor public VisibilityAwareImageButton(android.content.Context, android.util.AttributeSet); 974*344a7f5eSAndroid Build Coastguard Worker ctor public VisibilityAwareImageButton(android.content.Context, android.util.AttributeSet, int); 975*344a7f5eSAndroid Build Coastguard Worker } 976*344a7f5eSAndroid Build Coastguard Worker 977*344a7f5eSAndroid Build Coastguard Worker} 978*344a7f5eSAndroid Build Coastguard Worker 979*344a7f5eSAndroid Build Coastguard Workerpackage android.support.graphics.drawable { 980*344a7f5eSAndroid Build Coastguard Worker 981*344a7f5eSAndroid Build Coastguard Worker public abstract interface Animatable2Compat { 982*344a7f5eSAndroid Build Coastguard Worker method public abstract void clearAnimationCallbacks(); 983*344a7f5eSAndroid Build Coastguard Worker method public abstract void registerAnimationCallback(android.support.graphics.drawable.Animatable2Compat.AnimationCallback); 984*344a7f5eSAndroid Build Coastguard Worker method public abstract boolean unregisterAnimationCallback(android.support.graphics.drawable.Animatable2Compat.AnimationCallback); 985*344a7f5eSAndroid Build Coastguard Worker } 986*344a7f5eSAndroid Build Coastguard Worker 987*344a7f5eSAndroid Build Coastguard Worker public static abstract class Animatable2Compat.AnimationCallback { 988*344a7f5eSAndroid Build Coastguard Worker ctor public Animatable2Compat.AnimationCallback(); 989*344a7f5eSAndroid Build Coastguard Worker method public void onAnimationEnd(android.graphics.drawable.Drawable); 990*344a7f5eSAndroid Build Coastguard Worker method public void onAnimationStart(android.graphics.drawable.Drawable); 991*344a7f5eSAndroid Build Coastguard Worker } 992*344a7f5eSAndroid Build Coastguard Worker 993*344a7f5eSAndroid Build Coastguard Worker public class AnimatedVectorDrawableCompat extends android.support.graphics.drawable.VectorDrawableCommon implements android.support.graphics.drawable.Animatable2Compat { 994*344a7f5eSAndroid Build Coastguard Worker method public void clearAnimationCallbacks(); 995*344a7f5eSAndroid Build Coastguard Worker method public static void clearAnimationCallbacks(android.graphics.drawable.Drawable); 996*344a7f5eSAndroid Build Coastguard Worker method public static android.support.graphics.drawable.AnimatedVectorDrawableCompat create(android.content.Context, int); 997*344a7f5eSAndroid Build Coastguard Worker method public static android.support.graphics.drawable.AnimatedVectorDrawableCompat createFromXmlInner(android.content.Context, android.content.res.Resources, org.xmlpull.v1.XmlPullParser, android.util.AttributeSet, android.content.res.Resources.Theme) throws java.io.IOException, org.xmlpull.v1.XmlPullParserException; 998*344a7f5eSAndroid Build Coastguard Worker method public void draw(android.graphics.Canvas); 999*344a7f5eSAndroid Build Coastguard Worker method public int getOpacity(); 1000*344a7f5eSAndroid Build Coastguard Worker method public boolean isRunning(); 1001*344a7f5eSAndroid Build Coastguard Worker method public void registerAnimationCallback(android.support.graphics.drawable.Animatable2Compat.AnimationCallback); 1002*344a7f5eSAndroid Build Coastguard Worker method public static void registerAnimationCallback(android.graphics.drawable.Drawable, android.support.graphics.drawable.Animatable2Compat.AnimationCallback); 1003*344a7f5eSAndroid Build Coastguard Worker method public void setAlpha(int); 1004*344a7f5eSAndroid Build Coastguard Worker method public void setColorFilter(android.graphics.ColorFilter); 1005*344a7f5eSAndroid Build Coastguard Worker method public void start(); 1006*344a7f5eSAndroid Build Coastguard Worker method public void stop(); 1007*344a7f5eSAndroid Build Coastguard Worker method public boolean unregisterAnimationCallback(android.support.graphics.drawable.Animatable2Compat.AnimationCallback); 1008*344a7f5eSAndroid Build Coastguard Worker method public static boolean unregisterAnimationCallback(android.graphics.drawable.Drawable, android.support.graphics.drawable.Animatable2Compat.AnimationCallback); 1009*344a7f5eSAndroid Build Coastguard Worker } 1010*344a7f5eSAndroid Build Coastguard Worker 1011*344a7f5eSAndroid Build Coastguard Worker abstract class VectorDrawableCommon extends android.graphics.drawable.Drawable { 1012*344a7f5eSAndroid Build Coastguard Worker } 1013*344a7f5eSAndroid Build Coastguard Worker 1014*344a7f5eSAndroid Build Coastguard Worker public class VectorDrawableCompat extends android.support.graphics.drawable.VectorDrawableCommon { 1015*344a7f5eSAndroid Build Coastguard Worker method public static android.support.graphics.drawable.VectorDrawableCompat create(android.content.res.Resources, int, android.content.res.Resources.Theme); 1016*344a7f5eSAndroid Build Coastguard Worker method public static android.support.graphics.drawable.VectorDrawableCompat createFromXmlInner(android.content.res.Resources, org.xmlpull.v1.XmlPullParser, android.util.AttributeSet, android.content.res.Resources.Theme) throws java.io.IOException, org.xmlpull.v1.XmlPullParserException; 1017*344a7f5eSAndroid Build Coastguard Worker method public void draw(android.graphics.Canvas); 1018*344a7f5eSAndroid Build Coastguard Worker method public int getOpacity(); 1019*344a7f5eSAndroid Build Coastguard Worker method public void setAlpha(int); 1020*344a7f5eSAndroid Build Coastguard Worker method public void setColorFilter(android.graphics.ColorFilter); 1021*344a7f5eSAndroid Build Coastguard Worker } 1022*344a7f5eSAndroid Build Coastguard Worker 1023*344a7f5eSAndroid Build Coastguard Worker} 1024*344a7f5eSAndroid Build Coastguard Worker 1025*344a7f5eSAndroid Build Coastguard Workerpackage android.support.media { 1026*344a7f5eSAndroid Build Coastguard Worker 1027*344a7f5eSAndroid Build Coastguard Worker public class ExifInterface { 1028*344a7f5eSAndroid Build Coastguard Worker ctor public ExifInterface(java.lang.String) throws java.io.IOException; 1029*344a7f5eSAndroid Build Coastguard Worker ctor public ExifInterface(java.io.InputStream) throws java.io.IOException; 1030*344a7f5eSAndroid Build Coastguard Worker method public double getAltitude(double); 1031*344a7f5eSAndroid Build Coastguard Worker method public java.lang.String getAttribute(java.lang.String); 1032*344a7f5eSAndroid Build Coastguard Worker method public double getAttributeDouble(java.lang.String, double); 1033*344a7f5eSAndroid Build Coastguard Worker method public int getAttributeInt(java.lang.String, int); 1034*344a7f5eSAndroid Build Coastguard Worker method public deprecated boolean getLatLong(float[]); 1035*344a7f5eSAndroid Build Coastguard Worker method public double[] getLatLong(); 1036*344a7f5eSAndroid Build Coastguard Worker method public byte[] getThumbnail(); 1037*344a7f5eSAndroid Build Coastguard Worker method public android.graphics.Bitmap getThumbnailBitmap(); 1038*344a7f5eSAndroid Build Coastguard Worker method public byte[] getThumbnailBytes(); 1039*344a7f5eSAndroid Build Coastguard Worker method public long[] getThumbnailRange(); 1040*344a7f5eSAndroid Build Coastguard Worker method public boolean hasThumbnail(); 1041*344a7f5eSAndroid Build Coastguard Worker method public boolean isThumbnailCompressed(); 1042*344a7f5eSAndroid Build Coastguard Worker method public void saveAttributes() throws java.io.IOException; 1043*344a7f5eSAndroid Build Coastguard Worker method public void setAttribute(java.lang.String, java.lang.String); 1044*344a7f5eSAndroid Build Coastguard Worker method public void setLatLong(double, double); 1045*344a7f5eSAndroid Build Coastguard Worker field public static final int ORIENTATION_FLIP_HORIZONTAL = 2; // 0x2 1046*344a7f5eSAndroid Build Coastguard Worker field public static final int ORIENTATION_FLIP_VERTICAL = 4; // 0x4 1047*344a7f5eSAndroid Build Coastguard Worker field public static final int ORIENTATION_NORMAL = 1; // 0x1 1048*344a7f5eSAndroid Build Coastguard Worker field public static final int ORIENTATION_ROTATE_180 = 3; // 0x3 1049*344a7f5eSAndroid Build Coastguard Worker field public static final int ORIENTATION_ROTATE_270 = 8; // 0x8 1050*344a7f5eSAndroid Build Coastguard Worker field public static final int ORIENTATION_ROTATE_90 = 6; // 0x6 1051*344a7f5eSAndroid Build Coastguard Worker field public static final int ORIENTATION_TRANSPOSE = 5; // 0x5 1052*344a7f5eSAndroid Build Coastguard Worker field public static final int ORIENTATION_TRANSVERSE = 7; // 0x7 1053*344a7f5eSAndroid Build Coastguard Worker field public static final int ORIENTATION_UNDEFINED = 0; // 0x0 1054*344a7f5eSAndroid Build Coastguard Worker field public static final java.lang.String TAG_APERTURE_VALUE = "ApertureValue"; 1055*344a7f5eSAndroid Build Coastguard Worker field public static final java.lang.String TAG_ARTIST = "Artist"; 1056*344a7f5eSAndroid Build Coastguard Worker field public static final java.lang.String TAG_BITS_PER_SAMPLE = "BitsPerSample"; 1057*344a7f5eSAndroid Build Coastguard Worker field public static final java.lang.String TAG_BRIGHTNESS_VALUE = "BrightnessValue"; 1058*344a7f5eSAndroid Build Coastguard Worker field public static final java.lang.String TAG_CFA_PATTERN = "CFAPattern"; 1059*344a7f5eSAndroid Build Coastguard Worker field public static final java.lang.String TAG_COLOR_SPACE = "ColorSpace"; 1060*344a7f5eSAndroid Build Coastguard Worker field public static final java.lang.String TAG_COMPONENTS_CONFIGURATION = "ComponentsConfiguration"; 1061*344a7f5eSAndroid Build Coastguard Worker field public static final java.lang.String TAG_COMPRESSED_BITS_PER_PIXEL = "CompressedBitsPerPixel"; 1062*344a7f5eSAndroid Build Coastguard Worker field public static final java.lang.String TAG_COMPRESSION = "Compression"; 1063*344a7f5eSAndroid Build Coastguard Worker field public static final java.lang.String TAG_CONTRAST = "Contrast"; 1064*344a7f5eSAndroid Build Coastguard Worker field public static final java.lang.String TAG_COPYRIGHT = "Copyright"; 1065*344a7f5eSAndroid Build Coastguard Worker field public static final java.lang.String TAG_CUSTOM_RENDERED = "CustomRendered"; 1066*344a7f5eSAndroid Build Coastguard Worker field public static final java.lang.String TAG_DATETIME = "DateTime"; 1067*344a7f5eSAndroid Build Coastguard Worker field public static final java.lang.String TAG_DATETIME_DIGITIZED = "DateTimeDigitized"; 1068*344a7f5eSAndroid Build Coastguard Worker field public static final java.lang.String TAG_DATETIME_ORIGINAL = "DateTimeOriginal"; 1069*344a7f5eSAndroid Build Coastguard Worker field public static final java.lang.String TAG_DEFAULT_CROP_SIZE = "DefaultCropSize"; 1070*344a7f5eSAndroid Build Coastguard Worker field public static final java.lang.String TAG_DEVICE_SETTING_DESCRIPTION = "DeviceSettingDescription"; 1071*344a7f5eSAndroid Build Coastguard Worker field public static final java.lang.String TAG_DIGITAL_ZOOM_RATIO = "DigitalZoomRatio"; 1072*344a7f5eSAndroid Build Coastguard Worker field public static final java.lang.String TAG_DNG_VERSION = "DNGVersion"; 1073*344a7f5eSAndroid Build Coastguard Worker field public static final java.lang.String TAG_EXIF_VERSION = "ExifVersion"; 1074*344a7f5eSAndroid Build Coastguard Worker field public static final java.lang.String TAG_EXPOSURE_BIAS_VALUE = "ExposureBiasValue"; 1075*344a7f5eSAndroid Build Coastguard Worker field public static final java.lang.String TAG_EXPOSURE_INDEX = "ExposureIndex"; 1076*344a7f5eSAndroid Build Coastguard Worker field public static final java.lang.String TAG_EXPOSURE_MODE = "ExposureMode"; 1077*344a7f5eSAndroid Build Coastguard Worker field public static final java.lang.String TAG_EXPOSURE_PROGRAM = "ExposureProgram"; 1078*344a7f5eSAndroid Build Coastguard Worker field public static final java.lang.String TAG_EXPOSURE_TIME = "ExposureTime"; 1079*344a7f5eSAndroid Build Coastguard Worker field public static final java.lang.String TAG_FILE_SOURCE = "FileSource"; 1080*344a7f5eSAndroid Build Coastguard Worker field public static final java.lang.String TAG_FLASH = "Flash"; 1081*344a7f5eSAndroid Build Coastguard Worker field public static final java.lang.String TAG_FLASHPIX_VERSION = "FlashpixVersion"; 1082*344a7f5eSAndroid Build Coastguard Worker field public static final java.lang.String TAG_FLASH_ENERGY = "FlashEnergy"; 1083*344a7f5eSAndroid Build Coastguard Worker field public static final java.lang.String TAG_FOCAL_LENGTH = "FocalLength"; 1084*344a7f5eSAndroid Build Coastguard Worker field public static final java.lang.String TAG_FOCAL_LENGTH_IN_35MM_FILM = "FocalLengthIn35mmFilm"; 1085*344a7f5eSAndroid Build Coastguard Worker field public static final java.lang.String TAG_FOCAL_PLANE_RESOLUTION_UNIT = "FocalPlaneResolutionUnit"; 1086*344a7f5eSAndroid Build Coastguard Worker field public static final java.lang.String TAG_FOCAL_PLANE_X_RESOLUTION = "FocalPlaneXResolution"; 1087*344a7f5eSAndroid Build Coastguard Worker field public static final java.lang.String TAG_FOCAL_PLANE_Y_RESOLUTION = "FocalPlaneYResolution"; 1088*344a7f5eSAndroid Build Coastguard Worker field public static final java.lang.String TAG_F_NUMBER = "FNumber"; 1089*344a7f5eSAndroid Build Coastguard Worker field public static final java.lang.String TAG_GAIN_CONTROL = "GainControl"; 1090*344a7f5eSAndroid Build Coastguard Worker field public static final java.lang.String TAG_GPS_ALTITUDE = "GPSAltitude"; 1091*344a7f5eSAndroid Build Coastguard Worker field public static final java.lang.String TAG_GPS_ALTITUDE_REF = "GPSAltitudeRef"; 1092*344a7f5eSAndroid Build Coastguard Worker field public static final java.lang.String TAG_GPS_AREA_INFORMATION = "GPSAreaInformation"; 1093*344a7f5eSAndroid Build Coastguard Worker field public static final java.lang.String TAG_GPS_DATESTAMP = "GPSDateStamp"; 1094*344a7f5eSAndroid Build Coastguard Worker field public static final java.lang.String TAG_GPS_DEST_BEARING = "GPSDestBearing"; 1095*344a7f5eSAndroid Build Coastguard Worker field public static final java.lang.String TAG_GPS_DEST_BEARING_REF = "GPSDestBearingRef"; 1096*344a7f5eSAndroid Build Coastguard Worker field public static final java.lang.String TAG_GPS_DEST_DISTANCE = "GPSDestDistance"; 1097*344a7f5eSAndroid Build Coastguard Worker field public static final java.lang.String TAG_GPS_DEST_DISTANCE_REF = "GPSDestDistanceRef"; 1098*344a7f5eSAndroid Build Coastguard Worker field public static final java.lang.String TAG_GPS_DEST_LATITUDE = "GPSDestLatitude"; 1099*344a7f5eSAndroid Build Coastguard Worker field public static final java.lang.String TAG_GPS_DEST_LATITUDE_REF = "GPSDestLatitudeRef"; 1100*344a7f5eSAndroid Build Coastguard Worker field public static final java.lang.String TAG_GPS_DEST_LONGITUDE = "GPSDestLongitude"; 1101*344a7f5eSAndroid Build Coastguard Worker field public static final java.lang.String TAG_GPS_DEST_LONGITUDE_REF = "GPSDestLongitudeRef"; 1102*344a7f5eSAndroid Build Coastguard Worker field public static final java.lang.String TAG_GPS_DIFFERENTIAL = "GPSDifferential"; 1103*344a7f5eSAndroid Build Coastguard Worker field public static final java.lang.String TAG_GPS_DOP = "GPSDOP"; 1104*344a7f5eSAndroid Build Coastguard Worker field public static final java.lang.String TAG_GPS_IMG_DIRECTION = "GPSImgDirection"; 1105*344a7f5eSAndroid Build Coastguard Worker field public static final java.lang.String TAG_GPS_IMG_DIRECTION_REF = "GPSImgDirectionRef"; 1106*344a7f5eSAndroid Build Coastguard Worker field public static final java.lang.String TAG_GPS_LATITUDE = "GPSLatitude"; 1107*344a7f5eSAndroid Build Coastguard Worker field public static final java.lang.String TAG_GPS_LATITUDE_REF = "GPSLatitudeRef"; 1108*344a7f5eSAndroid Build Coastguard Worker field public static final java.lang.String TAG_GPS_LONGITUDE = "GPSLongitude"; 1109*344a7f5eSAndroid Build Coastguard Worker field public static final java.lang.String TAG_GPS_LONGITUDE_REF = "GPSLongitudeRef"; 1110*344a7f5eSAndroid Build Coastguard Worker field public static final java.lang.String TAG_GPS_MAP_DATUM = "GPSMapDatum"; 1111*344a7f5eSAndroid Build Coastguard Worker field public static final java.lang.String TAG_GPS_MEASURE_MODE = "GPSMeasureMode"; 1112*344a7f5eSAndroid Build Coastguard Worker field public static final java.lang.String TAG_GPS_PROCESSING_METHOD = "GPSProcessingMethod"; 1113*344a7f5eSAndroid Build Coastguard Worker field public static final java.lang.String TAG_GPS_SATELLITES = "GPSSatellites"; 1114*344a7f5eSAndroid Build Coastguard Worker field public static final java.lang.String TAG_GPS_SPEED = "GPSSpeed"; 1115*344a7f5eSAndroid Build Coastguard Worker field public static final java.lang.String TAG_GPS_SPEED_REF = "GPSSpeedRef"; 1116*344a7f5eSAndroid Build Coastguard Worker field public static final java.lang.String TAG_GPS_STATUS = "GPSStatus"; 1117*344a7f5eSAndroid Build Coastguard Worker field public static final java.lang.String TAG_GPS_TIMESTAMP = "GPSTimeStamp"; 1118*344a7f5eSAndroid Build Coastguard Worker field public static final java.lang.String TAG_GPS_TRACK = "GPSTrack"; 1119*344a7f5eSAndroid Build Coastguard Worker field public static final java.lang.String TAG_GPS_TRACK_REF = "GPSTrackRef"; 1120*344a7f5eSAndroid Build Coastguard Worker field public static final java.lang.String TAG_GPS_VERSION_ID = "GPSVersionID"; 1121*344a7f5eSAndroid Build Coastguard Worker field public static final java.lang.String TAG_IMAGE_DESCRIPTION = "ImageDescription"; 1122*344a7f5eSAndroid Build Coastguard Worker field public static final java.lang.String TAG_IMAGE_LENGTH = "ImageLength"; 1123*344a7f5eSAndroid Build Coastguard Worker field public static final java.lang.String TAG_IMAGE_UNIQUE_ID = "ImageUniqueID"; 1124*344a7f5eSAndroid Build Coastguard Worker field public static final java.lang.String TAG_IMAGE_WIDTH = "ImageWidth"; 1125*344a7f5eSAndroid Build Coastguard Worker field public static final java.lang.String TAG_INTEROPERABILITY_INDEX = "InteroperabilityIndex"; 1126*344a7f5eSAndroid Build Coastguard Worker field public static final java.lang.String TAG_ISO_SPEED_RATINGS = "ISOSpeedRatings"; 1127*344a7f5eSAndroid Build Coastguard Worker field public static final java.lang.String TAG_JPEG_INTERCHANGE_FORMAT = "JPEGInterchangeFormat"; 1128*344a7f5eSAndroid Build Coastguard Worker field public static final java.lang.String TAG_JPEG_INTERCHANGE_FORMAT_LENGTH = "JPEGInterchangeFormatLength"; 1129*344a7f5eSAndroid Build Coastguard Worker field public static final java.lang.String TAG_LIGHT_SOURCE = "LightSource"; 1130*344a7f5eSAndroid Build Coastguard Worker field public static final java.lang.String TAG_MAKE = "Make"; 1131*344a7f5eSAndroid Build Coastguard Worker field public static final java.lang.String TAG_MAKER_NOTE = "MakerNote"; 1132*344a7f5eSAndroid Build Coastguard Worker field public static final java.lang.String TAG_MAX_APERTURE_VALUE = "MaxApertureValue"; 1133*344a7f5eSAndroid Build Coastguard Worker field public static final java.lang.String TAG_METERING_MODE = "MeteringMode"; 1134*344a7f5eSAndroid Build Coastguard Worker field public static final java.lang.String TAG_MODEL = "Model"; 1135*344a7f5eSAndroid Build Coastguard Worker field public static final java.lang.String TAG_NEW_SUBFILE_TYPE = "NewSubfileType"; 1136*344a7f5eSAndroid Build Coastguard Worker field public static final java.lang.String TAG_OECF = "OECF"; 1137*344a7f5eSAndroid Build Coastguard Worker field public static final java.lang.String TAG_ORF_ASPECT_FRAME = "AspectFrame"; 1138*344a7f5eSAndroid Build Coastguard Worker field public static final java.lang.String TAG_ORF_PREVIEW_IMAGE_LENGTH = "PreviewImageLength"; 1139*344a7f5eSAndroid Build Coastguard Worker field public static final java.lang.String TAG_ORF_PREVIEW_IMAGE_START = "PreviewImageStart"; 1140*344a7f5eSAndroid Build Coastguard Worker field public static final java.lang.String TAG_ORF_THUMBNAIL_IMAGE = "ThumbnailImage"; 1141*344a7f5eSAndroid Build Coastguard Worker field public static final java.lang.String TAG_ORIENTATION = "Orientation"; 1142*344a7f5eSAndroid Build Coastguard Worker field public static final java.lang.String TAG_PHOTOMETRIC_INTERPRETATION = "PhotometricInterpretation"; 1143*344a7f5eSAndroid Build Coastguard Worker field public static final java.lang.String TAG_PIXEL_X_DIMENSION = "PixelXDimension"; 1144*344a7f5eSAndroid Build Coastguard Worker field public static final java.lang.String TAG_PIXEL_Y_DIMENSION = "PixelYDimension"; 1145*344a7f5eSAndroid Build Coastguard Worker field public static final java.lang.String TAG_PLANAR_CONFIGURATION = "PlanarConfiguration"; 1146*344a7f5eSAndroid Build Coastguard Worker field public static final java.lang.String TAG_PRIMARY_CHROMATICITIES = "PrimaryChromaticities"; 1147*344a7f5eSAndroid Build Coastguard Worker field public static final java.lang.String TAG_REFERENCE_BLACK_WHITE = "ReferenceBlackWhite"; 1148*344a7f5eSAndroid Build Coastguard Worker field public static final java.lang.String TAG_RELATED_SOUND_FILE = "RelatedSoundFile"; 1149*344a7f5eSAndroid Build Coastguard Worker field public static final java.lang.String TAG_RESOLUTION_UNIT = "ResolutionUnit"; 1150*344a7f5eSAndroid Build Coastguard Worker field public static final java.lang.String TAG_ROWS_PER_STRIP = "RowsPerStrip"; 1151*344a7f5eSAndroid Build Coastguard Worker field public static final java.lang.String TAG_RW2_ISO = "ISO"; 1152*344a7f5eSAndroid Build Coastguard Worker field public static final java.lang.String TAG_RW2_JPG_FROM_RAW = "JpgFromRaw"; 1153*344a7f5eSAndroid Build Coastguard Worker field public static final java.lang.String TAG_RW2_SENSOR_BOTTOM_BORDER = "SensorBottomBorder"; 1154*344a7f5eSAndroid Build Coastguard Worker field public static final java.lang.String TAG_RW2_SENSOR_LEFT_BORDER = "SensorLeftBorder"; 1155*344a7f5eSAndroid Build Coastguard Worker field public static final java.lang.String TAG_RW2_SENSOR_RIGHT_BORDER = "SensorRightBorder"; 1156*344a7f5eSAndroid Build Coastguard Worker field public static final java.lang.String TAG_RW2_SENSOR_TOP_BORDER = "SensorTopBorder"; 1157*344a7f5eSAndroid Build Coastguard Worker field public static final java.lang.String TAG_SAMPLES_PER_PIXEL = "SamplesPerPixel"; 1158*344a7f5eSAndroid Build Coastguard Worker field public static final java.lang.String TAG_SATURATION = "Saturation"; 1159*344a7f5eSAndroid Build Coastguard Worker field public static final java.lang.String TAG_SCENE_CAPTURE_TYPE = "SceneCaptureType"; 1160*344a7f5eSAndroid Build Coastguard Worker field public static final java.lang.String TAG_SCENE_TYPE = "SceneType"; 1161*344a7f5eSAndroid Build Coastguard Worker field public static final java.lang.String TAG_SENSING_METHOD = "SensingMethod"; 1162*344a7f5eSAndroid Build Coastguard Worker field public static final java.lang.String TAG_SHARPNESS = "Sharpness"; 1163*344a7f5eSAndroid Build Coastguard Worker field public static final java.lang.String TAG_SHUTTER_SPEED_VALUE = "ShutterSpeedValue"; 1164*344a7f5eSAndroid Build Coastguard Worker field public static final java.lang.String TAG_SOFTWARE = "Software"; 1165*344a7f5eSAndroid Build Coastguard Worker field public static final java.lang.String TAG_SPATIAL_FREQUENCY_RESPONSE = "SpatialFrequencyResponse"; 1166*344a7f5eSAndroid Build Coastguard Worker field public static final java.lang.String TAG_SPECTRAL_SENSITIVITY = "SpectralSensitivity"; 1167*344a7f5eSAndroid Build Coastguard Worker field public static final java.lang.String TAG_STRIP_BYTE_COUNTS = "StripByteCounts"; 1168*344a7f5eSAndroid Build Coastguard Worker field public static final java.lang.String TAG_STRIP_OFFSETS = "StripOffsets"; 1169*344a7f5eSAndroid Build Coastguard Worker field public static final java.lang.String TAG_SUBFILE_TYPE = "SubfileType"; 1170*344a7f5eSAndroid Build Coastguard Worker field public static final java.lang.String TAG_SUBJECT_AREA = "SubjectArea"; 1171*344a7f5eSAndroid Build Coastguard Worker field public static final java.lang.String TAG_SUBJECT_DISTANCE = "SubjectDistance"; 1172*344a7f5eSAndroid Build Coastguard Worker field public static final java.lang.String TAG_SUBJECT_DISTANCE_RANGE = "SubjectDistanceRange"; 1173*344a7f5eSAndroid Build Coastguard Worker field public static final java.lang.String TAG_SUBJECT_LOCATION = "SubjectLocation"; 1174*344a7f5eSAndroid Build Coastguard Worker field public static final java.lang.String TAG_SUBSEC_TIME = "SubSecTime"; 1175*344a7f5eSAndroid Build Coastguard Worker field public static final java.lang.String TAG_SUBSEC_TIME_DIGITIZED = "SubSecTimeDigitized"; 1176*344a7f5eSAndroid Build Coastguard Worker field public static final java.lang.String TAG_SUBSEC_TIME_ORIGINAL = "SubSecTimeOriginal"; 1177*344a7f5eSAndroid Build Coastguard Worker field public static final java.lang.String TAG_THUMBNAIL_IMAGE_LENGTH = "ThumbnailImageLength"; 1178*344a7f5eSAndroid Build Coastguard Worker field public static final java.lang.String TAG_THUMBNAIL_IMAGE_WIDTH = "ThumbnailImageWidth"; 1179*344a7f5eSAndroid Build Coastguard Worker field public static final java.lang.String TAG_TRANSFER_FUNCTION = "TransferFunction"; 1180*344a7f5eSAndroid Build Coastguard Worker field public static final java.lang.String TAG_USER_COMMENT = "UserComment"; 1181*344a7f5eSAndroid Build Coastguard Worker field public static final java.lang.String TAG_WHITE_BALANCE = "WhiteBalance"; 1182*344a7f5eSAndroid Build Coastguard Worker field public static final java.lang.String TAG_WHITE_POINT = "WhitePoint"; 1183*344a7f5eSAndroid Build Coastguard Worker field public static final java.lang.String TAG_X_RESOLUTION = "XResolution"; 1184*344a7f5eSAndroid Build Coastguard Worker field public static final java.lang.String TAG_Y_CB_CR_COEFFICIENTS = "YCbCrCoefficients"; 1185*344a7f5eSAndroid Build Coastguard Worker field public static final java.lang.String TAG_Y_CB_CR_POSITIONING = "YCbCrPositioning"; 1186*344a7f5eSAndroid Build Coastguard Worker field public static final java.lang.String TAG_Y_CB_CR_SUB_SAMPLING = "YCbCrSubSampling"; 1187*344a7f5eSAndroid Build Coastguard Worker field public static final java.lang.String TAG_Y_RESOLUTION = "YResolution"; 1188*344a7f5eSAndroid Build Coastguard Worker field public static final int WHITEBALANCE_AUTO = 0; // 0x0 1189*344a7f5eSAndroid Build Coastguard Worker field public static final int WHITEBALANCE_MANUAL = 1; // 0x1 1190*344a7f5eSAndroid Build Coastguard Worker } 1191*344a7f5eSAndroid Build Coastguard Worker 1192*344a7f5eSAndroid Build Coastguard Worker} 1193*344a7f5eSAndroid Build Coastguard Worker 1194*344a7f5eSAndroid Build Coastguard Workerpackage android.support.media.tv { 1195*344a7f5eSAndroid Build Coastguard Worker 1196*344a7f5eSAndroid Build Coastguard Worker public abstract class BasePreviewProgram extends android.support.media.tv.BaseProgram { 1197*344a7f5eSAndroid Build Coastguard Worker method public java.lang.String getAuthor(); 1198*344a7f5eSAndroid Build Coastguard Worker method public int getAvailability(); 1199*344a7f5eSAndroid Build Coastguard Worker method public java.lang.String getContentId(); 1200*344a7f5eSAndroid Build Coastguard Worker method public int getDurationMillis(); 1201*344a7f5eSAndroid Build Coastguard Worker method public android.content.Intent getIntent() throws java.net.URISyntaxException; 1202*344a7f5eSAndroid Build Coastguard Worker method public android.net.Uri getIntentUri(); 1203*344a7f5eSAndroid Build Coastguard Worker method public long getInteractionCount(); 1204*344a7f5eSAndroid Build Coastguard Worker method public int getInteractionType(); 1205*344a7f5eSAndroid Build Coastguard Worker method public java.lang.String getInternalProviderId(); 1206*344a7f5eSAndroid Build Coastguard Worker method public int getItemCount(); 1207*344a7f5eSAndroid Build Coastguard Worker method public int getLastPlaybackPositionMillis(); 1208*344a7f5eSAndroid Build Coastguard Worker method public android.net.Uri getLogoUri(); 1209*344a7f5eSAndroid Build Coastguard Worker method public java.lang.String getOfferPrice(); 1210*344a7f5eSAndroid Build Coastguard Worker method public int getPosterArtAspectRatio(); 1211*344a7f5eSAndroid Build Coastguard Worker method public android.net.Uri getPreviewVideoUri(); 1212*344a7f5eSAndroid Build Coastguard Worker method public java.lang.String getReleaseDate(); 1213*344a7f5eSAndroid Build Coastguard Worker method public java.lang.String getStartingPrice(); 1214*344a7f5eSAndroid Build Coastguard Worker method public int getThumbnailAspectRatio(); 1215*344a7f5eSAndroid Build Coastguard Worker method public int getType(); 1216*344a7f5eSAndroid Build Coastguard Worker method public boolean isBrowsable(); 1217*344a7f5eSAndroid Build Coastguard Worker method public boolean isLive(); 1218*344a7f5eSAndroid Build Coastguard Worker method public boolean isTransient(); 1219*344a7f5eSAndroid Build Coastguard Worker } 1220*344a7f5eSAndroid Build Coastguard Worker 1221*344a7f5eSAndroid Build Coastguard Worker public static abstract class BasePreviewProgram.Builder<T extends android.support.media.tv.BasePreviewProgram.Builder> extends android.support.media.tv.BaseProgram.Builder { 1222*344a7f5eSAndroid Build Coastguard Worker ctor public BasePreviewProgram.Builder(); 1223*344a7f5eSAndroid Build Coastguard Worker ctor public BasePreviewProgram.Builder(android.support.media.tv.BasePreviewProgram); 1224*344a7f5eSAndroid Build Coastguard Worker method public T setAuthor(java.lang.String); 1225*344a7f5eSAndroid Build Coastguard Worker method public T setAvailability(int); 1226*344a7f5eSAndroid Build Coastguard Worker method public T setContentId(java.lang.String); 1227*344a7f5eSAndroid Build Coastguard Worker method public T setDurationMillis(int); 1228*344a7f5eSAndroid Build Coastguard Worker method public T setIntent(android.content.Intent); 1229*344a7f5eSAndroid Build Coastguard Worker method public T setIntentUri(android.net.Uri); 1230*344a7f5eSAndroid Build Coastguard Worker method public T setInteractionCount(long); 1231*344a7f5eSAndroid Build Coastguard Worker method public T setInteractionType(int); 1232*344a7f5eSAndroid Build Coastguard Worker method public T setInternalProviderId(java.lang.String); 1233*344a7f5eSAndroid Build Coastguard Worker method public T setItemCount(int); 1234*344a7f5eSAndroid Build Coastguard Worker method public T setLastPlaybackPositionMillis(int); 1235*344a7f5eSAndroid Build Coastguard Worker method public T setLive(boolean); 1236*344a7f5eSAndroid Build Coastguard Worker method public T setLogoUri(android.net.Uri); 1237*344a7f5eSAndroid Build Coastguard Worker method public T setOfferPrice(java.lang.String); 1238*344a7f5eSAndroid Build Coastguard Worker method public T setPosterArtAspectRatio(int); 1239*344a7f5eSAndroid Build Coastguard Worker method public T setPreviewVideoUri(android.net.Uri); 1240*344a7f5eSAndroid Build Coastguard Worker method public T setReleaseDate(java.lang.String); 1241*344a7f5eSAndroid Build Coastguard Worker method public T setReleaseDate(java.util.Date); 1242*344a7f5eSAndroid Build Coastguard Worker method public T setStartingPrice(java.lang.String); 1243*344a7f5eSAndroid Build Coastguard Worker method public T setThumbnailAspectRatio(int); 1244*344a7f5eSAndroid Build Coastguard Worker method public T setTransient(boolean); 1245*344a7f5eSAndroid Build Coastguard Worker method public T setType(int); 1246*344a7f5eSAndroid Build Coastguard Worker } 1247*344a7f5eSAndroid Build Coastguard Worker 1248*344a7f5eSAndroid Build Coastguard Worker public abstract class BaseProgram { 1249*344a7f5eSAndroid Build Coastguard Worker method public java.lang.String[] getAudioLanguages(); 1250*344a7f5eSAndroid Build Coastguard Worker method public java.lang.String[] getCanonicalGenres(); 1251*344a7f5eSAndroid Build Coastguard Worker method public android.media.tv.TvContentRating[] getContentRatings(); 1252*344a7f5eSAndroid Build Coastguard Worker method public java.lang.String getDescription(); 1253*344a7f5eSAndroid Build Coastguard Worker method public java.lang.String getEpisodeNumber(); 1254*344a7f5eSAndroid Build Coastguard Worker method public java.lang.String getEpisodeTitle(); 1255*344a7f5eSAndroid Build Coastguard Worker method public long getId(); 1256*344a7f5eSAndroid Build Coastguard Worker method public byte[] getInternalProviderDataByteArray(); 1257*344a7f5eSAndroid Build Coastguard Worker method public java.lang.Long getInternalProviderFlag1(); 1258*344a7f5eSAndroid Build Coastguard Worker method public java.lang.Long getInternalProviderFlag2(); 1259*344a7f5eSAndroid Build Coastguard Worker method public java.lang.Long getInternalProviderFlag3(); 1260*344a7f5eSAndroid Build Coastguard Worker method public java.lang.Long getInternalProviderFlag4(); 1261*344a7f5eSAndroid Build Coastguard Worker method public java.lang.String getLongDescription(); 1262*344a7f5eSAndroid Build Coastguard Worker method public android.net.Uri getPosterArtUri(); 1263*344a7f5eSAndroid Build Coastguard Worker method public java.lang.String getReviewRating(); 1264*344a7f5eSAndroid Build Coastguard Worker method public int getReviewRatingStyle(); 1265*344a7f5eSAndroid Build Coastguard Worker method public java.lang.String getSeasonNumber(); 1266*344a7f5eSAndroid Build Coastguard Worker method public java.lang.String getSeasonTitle(); 1267*344a7f5eSAndroid Build Coastguard Worker method public android.net.Uri getThumbnailUri(); 1268*344a7f5eSAndroid Build Coastguard Worker method public java.lang.String getTitle(); 1269*344a7f5eSAndroid Build Coastguard Worker method public int getVideoHeight(); 1270*344a7f5eSAndroid Build Coastguard Worker method public int getVideoWidth(); 1271*344a7f5eSAndroid Build Coastguard Worker method public boolean isSearchable(); 1272*344a7f5eSAndroid Build Coastguard Worker method public android.content.ContentValues toContentValues(); 1273*344a7f5eSAndroid Build Coastguard Worker } 1274*344a7f5eSAndroid Build Coastguard Worker 1275*344a7f5eSAndroid Build Coastguard Worker public static abstract class BaseProgram.Builder<T extends android.support.media.tv.BaseProgram.Builder> { 1276*344a7f5eSAndroid Build Coastguard Worker ctor public BaseProgram.Builder(); 1277*344a7f5eSAndroid Build Coastguard Worker ctor public BaseProgram.Builder(android.support.media.tv.BaseProgram); 1278*344a7f5eSAndroid Build Coastguard Worker method public T setAudioLanguages(java.lang.String[]); 1279*344a7f5eSAndroid Build Coastguard Worker method public T setCanonicalGenres(java.lang.String[]); 1280*344a7f5eSAndroid Build Coastguard Worker method public T setContentRatings(android.media.tv.TvContentRating[]); 1281*344a7f5eSAndroid Build Coastguard Worker method public T setDescription(java.lang.String); 1282*344a7f5eSAndroid Build Coastguard Worker method public T setEpisodeNumber(int); 1283*344a7f5eSAndroid Build Coastguard Worker method public T setEpisodeNumber(java.lang.String, int); 1284*344a7f5eSAndroid Build Coastguard Worker method public T setEpisodeTitle(java.lang.String); 1285*344a7f5eSAndroid Build Coastguard Worker method public T setId(long); 1286*344a7f5eSAndroid Build Coastguard Worker method public T setInternalProviderData(byte[]); 1287*344a7f5eSAndroid Build Coastguard Worker method public T setInternalProviderFlag1(long); 1288*344a7f5eSAndroid Build Coastguard Worker method public T setInternalProviderFlag2(long); 1289*344a7f5eSAndroid Build Coastguard Worker method public T setInternalProviderFlag3(long); 1290*344a7f5eSAndroid Build Coastguard Worker method public T setInternalProviderFlag4(long); 1291*344a7f5eSAndroid Build Coastguard Worker method public T setLongDescription(java.lang.String); 1292*344a7f5eSAndroid Build Coastguard Worker method public T setPosterArtUri(android.net.Uri); 1293*344a7f5eSAndroid Build Coastguard Worker method public T setReviewRating(java.lang.String); 1294*344a7f5eSAndroid Build Coastguard Worker method public T setReviewRatingStyle(int); 1295*344a7f5eSAndroid Build Coastguard Worker method public T setSearchable(boolean); 1296*344a7f5eSAndroid Build Coastguard Worker method public T setSeasonNumber(int); 1297*344a7f5eSAndroid Build Coastguard Worker method public T setSeasonNumber(java.lang.String, int); 1298*344a7f5eSAndroid Build Coastguard Worker method public T setSeasonTitle(java.lang.String); 1299*344a7f5eSAndroid Build Coastguard Worker method public T setThumbnailUri(android.net.Uri); 1300*344a7f5eSAndroid Build Coastguard Worker method public T setTitle(java.lang.String); 1301*344a7f5eSAndroid Build Coastguard Worker method public T setVideoHeight(int); 1302*344a7f5eSAndroid Build Coastguard Worker method public T setVideoWidth(int); 1303*344a7f5eSAndroid Build Coastguard Worker } 1304*344a7f5eSAndroid Build Coastguard Worker 1305*344a7f5eSAndroid Build Coastguard Worker public final class Channel { 1306*344a7f5eSAndroid Build Coastguard Worker method public static android.support.media.tv.Channel fromCursor(android.database.Cursor); 1307*344a7f5eSAndroid Build Coastguard Worker method public int getAppLinkColor(); 1308*344a7f5eSAndroid Build Coastguard Worker method public android.net.Uri getAppLinkIconUri(); 1309*344a7f5eSAndroid Build Coastguard Worker method public android.content.Intent getAppLinkIntent() throws java.net.URISyntaxException; 1310*344a7f5eSAndroid Build Coastguard Worker method public android.net.Uri getAppLinkIntentUri(); 1311*344a7f5eSAndroid Build Coastguard Worker method public android.net.Uri getAppLinkPosterArtUri(); 1312*344a7f5eSAndroid Build Coastguard Worker method public java.lang.String getAppLinkText(); 1313*344a7f5eSAndroid Build Coastguard Worker method public java.lang.String getDescription(); 1314*344a7f5eSAndroid Build Coastguard Worker method public java.lang.String getDisplayName(); 1315*344a7f5eSAndroid Build Coastguard Worker method public java.lang.String getDisplayNumber(); 1316*344a7f5eSAndroid Build Coastguard Worker method public long getId(); 1317*344a7f5eSAndroid Build Coastguard Worker method public java.lang.String getInputId(); 1318*344a7f5eSAndroid Build Coastguard Worker method public byte[] getInternalProviderDataByteArray(); 1319*344a7f5eSAndroid Build Coastguard Worker method public java.lang.Long getInternalProviderFlag1(); 1320*344a7f5eSAndroid Build Coastguard Worker method public java.lang.Long getInternalProviderFlag2(); 1321*344a7f5eSAndroid Build Coastguard Worker method public java.lang.Long getInternalProviderFlag3(); 1322*344a7f5eSAndroid Build Coastguard Worker method public java.lang.Long getInternalProviderFlag4(); 1323*344a7f5eSAndroid Build Coastguard Worker method public java.lang.String getInternalProviderId(); 1324*344a7f5eSAndroid Build Coastguard Worker method public java.lang.String getNetworkAffiliation(); 1325*344a7f5eSAndroid Build Coastguard Worker method public int getOriginalNetworkId(); 1326*344a7f5eSAndroid Build Coastguard Worker method public java.lang.String getPackageName(); 1327*344a7f5eSAndroid Build Coastguard Worker method public int getServiceId(); 1328*344a7f5eSAndroid Build Coastguard Worker method public java.lang.String getServiceType(); 1329*344a7f5eSAndroid Build Coastguard Worker method public int getTransportStreamId(); 1330*344a7f5eSAndroid Build Coastguard Worker method public java.lang.String getType(); 1331*344a7f5eSAndroid Build Coastguard Worker method public java.lang.String getVideoFormat(); 1332*344a7f5eSAndroid Build Coastguard Worker method public boolean isBrowsable(); 1333*344a7f5eSAndroid Build Coastguard Worker method public boolean isLocked(); 1334*344a7f5eSAndroid Build Coastguard Worker method public boolean isSearchable(); 1335*344a7f5eSAndroid Build Coastguard Worker method public boolean isTransient(); 1336*344a7f5eSAndroid Build Coastguard Worker method public android.content.ContentValues toContentValues(); 1337*344a7f5eSAndroid Build Coastguard Worker } 1338*344a7f5eSAndroid Build Coastguard Worker 1339*344a7f5eSAndroid Build Coastguard Worker public static final class Channel.Builder { 1340*344a7f5eSAndroid Build Coastguard Worker ctor public Channel.Builder(); 1341*344a7f5eSAndroid Build Coastguard Worker ctor public Channel.Builder(android.support.media.tv.Channel); 1342*344a7f5eSAndroid Build Coastguard Worker method public android.support.media.tv.Channel build(); 1343*344a7f5eSAndroid Build Coastguard Worker method public android.support.media.tv.Channel.Builder setAppLinkColor(int); 1344*344a7f5eSAndroid Build Coastguard Worker method public android.support.media.tv.Channel.Builder setAppLinkIconUri(android.net.Uri); 1345*344a7f5eSAndroid Build Coastguard Worker method public android.support.media.tv.Channel.Builder setAppLinkIntent(android.content.Intent); 1346*344a7f5eSAndroid Build Coastguard Worker method public android.support.media.tv.Channel.Builder setAppLinkIntentUri(android.net.Uri); 1347*344a7f5eSAndroid Build Coastguard Worker method public android.support.media.tv.Channel.Builder setAppLinkPosterArtUri(android.net.Uri); 1348*344a7f5eSAndroid Build Coastguard Worker method public android.support.media.tv.Channel.Builder setAppLinkText(java.lang.String); 1349*344a7f5eSAndroid Build Coastguard Worker method public android.support.media.tv.Channel.Builder setDescription(java.lang.String); 1350*344a7f5eSAndroid Build Coastguard Worker method public android.support.media.tv.Channel.Builder setDisplayName(java.lang.String); 1351*344a7f5eSAndroid Build Coastguard Worker method public android.support.media.tv.Channel.Builder setDisplayNumber(java.lang.String); 1352*344a7f5eSAndroid Build Coastguard Worker method public android.support.media.tv.Channel.Builder setInputId(java.lang.String); 1353*344a7f5eSAndroid Build Coastguard Worker method public android.support.media.tv.Channel.Builder setInternalProviderData(byte[]); 1354*344a7f5eSAndroid Build Coastguard Worker method public android.support.media.tv.Channel.Builder setInternalProviderData(java.lang.String); 1355*344a7f5eSAndroid Build Coastguard Worker method public android.support.media.tv.Channel.Builder setInternalProviderFlag1(long); 1356*344a7f5eSAndroid Build Coastguard Worker method public android.support.media.tv.Channel.Builder setInternalProviderFlag2(long); 1357*344a7f5eSAndroid Build Coastguard Worker method public android.support.media.tv.Channel.Builder setInternalProviderFlag3(long); 1358*344a7f5eSAndroid Build Coastguard Worker method public android.support.media.tv.Channel.Builder setInternalProviderFlag4(long); 1359*344a7f5eSAndroid Build Coastguard Worker method public android.support.media.tv.Channel.Builder setInternalProviderId(java.lang.String); 1360*344a7f5eSAndroid Build Coastguard Worker method public android.support.media.tv.Channel.Builder setNetworkAffiliation(java.lang.String); 1361*344a7f5eSAndroid Build Coastguard Worker method public android.support.media.tv.Channel.Builder setOriginalNetworkId(int); 1362*344a7f5eSAndroid Build Coastguard Worker method public android.support.media.tv.Channel.Builder setSearchable(boolean); 1363*344a7f5eSAndroid Build Coastguard Worker method public android.support.media.tv.Channel.Builder setServiceId(int); 1364*344a7f5eSAndroid Build Coastguard Worker method public android.support.media.tv.Channel.Builder setServiceType(java.lang.String); 1365*344a7f5eSAndroid Build Coastguard Worker method public android.support.media.tv.Channel.Builder setTransient(boolean); 1366*344a7f5eSAndroid Build Coastguard Worker method public android.support.media.tv.Channel.Builder setTransportStreamId(int); 1367*344a7f5eSAndroid Build Coastguard Worker method public android.support.media.tv.Channel.Builder setType(java.lang.String); 1368*344a7f5eSAndroid Build Coastguard Worker method public android.support.media.tv.Channel.Builder setVideoFormat(java.lang.String); 1369*344a7f5eSAndroid Build Coastguard Worker } 1370*344a7f5eSAndroid Build Coastguard Worker 1371*344a7f5eSAndroid Build Coastguard Worker public class ChannelLogoUtils { 1372*344a7f5eSAndroid Build Coastguard Worker ctor public ChannelLogoUtils(); 1373*344a7f5eSAndroid Build Coastguard Worker method public static android.graphics.Bitmap loadChannelLogo(android.content.Context, long); 1374*344a7f5eSAndroid Build Coastguard Worker method public static boolean storeChannelLogo(android.content.Context, long, android.net.Uri); 1375*344a7f5eSAndroid Build Coastguard Worker method public static boolean storeChannelLogo(android.content.Context, long, android.graphics.Bitmap); 1376*344a7f5eSAndroid Build Coastguard Worker } 1377*344a7f5eSAndroid Build Coastguard Worker 1378*344a7f5eSAndroid Build Coastguard Worker public final class PreviewProgram extends android.support.media.tv.BasePreviewProgram { 1379*344a7f5eSAndroid Build Coastguard Worker method public static android.support.media.tv.PreviewProgram fromCursor(android.database.Cursor); 1380*344a7f5eSAndroid Build Coastguard Worker method public long getChannelId(); 1381*344a7f5eSAndroid Build Coastguard Worker method public int getWeight(); 1382*344a7f5eSAndroid Build Coastguard Worker } 1383*344a7f5eSAndroid Build Coastguard Worker 1384*344a7f5eSAndroid Build Coastguard Worker public static final class PreviewProgram.Builder extends android.support.media.tv.BasePreviewProgram.Builder { 1385*344a7f5eSAndroid Build Coastguard Worker ctor public PreviewProgram.Builder(); 1386*344a7f5eSAndroid Build Coastguard Worker ctor public PreviewProgram.Builder(android.support.media.tv.PreviewProgram); 1387*344a7f5eSAndroid Build Coastguard Worker method public android.support.media.tv.PreviewProgram build(); 1388*344a7f5eSAndroid Build Coastguard Worker method public android.support.media.tv.PreviewProgram.Builder setChannelId(long); 1389*344a7f5eSAndroid Build Coastguard Worker method public android.support.media.tv.PreviewProgram.Builder setWeight(int); 1390*344a7f5eSAndroid Build Coastguard Worker } 1391*344a7f5eSAndroid Build Coastguard Worker 1392*344a7f5eSAndroid Build Coastguard Worker public final class Program extends android.support.media.tv.BaseProgram implements java.lang.Comparable { 1393*344a7f5eSAndroid Build Coastguard Worker method public int compareTo(android.support.media.tv.Program); 1394*344a7f5eSAndroid Build Coastguard Worker method public static android.support.media.tv.Program fromCursor(android.database.Cursor); 1395*344a7f5eSAndroid Build Coastguard Worker method public java.lang.String[] getBroadcastGenres(); 1396*344a7f5eSAndroid Build Coastguard Worker method public long getChannelId(); 1397*344a7f5eSAndroid Build Coastguard Worker method public long getEndTimeUtcMillis(); 1398*344a7f5eSAndroid Build Coastguard Worker method public long getStartTimeUtcMillis(); 1399*344a7f5eSAndroid Build Coastguard Worker method public boolean isRecordingProhibited(); 1400*344a7f5eSAndroid Build Coastguard Worker } 1401*344a7f5eSAndroid Build Coastguard Worker 1402*344a7f5eSAndroid Build Coastguard Worker public static class Program.Builder extends android.support.media.tv.BaseProgram.Builder { 1403*344a7f5eSAndroid Build Coastguard Worker ctor public Program.Builder(); 1404*344a7f5eSAndroid Build Coastguard Worker ctor public Program.Builder(android.support.media.tv.Program); 1405*344a7f5eSAndroid Build Coastguard Worker method public android.support.media.tv.Program build(); 1406*344a7f5eSAndroid Build Coastguard Worker method public android.support.media.tv.Program.Builder setBroadcastGenres(java.lang.String[]); 1407*344a7f5eSAndroid Build Coastguard Worker method public android.support.media.tv.Program.Builder setChannelId(long); 1408*344a7f5eSAndroid Build Coastguard Worker method public android.support.media.tv.Program.Builder setEndTimeUtcMillis(long); 1409*344a7f5eSAndroid Build Coastguard Worker method public android.support.media.tv.Program.Builder setRecordingProhibited(boolean); 1410*344a7f5eSAndroid Build Coastguard Worker method public android.support.media.tv.Program.Builder setStartTimeUtcMillis(long); 1411*344a7f5eSAndroid Build Coastguard Worker } 1412*344a7f5eSAndroid Build Coastguard Worker 1413*344a7f5eSAndroid Build Coastguard Worker public final class TvContractCompat { 1414*344a7f5eSAndroid Build Coastguard Worker method public static android.net.Uri buildChannelLogoUri(long); 1415*344a7f5eSAndroid Build Coastguard Worker method public static android.net.Uri buildChannelLogoUri(android.net.Uri); 1416*344a7f5eSAndroid Build Coastguard Worker method public static android.net.Uri buildChannelUri(long); 1417*344a7f5eSAndroid Build Coastguard Worker method public static android.net.Uri buildChannelUriForPassthroughInput(java.lang.String); 1418*344a7f5eSAndroid Build Coastguard Worker method public static android.net.Uri buildChannelsUriForInput(java.lang.String); 1419*344a7f5eSAndroid Build Coastguard Worker method public static java.lang.String buildInputId(android.content.ComponentName); 1420*344a7f5eSAndroid Build Coastguard Worker method public static android.net.Uri buildPreviewProgramUri(long); 1421*344a7f5eSAndroid Build Coastguard Worker method public static android.net.Uri buildPreviewProgramsUriForChannel(long); 1422*344a7f5eSAndroid Build Coastguard Worker method public static android.net.Uri buildPreviewProgramsUriForChannel(android.net.Uri); 1423*344a7f5eSAndroid Build Coastguard Worker method public static android.net.Uri buildProgramUri(long); 1424*344a7f5eSAndroid Build Coastguard Worker method public static android.net.Uri buildProgramsUriForChannel(long); 1425*344a7f5eSAndroid Build Coastguard Worker method public static android.net.Uri buildProgramsUriForChannel(android.net.Uri); 1426*344a7f5eSAndroid Build Coastguard Worker method public static android.net.Uri buildProgramsUriForChannel(long, long, long); 1427*344a7f5eSAndroid Build Coastguard Worker method public static android.net.Uri buildProgramsUriForChannel(android.net.Uri, long, long); 1428*344a7f5eSAndroid Build Coastguard Worker method public static android.net.Uri buildRecordedProgramUri(long); 1429*344a7f5eSAndroid Build Coastguard Worker method public static android.net.Uri buildWatchNextProgramUri(long); 1430*344a7f5eSAndroid Build Coastguard Worker method public static boolean isChannelUri(android.net.Uri); 1431*344a7f5eSAndroid Build Coastguard Worker method public static boolean isChannelUriForPassthroughInput(android.net.Uri); 1432*344a7f5eSAndroid Build Coastguard Worker method public static boolean isChannelUriForTunerInput(android.net.Uri); 1433*344a7f5eSAndroid Build Coastguard Worker method public static boolean isProgramUri(android.net.Uri); 1434*344a7f5eSAndroid Build Coastguard Worker method public static void requestChannelBrowsable(android.content.Context, long); 1435*344a7f5eSAndroid Build Coastguard Worker field public static final java.lang.String ACTION_INITIALIZE_PROGRAMS = "android.media.tv.action.INITIALIZE_PROGRAMS"; 1436*344a7f5eSAndroid Build Coastguard Worker field public static final java.lang.String ACTION_PREVIEW_PROGRAM_ADDED_TO_WATCH_NEXT = "android.media.tv.action.PREVIEW_PROGRAM_ADDED_TO_WATCH_NEXT"; 1437*344a7f5eSAndroid Build Coastguard Worker field public static final java.lang.String ACTION_PREVIEW_PROGRAM_BROWSABLE_DISABLED = "android.media.tv.action.PREVIEW_PROGRAM_BROWSABLE_DISABLED"; 1438*344a7f5eSAndroid Build Coastguard Worker field public static final java.lang.String ACTION_REQUEST_CHANNEL_BROWSABLE = "android.media.tv.action.REQUEST_CHANNEL_BROWSABLE"; 1439*344a7f5eSAndroid Build Coastguard Worker field public static final java.lang.String ACTION_WATCH_NEXT_PROGRAM_BROWSABLE_DISABLED = "android.media.tv.action.WATCH_NEXT_PROGRAM_BROWSABLE_DISABLED"; 1440*344a7f5eSAndroid Build Coastguard Worker field public static final java.lang.String AUTHORITY = "android.media.tv"; 1441*344a7f5eSAndroid Build Coastguard Worker field public static final java.lang.String EXTRA_CHANNEL_ID = "android.media.tv.extra.CHANNEL_ID"; 1442*344a7f5eSAndroid Build Coastguard Worker field public static final java.lang.String EXTRA_PREVIEW_PROGRAM_ID = "android.media.tv.extra.PREVIEW_PROGRAM_ID"; 1443*344a7f5eSAndroid Build Coastguard Worker field public static final java.lang.String EXTRA_WATCH_NEXT_PROGRAM_ID = "android.media.tv.extra.WATCH_NEXT_PROGRAM_ID"; 1444*344a7f5eSAndroid Build Coastguard Worker } 1445*344a7f5eSAndroid Build Coastguard Worker 1446*344a7f5eSAndroid Build Coastguard Worker public static abstract interface TvContractCompat.BaseTvColumns { 1447*344a7f5eSAndroid Build Coastguard Worker field public static final java.lang.String COLUMN_PACKAGE_NAME = "package_name"; 1448*344a7f5eSAndroid Build Coastguard Worker } 1449*344a7f5eSAndroid Build Coastguard Worker 1450*344a7f5eSAndroid Build Coastguard Worker public static final class TvContractCompat.Channels implements android.support.media.tv.TvContractCompat.BaseTvColumns { 1451*344a7f5eSAndroid Build Coastguard Worker method public static java.lang.String getVideoResolution(java.lang.String); 1452*344a7f5eSAndroid Build Coastguard Worker field public static final java.lang.String COLUMN_APP_LINK_COLOR = "app_link_color"; 1453*344a7f5eSAndroid Build Coastguard Worker field public static final java.lang.String COLUMN_APP_LINK_ICON_URI = "app_link_icon_uri"; 1454*344a7f5eSAndroid Build Coastguard Worker field public static final java.lang.String COLUMN_APP_LINK_INTENT_URI = "app_link_intent_uri"; 1455*344a7f5eSAndroid Build Coastguard Worker field public static final java.lang.String COLUMN_APP_LINK_POSTER_ART_URI = "app_link_poster_art_uri"; 1456*344a7f5eSAndroid Build Coastguard Worker field public static final java.lang.String COLUMN_APP_LINK_TEXT = "app_link_text"; 1457*344a7f5eSAndroid Build Coastguard Worker field public static final java.lang.String COLUMN_BROWSABLE = "browsable"; 1458*344a7f5eSAndroid Build Coastguard Worker field public static final java.lang.String COLUMN_DESCRIPTION = "description"; 1459*344a7f5eSAndroid Build Coastguard Worker field public static final java.lang.String COLUMN_DISPLAY_NAME = "display_name"; 1460*344a7f5eSAndroid Build Coastguard Worker field public static final java.lang.String COLUMN_DISPLAY_NUMBER = "display_number"; 1461*344a7f5eSAndroid Build Coastguard Worker field public static final java.lang.String COLUMN_INPUT_ID = "input_id"; 1462*344a7f5eSAndroid Build Coastguard Worker field public static final java.lang.String COLUMN_INTERNAL_PROVIDER_DATA = "internal_provider_data"; 1463*344a7f5eSAndroid Build Coastguard Worker field public static final java.lang.String COLUMN_INTERNAL_PROVIDER_FLAG1 = "internal_provider_flag1"; 1464*344a7f5eSAndroid Build Coastguard Worker field public static final java.lang.String COLUMN_INTERNAL_PROVIDER_FLAG2 = "internal_provider_flag2"; 1465*344a7f5eSAndroid Build Coastguard Worker field public static final java.lang.String COLUMN_INTERNAL_PROVIDER_FLAG3 = "internal_provider_flag3"; 1466*344a7f5eSAndroid Build Coastguard Worker field public static final java.lang.String COLUMN_INTERNAL_PROVIDER_FLAG4 = "internal_provider_flag4"; 1467*344a7f5eSAndroid Build Coastguard Worker field public static final java.lang.String COLUMN_INTERNAL_PROVIDER_ID = "internal_provider_id"; 1468*344a7f5eSAndroid Build Coastguard Worker field public static final java.lang.String COLUMN_LOCKED = "locked"; 1469*344a7f5eSAndroid Build Coastguard Worker field public static final java.lang.String COLUMN_NETWORK_AFFILIATION = "network_affiliation"; 1470*344a7f5eSAndroid Build Coastguard Worker field public static final java.lang.String COLUMN_ORIGINAL_NETWORK_ID = "original_network_id"; 1471*344a7f5eSAndroid Build Coastguard Worker field public static final java.lang.String COLUMN_SEARCHABLE = "searchable"; 1472*344a7f5eSAndroid Build Coastguard Worker field public static final java.lang.String COLUMN_SERVICE_ID = "service_id"; 1473*344a7f5eSAndroid Build Coastguard Worker field public static final java.lang.String COLUMN_SERVICE_TYPE = "service_type"; 1474*344a7f5eSAndroid Build Coastguard Worker field public static final java.lang.String COLUMN_TRANSIENT = "transient"; 1475*344a7f5eSAndroid Build Coastguard Worker field public static final java.lang.String COLUMN_TRANSPORT_STREAM_ID = "transport_stream_id"; 1476*344a7f5eSAndroid Build Coastguard Worker field public static final java.lang.String COLUMN_TYPE = "type"; 1477*344a7f5eSAndroid Build Coastguard Worker field public static final java.lang.String COLUMN_VERSION_NUMBER = "version_number"; 1478*344a7f5eSAndroid Build Coastguard Worker field public static final java.lang.String COLUMN_VIDEO_FORMAT = "video_format"; 1479*344a7f5eSAndroid Build Coastguard Worker field public static final java.lang.String CONTENT_ITEM_TYPE = "vnd.android.cursor.item/channel"; 1480*344a7f5eSAndroid Build Coastguard Worker field public static final java.lang.String CONTENT_TYPE = "vnd.android.cursor.dir/channel"; 1481*344a7f5eSAndroid Build Coastguard Worker field public static final android.net.Uri CONTENT_URI; 1482*344a7f5eSAndroid Build Coastguard Worker field public static final java.lang.String SERVICE_TYPE_AUDIO = "SERVICE_TYPE_AUDIO"; 1483*344a7f5eSAndroid Build Coastguard Worker field public static final java.lang.String SERVICE_TYPE_AUDIO_VIDEO = "SERVICE_TYPE_AUDIO_VIDEO"; 1484*344a7f5eSAndroid Build Coastguard Worker field public static final java.lang.String SERVICE_TYPE_OTHER = "SERVICE_TYPE_OTHER"; 1485*344a7f5eSAndroid Build Coastguard Worker field public static final java.lang.String TYPE_1SEG = "TYPE_1SEG"; 1486*344a7f5eSAndroid Build Coastguard Worker field public static final java.lang.String TYPE_ATSC_C = "TYPE_ATSC_C"; 1487*344a7f5eSAndroid Build Coastguard Worker field public static final java.lang.String TYPE_ATSC_M_H = "TYPE_ATSC_M_H"; 1488*344a7f5eSAndroid Build Coastguard Worker field public static final java.lang.String TYPE_ATSC_T = "TYPE_ATSC_T"; 1489*344a7f5eSAndroid Build Coastguard Worker field public static final java.lang.String TYPE_CMMB = "TYPE_CMMB"; 1490*344a7f5eSAndroid Build Coastguard Worker field public static final java.lang.String TYPE_DTMB = "TYPE_DTMB"; 1491*344a7f5eSAndroid Build Coastguard Worker field public static final java.lang.String TYPE_DVB_C = "TYPE_DVB_C"; 1492*344a7f5eSAndroid Build Coastguard Worker field public static final java.lang.String TYPE_DVB_C2 = "TYPE_DVB_C2"; 1493*344a7f5eSAndroid Build Coastguard Worker field public static final java.lang.String TYPE_DVB_H = "TYPE_DVB_H"; 1494*344a7f5eSAndroid Build Coastguard Worker field public static final java.lang.String TYPE_DVB_S = "TYPE_DVB_S"; 1495*344a7f5eSAndroid Build Coastguard Worker field public static final java.lang.String TYPE_DVB_S2 = "TYPE_DVB_S2"; 1496*344a7f5eSAndroid Build Coastguard Worker field public static final java.lang.String TYPE_DVB_SH = "TYPE_DVB_SH"; 1497*344a7f5eSAndroid Build Coastguard Worker field public static final java.lang.String TYPE_DVB_T = "TYPE_DVB_T"; 1498*344a7f5eSAndroid Build Coastguard Worker field public static final java.lang.String TYPE_DVB_T2 = "TYPE_DVB_T2"; 1499*344a7f5eSAndroid Build Coastguard Worker field public static final java.lang.String TYPE_ISDB_C = "TYPE_ISDB_C"; 1500*344a7f5eSAndroid Build Coastguard Worker field public static final java.lang.String TYPE_ISDB_S = "TYPE_ISDB_S"; 1501*344a7f5eSAndroid Build Coastguard Worker field public static final java.lang.String TYPE_ISDB_T = "TYPE_ISDB_T"; 1502*344a7f5eSAndroid Build Coastguard Worker field public static final java.lang.String TYPE_ISDB_TB = "TYPE_ISDB_TB"; 1503*344a7f5eSAndroid Build Coastguard Worker field public static final java.lang.String TYPE_NTSC = "TYPE_NTSC"; 1504*344a7f5eSAndroid Build Coastguard Worker field public static final java.lang.String TYPE_OTHER = "TYPE_OTHER"; 1505*344a7f5eSAndroid Build Coastguard Worker field public static final java.lang.String TYPE_PAL = "TYPE_PAL"; 1506*344a7f5eSAndroid Build Coastguard Worker field public static final java.lang.String TYPE_PREVIEW = "TYPE_PREVIEW"; 1507*344a7f5eSAndroid Build Coastguard Worker field public static final java.lang.String TYPE_SECAM = "TYPE_SECAM"; 1508*344a7f5eSAndroid Build Coastguard Worker field public static final java.lang.String TYPE_S_DMB = "TYPE_S_DMB"; 1509*344a7f5eSAndroid Build Coastguard Worker field public static final java.lang.String TYPE_T_DMB = "TYPE_T_DMB"; 1510*344a7f5eSAndroid Build Coastguard Worker field public static final java.lang.String VIDEO_FORMAT_1080I = "VIDEO_FORMAT_1080I"; 1511*344a7f5eSAndroid Build Coastguard Worker field public static final java.lang.String VIDEO_FORMAT_1080P = "VIDEO_FORMAT_1080P"; 1512*344a7f5eSAndroid Build Coastguard Worker field public static final java.lang.String VIDEO_FORMAT_2160P = "VIDEO_FORMAT_2160P"; 1513*344a7f5eSAndroid Build Coastguard Worker field public static final java.lang.String VIDEO_FORMAT_240P = "VIDEO_FORMAT_240P"; 1514*344a7f5eSAndroid Build Coastguard Worker field public static final java.lang.String VIDEO_FORMAT_360P = "VIDEO_FORMAT_360P"; 1515*344a7f5eSAndroid Build Coastguard Worker field public static final java.lang.String VIDEO_FORMAT_4320P = "VIDEO_FORMAT_4320P"; 1516*344a7f5eSAndroid Build Coastguard Worker field public static final java.lang.String VIDEO_FORMAT_480I = "VIDEO_FORMAT_480I"; 1517*344a7f5eSAndroid Build Coastguard Worker field public static final java.lang.String VIDEO_FORMAT_480P = "VIDEO_FORMAT_480P"; 1518*344a7f5eSAndroid Build Coastguard Worker field public static final java.lang.String VIDEO_FORMAT_576I = "VIDEO_FORMAT_576I"; 1519*344a7f5eSAndroid Build Coastguard Worker field public static final java.lang.String VIDEO_FORMAT_576P = "VIDEO_FORMAT_576P"; 1520*344a7f5eSAndroid Build Coastguard Worker field public static final java.lang.String VIDEO_FORMAT_720P = "VIDEO_FORMAT_720P"; 1521*344a7f5eSAndroid Build Coastguard Worker field public static final java.lang.String VIDEO_RESOLUTION_ED = "VIDEO_RESOLUTION_ED"; 1522*344a7f5eSAndroid Build Coastguard Worker field public static final java.lang.String VIDEO_RESOLUTION_FHD = "VIDEO_RESOLUTION_FHD"; 1523*344a7f5eSAndroid Build Coastguard Worker field public static final java.lang.String VIDEO_RESOLUTION_HD = "VIDEO_RESOLUTION_HD"; 1524*344a7f5eSAndroid Build Coastguard Worker field public static final java.lang.String VIDEO_RESOLUTION_SD = "VIDEO_RESOLUTION_SD"; 1525*344a7f5eSAndroid Build Coastguard Worker field public static final java.lang.String VIDEO_RESOLUTION_UHD = "VIDEO_RESOLUTION_UHD"; 1526*344a7f5eSAndroid Build Coastguard Worker } 1527*344a7f5eSAndroid Build Coastguard Worker 1528*344a7f5eSAndroid Build Coastguard Worker public static final class TvContractCompat.Channels.Logo { 1529*344a7f5eSAndroid Build Coastguard Worker field public static final java.lang.String CONTENT_DIRECTORY = "logo"; 1530*344a7f5eSAndroid Build Coastguard Worker } 1531*344a7f5eSAndroid Build Coastguard Worker 1532*344a7f5eSAndroid Build Coastguard Worker public static final class TvContractCompat.PreviewPrograms implements android.support.media.tv.TvContractCompat.BaseTvColumns { 1533*344a7f5eSAndroid Build Coastguard Worker field public static final int ASPECT_RATIO_16_9 = 0; // 0x0 1534*344a7f5eSAndroid Build Coastguard Worker field public static final int ASPECT_RATIO_1_1 = 3; // 0x3 1535*344a7f5eSAndroid Build Coastguard Worker field public static final int ASPECT_RATIO_2_3 = 4; // 0x4 1536*344a7f5eSAndroid Build Coastguard Worker field public static final int ASPECT_RATIO_3_2 = 1; // 0x1 1537*344a7f5eSAndroid Build Coastguard Worker field public static final int ASPECT_RATIO_4_3 = 2; // 0x2 1538*344a7f5eSAndroid Build Coastguard Worker field public static final int AVAILABILITY_AVAILABLE = 0; // 0x0 1539*344a7f5eSAndroid Build Coastguard Worker field public static final int AVAILABILITY_FREE_WITH_SUBSCRIPTION = 1; // 0x1 1540*344a7f5eSAndroid Build Coastguard Worker field public static final int AVAILABILITY_PAID_CONTENT = 2; // 0x2 1541*344a7f5eSAndroid Build Coastguard Worker field public static final java.lang.String COLUMN_AUDIO_LANGUAGE = "audio_language"; 1542*344a7f5eSAndroid Build Coastguard Worker field public static final java.lang.String COLUMN_AUTHOR = "author"; 1543*344a7f5eSAndroid Build Coastguard Worker field public static final java.lang.String COLUMN_AVAILABILITY = "availability"; 1544*344a7f5eSAndroid Build Coastguard Worker field public static final java.lang.String COLUMN_BROWSABLE = "browsable"; 1545*344a7f5eSAndroid Build Coastguard Worker field public static final java.lang.String COLUMN_CANONICAL_GENRE = "canonical_genre"; 1546*344a7f5eSAndroid Build Coastguard Worker field public static final java.lang.String COLUMN_CHANNEL_ID = "channel_id"; 1547*344a7f5eSAndroid Build Coastguard Worker field public static final java.lang.String COLUMN_CONTENT_ID = "content_id"; 1548*344a7f5eSAndroid Build Coastguard Worker field public static final java.lang.String COLUMN_CONTENT_RATING = "content_rating"; 1549*344a7f5eSAndroid Build Coastguard Worker field public static final java.lang.String COLUMN_DURATION_MILLIS = "duration_millis"; 1550*344a7f5eSAndroid Build Coastguard Worker field public static final java.lang.String COLUMN_EPISODE_DISPLAY_NUMBER = "episode_display_number"; 1551*344a7f5eSAndroid Build Coastguard Worker field public static final java.lang.String COLUMN_EPISODE_TITLE = "episode_title"; 1552*344a7f5eSAndroid Build Coastguard Worker field public static final java.lang.String COLUMN_INTENT_URI = "intent_uri"; 1553*344a7f5eSAndroid Build Coastguard Worker field public static final java.lang.String COLUMN_INTERACTION_COUNT = "interaction_count"; 1554*344a7f5eSAndroid Build Coastguard Worker field public static final java.lang.String COLUMN_INTERACTION_TYPE = "interaction_type"; 1555*344a7f5eSAndroid Build Coastguard Worker field public static final java.lang.String COLUMN_INTERNAL_PROVIDER_DATA = "internal_provider_data"; 1556*344a7f5eSAndroid Build Coastguard Worker field public static final java.lang.String COLUMN_INTERNAL_PROVIDER_FLAG1 = "internal_provider_flag1"; 1557*344a7f5eSAndroid Build Coastguard Worker field public static final java.lang.String COLUMN_INTERNAL_PROVIDER_FLAG2 = "internal_provider_flag2"; 1558*344a7f5eSAndroid Build Coastguard Worker field public static final java.lang.String COLUMN_INTERNAL_PROVIDER_FLAG3 = "internal_provider_flag3"; 1559*344a7f5eSAndroid Build Coastguard Worker field public static final java.lang.String COLUMN_INTERNAL_PROVIDER_FLAG4 = "internal_provider_flag4"; 1560*344a7f5eSAndroid Build Coastguard Worker field public static final java.lang.String COLUMN_INTERNAL_PROVIDER_ID = "internal_provider_id"; 1561*344a7f5eSAndroid Build Coastguard Worker field public static final java.lang.String COLUMN_ITEM_COUNT = "item_count"; 1562*344a7f5eSAndroid Build Coastguard Worker field public static final java.lang.String COLUMN_LAST_PLAYBACK_POSITION_MILLIS = "last_playback_position_millis"; 1563*344a7f5eSAndroid Build Coastguard Worker field public static final java.lang.String COLUMN_LIVE = "live"; 1564*344a7f5eSAndroid Build Coastguard Worker field public static final java.lang.String COLUMN_LOGO_URI = "logo_uri"; 1565*344a7f5eSAndroid Build Coastguard Worker field public static final java.lang.String COLUMN_LONG_DESCRIPTION = "long_description"; 1566*344a7f5eSAndroid Build Coastguard Worker field public static final java.lang.String COLUMN_OFFER_PRICE = "offer_price"; 1567*344a7f5eSAndroid Build Coastguard Worker field public static final java.lang.String COLUMN_POSTER_ART_ASPECT_RATIO = "poster_art_aspect_ratio"; 1568*344a7f5eSAndroid Build Coastguard Worker field public static final java.lang.String COLUMN_POSTER_ART_URI = "poster_art_uri"; 1569*344a7f5eSAndroid Build Coastguard Worker field public static final java.lang.String COLUMN_PREVIEW_VIDEO_URI = "preview_video_uri"; 1570*344a7f5eSAndroid Build Coastguard Worker field public static final java.lang.String COLUMN_RELEASE_DATE = "release_date"; 1571*344a7f5eSAndroid Build Coastguard Worker field public static final java.lang.String COLUMN_REVIEW_RATING = "review_rating"; 1572*344a7f5eSAndroid Build Coastguard Worker field public static final java.lang.String COLUMN_REVIEW_RATING_STYLE = "review_rating_style"; 1573*344a7f5eSAndroid Build Coastguard Worker field public static final java.lang.String COLUMN_SEARCHABLE = "searchable"; 1574*344a7f5eSAndroid Build Coastguard Worker field public static final java.lang.String COLUMN_SEASON_DISPLAY_NUMBER = "season_display_number"; 1575*344a7f5eSAndroid Build Coastguard Worker field public static final java.lang.String COLUMN_SEASON_TITLE = "season_title"; 1576*344a7f5eSAndroid Build Coastguard Worker field public static final java.lang.String COLUMN_SHORT_DESCRIPTION = "short_description"; 1577*344a7f5eSAndroid Build Coastguard Worker field public static final java.lang.String COLUMN_STARTING_PRICE = "starting_price"; 1578*344a7f5eSAndroid Build Coastguard Worker field public static final java.lang.String COLUMN_THUMBNAIL_ASPECT_RATIO = "poster_thumbnail_aspect_ratio"; 1579*344a7f5eSAndroid Build Coastguard Worker field public static final java.lang.String COLUMN_THUMBNAIL_URI = "thumbnail_uri"; 1580*344a7f5eSAndroid Build Coastguard Worker field public static final java.lang.String COLUMN_TITLE = "title"; 1581*344a7f5eSAndroid Build Coastguard Worker field public static final java.lang.String COLUMN_TRANSIENT = "transient"; 1582*344a7f5eSAndroid Build Coastguard Worker field public static final java.lang.String COLUMN_TYPE = "type"; 1583*344a7f5eSAndroid Build Coastguard Worker field public static final java.lang.String COLUMN_VERSION_NUMBER = "version_number"; 1584*344a7f5eSAndroid Build Coastguard Worker field public static final java.lang.String COLUMN_VIDEO_HEIGHT = "video_height"; 1585*344a7f5eSAndroid Build Coastguard Worker field public static final java.lang.String COLUMN_VIDEO_WIDTH = "video_width"; 1586*344a7f5eSAndroid Build Coastguard Worker field public static final java.lang.String COLUMN_WEIGHT = "weight"; 1587*344a7f5eSAndroid Build Coastguard Worker field public static final java.lang.String CONTENT_ITEM_TYPE = "vnd.android.cursor.item/preview_program"; 1588*344a7f5eSAndroid Build Coastguard Worker field public static final java.lang.String CONTENT_TYPE = "vnd.android.cursor.dir/preview_program"; 1589*344a7f5eSAndroid Build Coastguard Worker field public static final android.net.Uri CONTENT_URI; 1590*344a7f5eSAndroid Build Coastguard Worker field public static final int INTERACTION_TYPE_FANS = 3; // 0x3 1591*344a7f5eSAndroid Build Coastguard Worker field public static final int INTERACTION_TYPE_FOLLOWERS = 2; // 0x2 1592*344a7f5eSAndroid Build Coastguard Worker field public static final int INTERACTION_TYPE_LIKES = 4; // 0x4 1593*344a7f5eSAndroid Build Coastguard Worker field public static final int INTERACTION_TYPE_LISTENS = 1; // 0x1 1594*344a7f5eSAndroid Build Coastguard Worker field public static final int INTERACTION_TYPE_THUMBS = 5; // 0x5 1595*344a7f5eSAndroid Build Coastguard Worker field public static final int INTERACTION_TYPE_VIEWERS = 6; // 0x6 1596*344a7f5eSAndroid Build Coastguard Worker field public static final int INTERACTION_TYPE_VIEWS = 0; // 0x0 1597*344a7f5eSAndroid Build Coastguard Worker field public static final int REVIEW_RATING_STYLE_PERCENTAGE = 2; // 0x2 1598*344a7f5eSAndroid Build Coastguard Worker field public static final int REVIEW_RATING_STYLE_STARS = 0; // 0x0 1599*344a7f5eSAndroid Build Coastguard Worker field public static final int REVIEW_RATING_STYLE_THUMBS_UP_DOWN = 1; // 0x1 1600*344a7f5eSAndroid Build Coastguard Worker field public static final int TYPE_ALBUM = 8; // 0x8 1601*344a7f5eSAndroid Build Coastguard Worker field public static final int TYPE_ARTIST = 9; // 0x9 1602*344a7f5eSAndroid Build Coastguard Worker field public static final int TYPE_CHANNEL = 6; // 0x6 1603*344a7f5eSAndroid Build Coastguard Worker field public static final int TYPE_CLIP = 4; // 0x4 1604*344a7f5eSAndroid Build Coastguard Worker field public static final int TYPE_EVENT = 5; // 0x5 1605*344a7f5eSAndroid Build Coastguard Worker field public static final int TYPE_MOVIE = 0; // 0x0 1606*344a7f5eSAndroid Build Coastguard Worker field public static final int TYPE_PLAYLIST = 10; // 0xa 1607*344a7f5eSAndroid Build Coastguard Worker field public static final int TYPE_STATION = 11; // 0xb 1608*344a7f5eSAndroid Build Coastguard Worker field public static final int TYPE_TRACK = 7; // 0x7 1609*344a7f5eSAndroid Build Coastguard Worker field public static final int TYPE_TV_EPISODE = 3; // 0x3 1610*344a7f5eSAndroid Build Coastguard Worker field public static final int TYPE_TV_SEASON = 2; // 0x2 1611*344a7f5eSAndroid Build Coastguard Worker field public static final int TYPE_TV_SERIES = 1; // 0x1 1612*344a7f5eSAndroid Build Coastguard Worker } 1613*344a7f5eSAndroid Build Coastguard Worker 1614*344a7f5eSAndroid Build Coastguard Worker public static final class TvContractCompat.Programs implements android.support.media.tv.TvContractCompat.BaseTvColumns { 1615*344a7f5eSAndroid Build Coastguard Worker field public static final java.lang.String COLUMN_AUDIO_LANGUAGE = "audio_language"; 1616*344a7f5eSAndroid Build Coastguard Worker field public static final java.lang.String COLUMN_BROADCAST_GENRE = "broadcast_genre"; 1617*344a7f5eSAndroid Build Coastguard Worker field public static final java.lang.String COLUMN_CANONICAL_GENRE = "canonical_genre"; 1618*344a7f5eSAndroid Build Coastguard Worker field public static final java.lang.String COLUMN_CHANNEL_ID = "channel_id"; 1619*344a7f5eSAndroid Build Coastguard Worker field public static final java.lang.String COLUMN_CONTENT_RATING = "content_rating"; 1620*344a7f5eSAndroid Build Coastguard Worker field public static final java.lang.String COLUMN_END_TIME_UTC_MILLIS = "end_time_utc_millis"; 1621*344a7f5eSAndroid Build Coastguard Worker field public static final java.lang.String COLUMN_EPISODE_DISPLAY_NUMBER = "episode_display_number"; 1622*344a7f5eSAndroid Build Coastguard Worker field public static final deprecated java.lang.String COLUMN_EPISODE_NUMBER = "episode_number"; 1623*344a7f5eSAndroid Build Coastguard Worker field public static final java.lang.String COLUMN_EPISODE_TITLE = "episode_title"; 1624*344a7f5eSAndroid Build Coastguard Worker field public static final java.lang.String COLUMN_INTERNAL_PROVIDER_DATA = "internal_provider_data"; 1625*344a7f5eSAndroid Build Coastguard Worker field public static final java.lang.String COLUMN_INTERNAL_PROVIDER_FLAG1 = "internal_provider_flag1"; 1626*344a7f5eSAndroid Build Coastguard Worker field public static final java.lang.String COLUMN_INTERNAL_PROVIDER_FLAG2 = "internal_provider_flag2"; 1627*344a7f5eSAndroid Build Coastguard Worker field public static final java.lang.String COLUMN_INTERNAL_PROVIDER_FLAG3 = "internal_provider_flag3"; 1628*344a7f5eSAndroid Build Coastguard Worker field public static final java.lang.String COLUMN_INTERNAL_PROVIDER_FLAG4 = "internal_provider_flag4"; 1629*344a7f5eSAndroid Build Coastguard Worker field public static final java.lang.String COLUMN_LONG_DESCRIPTION = "long_description"; 1630*344a7f5eSAndroid Build Coastguard Worker field public static final java.lang.String COLUMN_POSTER_ART_URI = "poster_art_uri"; 1631*344a7f5eSAndroid Build Coastguard Worker field public static final java.lang.String COLUMN_RECORDING_PROHIBITED = "recording_prohibited"; 1632*344a7f5eSAndroid Build Coastguard Worker field public static final java.lang.String COLUMN_REVIEW_RATING = "review_rating"; 1633*344a7f5eSAndroid Build Coastguard Worker field public static final java.lang.String COLUMN_REVIEW_RATING_STYLE = "review_rating_style"; 1634*344a7f5eSAndroid Build Coastguard Worker field public static final java.lang.String COLUMN_SEARCHABLE = "searchable"; 1635*344a7f5eSAndroid Build Coastguard Worker field public static final java.lang.String COLUMN_SEASON_DISPLAY_NUMBER = "season_display_number"; 1636*344a7f5eSAndroid Build Coastguard Worker field public static final deprecated java.lang.String COLUMN_SEASON_NUMBER = "season_number"; 1637*344a7f5eSAndroid Build Coastguard Worker field public static final java.lang.String COLUMN_SEASON_TITLE = "season_title"; 1638*344a7f5eSAndroid Build Coastguard Worker field public static final java.lang.String COLUMN_SHORT_DESCRIPTION = "short_description"; 1639*344a7f5eSAndroid Build Coastguard Worker field public static final java.lang.String COLUMN_START_TIME_UTC_MILLIS = "start_time_utc_millis"; 1640*344a7f5eSAndroid Build Coastguard Worker field public static final java.lang.String COLUMN_THUMBNAIL_URI = "thumbnail_uri"; 1641*344a7f5eSAndroid Build Coastguard Worker field public static final java.lang.String COLUMN_TITLE = "title"; 1642*344a7f5eSAndroid Build Coastguard Worker field public static final java.lang.String COLUMN_VERSION_NUMBER = "version_number"; 1643*344a7f5eSAndroid Build Coastguard Worker field public static final java.lang.String COLUMN_VIDEO_HEIGHT = "video_height"; 1644*344a7f5eSAndroid Build Coastguard Worker field public static final java.lang.String COLUMN_VIDEO_WIDTH = "video_width"; 1645*344a7f5eSAndroid Build Coastguard Worker field public static final java.lang.String CONTENT_ITEM_TYPE = "vnd.android.cursor.item/program"; 1646*344a7f5eSAndroid Build Coastguard Worker field public static final java.lang.String CONTENT_TYPE = "vnd.android.cursor.dir/program"; 1647*344a7f5eSAndroid Build Coastguard Worker field public static final android.net.Uri CONTENT_URI; 1648*344a7f5eSAndroid Build Coastguard Worker field public static final int REVIEW_RATING_STYLE_PERCENTAGE = 2; // 0x2 1649*344a7f5eSAndroid Build Coastguard Worker field public static final int REVIEW_RATING_STYLE_STARS = 0; // 0x0 1650*344a7f5eSAndroid Build Coastguard Worker field public static final int REVIEW_RATING_STYLE_THUMBS_UP_DOWN = 1; // 0x1 1651*344a7f5eSAndroid Build Coastguard Worker } 1652*344a7f5eSAndroid Build Coastguard Worker 1653*344a7f5eSAndroid Build Coastguard Worker public static final class TvContractCompat.Programs.Genres { 1654*344a7f5eSAndroid Build Coastguard Worker method public static java.lang.String[] decode(java.lang.String); 1655*344a7f5eSAndroid Build Coastguard Worker method public static java.lang.String encode(java.lang.String...); 1656*344a7f5eSAndroid Build Coastguard Worker method public static boolean isCanonical(java.lang.String); 1657*344a7f5eSAndroid Build Coastguard Worker field public static final java.lang.String ANIMAL_WILDLIFE = "ANIMAL_WILDLIFE"; 1658*344a7f5eSAndroid Build Coastguard Worker field public static final java.lang.String ARTS = "ARTS"; 1659*344a7f5eSAndroid Build Coastguard Worker field public static final java.lang.String COMEDY = "COMEDY"; 1660*344a7f5eSAndroid Build Coastguard Worker field public static final java.lang.String DRAMA = "DRAMA"; 1661*344a7f5eSAndroid Build Coastguard Worker field public static final java.lang.String EDUCATION = "EDUCATION"; 1662*344a7f5eSAndroid Build Coastguard Worker field public static final java.lang.String ENTERTAINMENT = "ENTERTAINMENT"; 1663*344a7f5eSAndroid Build Coastguard Worker field public static final java.lang.String FAMILY_KIDS = "FAMILY_KIDS"; 1664*344a7f5eSAndroid Build Coastguard Worker field public static final java.lang.String GAMING = "GAMING"; 1665*344a7f5eSAndroid Build Coastguard Worker field public static final java.lang.String LIFE_STYLE = "LIFE_STYLE"; 1666*344a7f5eSAndroid Build Coastguard Worker field public static final java.lang.String MOVIES = "MOVIES"; 1667*344a7f5eSAndroid Build Coastguard Worker field public static final java.lang.String MUSIC = "MUSIC"; 1668*344a7f5eSAndroid Build Coastguard Worker field public static final java.lang.String NEWS = "NEWS"; 1669*344a7f5eSAndroid Build Coastguard Worker field public static final java.lang.String PREMIER = "PREMIER"; 1670*344a7f5eSAndroid Build Coastguard Worker field public static final java.lang.String SHOPPING = "SHOPPING"; 1671*344a7f5eSAndroid Build Coastguard Worker field public static final java.lang.String SPORTS = "SPORTS"; 1672*344a7f5eSAndroid Build Coastguard Worker field public static final java.lang.String TECH_SCIENCE = "TECH_SCIENCE"; 1673*344a7f5eSAndroid Build Coastguard Worker field public static final java.lang.String TRAVEL = "TRAVEL"; 1674*344a7f5eSAndroid Build Coastguard Worker } 1675*344a7f5eSAndroid Build Coastguard Worker 1676*344a7f5eSAndroid Build Coastguard Worker public static final class TvContractCompat.RecordedPrograms implements android.support.media.tv.TvContractCompat.BaseTvColumns { 1677*344a7f5eSAndroid Build Coastguard Worker field public static final java.lang.String COLUMN_AUDIO_LANGUAGE = "audio_language"; 1678*344a7f5eSAndroid Build Coastguard Worker field public static final java.lang.String COLUMN_BROADCAST_GENRE = "broadcast_genre"; 1679*344a7f5eSAndroid Build Coastguard Worker field public static final java.lang.String COLUMN_CANONICAL_GENRE = "canonical_genre"; 1680*344a7f5eSAndroid Build Coastguard Worker field public static final java.lang.String COLUMN_CHANNEL_ID = "channel_id"; 1681*344a7f5eSAndroid Build Coastguard Worker field public static final java.lang.String COLUMN_CONTENT_RATING = "content_rating"; 1682*344a7f5eSAndroid Build Coastguard Worker field public static final java.lang.String COLUMN_END_TIME_UTC_MILLIS = "end_time_utc_millis"; 1683*344a7f5eSAndroid Build Coastguard Worker field public static final java.lang.String COLUMN_EPISODE_DISPLAY_NUMBER = "episode_display_number"; 1684*344a7f5eSAndroid Build Coastguard Worker field public static final java.lang.String COLUMN_EPISODE_TITLE = "episode_title"; 1685*344a7f5eSAndroid Build Coastguard Worker field public static final java.lang.String COLUMN_INPUT_ID = "input_id"; 1686*344a7f5eSAndroid Build Coastguard Worker field public static final java.lang.String COLUMN_INTERNAL_PROVIDER_DATA = "internal_provider_data"; 1687*344a7f5eSAndroid Build Coastguard Worker field public static final java.lang.String COLUMN_INTERNAL_PROVIDER_FLAG1 = "internal_provider_flag1"; 1688*344a7f5eSAndroid Build Coastguard Worker field public static final java.lang.String COLUMN_INTERNAL_PROVIDER_FLAG2 = "internal_provider_flag2"; 1689*344a7f5eSAndroid Build Coastguard Worker field public static final java.lang.String COLUMN_INTERNAL_PROVIDER_FLAG3 = "internal_provider_flag3"; 1690*344a7f5eSAndroid Build Coastguard Worker field public static final java.lang.String COLUMN_INTERNAL_PROVIDER_FLAG4 = "internal_provider_flag4"; 1691*344a7f5eSAndroid Build Coastguard Worker field public static final java.lang.String COLUMN_LONG_DESCRIPTION = "long_description"; 1692*344a7f5eSAndroid Build Coastguard Worker field public static final java.lang.String COLUMN_POSTER_ART_URI = "poster_art_uri"; 1693*344a7f5eSAndroid Build Coastguard Worker field public static final java.lang.String COLUMN_RECORDING_DATA_BYTES = "recording_data_bytes"; 1694*344a7f5eSAndroid Build Coastguard Worker field public static final java.lang.String COLUMN_RECORDING_DATA_URI = "recording_data_uri"; 1695*344a7f5eSAndroid Build Coastguard Worker field public static final java.lang.String COLUMN_RECORDING_DURATION_MILLIS = "recording_duration_millis"; 1696*344a7f5eSAndroid Build Coastguard Worker field public static final java.lang.String COLUMN_RECORDING_EXPIRE_TIME_UTC_MILLIS = "recording_expire_time_utc_millis"; 1697*344a7f5eSAndroid Build Coastguard Worker field public static final java.lang.String COLUMN_REVIEW_RATING = "review_rating"; 1698*344a7f5eSAndroid Build Coastguard Worker field public static final java.lang.String COLUMN_REVIEW_RATING_STYLE = "review_rating_style"; 1699*344a7f5eSAndroid Build Coastguard Worker field public static final java.lang.String COLUMN_SEARCHABLE = "searchable"; 1700*344a7f5eSAndroid Build Coastguard Worker field public static final java.lang.String COLUMN_SEASON_DISPLAY_NUMBER = "season_display_number"; 1701*344a7f5eSAndroid Build Coastguard Worker field public static final java.lang.String COLUMN_SEASON_TITLE = "season_title"; 1702*344a7f5eSAndroid Build Coastguard Worker field public static final java.lang.String COLUMN_SHORT_DESCRIPTION = "short_description"; 1703*344a7f5eSAndroid Build Coastguard Worker field public static final java.lang.String COLUMN_START_TIME_UTC_MILLIS = "start_time_utc_millis"; 1704*344a7f5eSAndroid Build Coastguard Worker field public static final java.lang.String COLUMN_THUMBNAIL_URI = "thumbnail_uri"; 1705*344a7f5eSAndroid Build Coastguard Worker field public static final java.lang.String COLUMN_TITLE = "title"; 1706*344a7f5eSAndroid Build Coastguard Worker field public static final java.lang.String COLUMN_VERSION_NUMBER = "version_number"; 1707*344a7f5eSAndroid Build Coastguard Worker field public static final java.lang.String COLUMN_VIDEO_HEIGHT = "video_height"; 1708*344a7f5eSAndroid Build Coastguard Worker field public static final java.lang.String COLUMN_VIDEO_WIDTH = "video_width"; 1709*344a7f5eSAndroid Build Coastguard Worker field public static final java.lang.String CONTENT_ITEM_TYPE = "vnd.android.cursor.item/recorded_program"; 1710*344a7f5eSAndroid Build Coastguard Worker field public static final java.lang.String CONTENT_TYPE = "vnd.android.cursor.dir/recorded_program"; 1711*344a7f5eSAndroid Build Coastguard Worker field public static final android.net.Uri CONTENT_URI; 1712*344a7f5eSAndroid Build Coastguard Worker field public static final int REVIEW_RATING_STYLE_PERCENTAGE = 2; // 0x2 1713*344a7f5eSAndroid Build Coastguard Worker field public static final int REVIEW_RATING_STYLE_STARS = 0; // 0x0 1714*344a7f5eSAndroid Build Coastguard Worker field public static final int REVIEW_RATING_STYLE_THUMBS_UP_DOWN = 1; // 0x1 1715*344a7f5eSAndroid Build Coastguard Worker } 1716*344a7f5eSAndroid Build Coastguard Worker 1717*344a7f5eSAndroid Build Coastguard Worker public static final class TvContractCompat.WatchNextPrograms implements android.support.media.tv.TvContractCompat.BaseTvColumns { 1718*344a7f5eSAndroid Build Coastguard Worker field public static final int ASPECT_RATIO_16_9 = 0; // 0x0 1719*344a7f5eSAndroid Build Coastguard Worker field public static final int ASPECT_RATIO_1_1 = 3; // 0x3 1720*344a7f5eSAndroid Build Coastguard Worker field public static final int ASPECT_RATIO_2_3 = 4; // 0x4 1721*344a7f5eSAndroid Build Coastguard Worker field public static final int ASPECT_RATIO_3_2 = 1; // 0x1 1722*344a7f5eSAndroid Build Coastguard Worker field public static final int ASPECT_RATIO_4_3 = 2; // 0x2 1723*344a7f5eSAndroid Build Coastguard Worker field public static final int AVAILABILITY_AVAILABLE = 0; // 0x0 1724*344a7f5eSAndroid Build Coastguard Worker field public static final int AVAILABILITY_FREE_WITH_SUBSCRIPTION = 1; // 0x1 1725*344a7f5eSAndroid Build Coastguard Worker field public static final int AVAILABILITY_PAID_CONTENT = 2; // 0x2 1726*344a7f5eSAndroid Build Coastguard Worker field public static final java.lang.String COLUMN_AUDIO_LANGUAGE = "audio_language"; 1727*344a7f5eSAndroid Build Coastguard Worker field public static final java.lang.String COLUMN_AUTHOR = "author"; 1728*344a7f5eSAndroid Build Coastguard Worker field public static final java.lang.String COLUMN_AVAILABILITY = "availability"; 1729*344a7f5eSAndroid Build Coastguard Worker field public static final java.lang.String COLUMN_BROWSABLE = "browsable"; 1730*344a7f5eSAndroid Build Coastguard Worker field public static final java.lang.String COLUMN_CANONICAL_GENRE = "canonical_genre"; 1731*344a7f5eSAndroid Build Coastguard Worker field public static final java.lang.String COLUMN_CONTENT_ID = "content_id"; 1732*344a7f5eSAndroid Build Coastguard Worker field public static final java.lang.String COLUMN_CONTENT_RATING = "content_rating"; 1733*344a7f5eSAndroid Build Coastguard Worker field public static final java.lang.String COLUMN_DURATION_MILLIS = "duration_millis"; 1734*344a7f5eSAndroid Build Coastguard Worker field public static final java.lang.String COLUMN_EPISODE_DISPLAY_NUMBER = "episode_display_number"; 1735*344a7f5eSAndroid Build Coastguard Worker field public static final java.lang.String COLUMN_EPISODE_TITLE = "episode_title"; 1736*344a7f5eSAndroid Build Coastguard Worker field public static final java.lang.String COLUMN_INTENT_URI = "intent_uri"; 1737*344a7f5eSAndroid Build Coastguard Worker field public static final java.lang.String COLUMN_INTERACTION_COUNT = "interaction_count"; 1738*344a7f5eSAndroid Build Coastguard Worker field public static final java.lang.String COLUMN_INTERACTION_TYPE = "interaction_type"; 1739*344a7f5eSAndroid Build Coastguard Worker field public static final java.lang.String COLUMN_INTERNAL_PROVIDER_DATA = "internal_provider_data"; 1740*344a7f5eSAndroid Build Coastguard Worker field public static final java.lang.String COLUMN_INTERNAL_PROVIDER_FLAG1 = "internal_provider_flag1"; 1741*344a7f5eSAndroid Build Coastguard Worker field public static final java.lang.String COLUMN_INTERNAL_PROVIDER_FLAG2 = "internal_provider_flag2"; 1742*344a7f5eSAndroid Build Coastguard Worker field public static final java.lang.String COLUMN_INTERNAL_PROVIDER_FLAG3 = "internal_provider_flag3"; 1743*344a7f5eSAndroid Build Coastguard Worker field public static final java.lang.String COLUMN_INTERNAL_PROVIDER_FLAG4 = "internal_provider_flag4"; 1744*344a7f5eSAndroid Build Coastguard Worker field public static final java.lang.String COLUMN_INTERNAL_PROVIDER_ID = "internal_provider_id"; 1745*344a7f5eSAndroid Build Coastguard Worker field public static final java.lang.String COLUMN_ITEM_COUNT = "item_count"; 1746*344a7f5eSAndroid Build Coastguard Worker field public static final java.lang.String COLUMN_LAST_ENGAGEMENT_TIME_UTC_MILLIS = "last_engagement_time_utc_millis"; 1747*344a7f5eSAndroid Build Coastguard Worker field public static final java.lang.String COLUMN_LAST_PLAYBACK_POSITION_MILLIS = "last_playback_position_millis"; 1748*344a7f5eSAndroid Build Coastguard Worker field public static final java.lang.String COLUMN_LIVE = "live"; 1749*344a7f5eSAndroid Build Coastguard Worker field public static final java.lang.String COLUMN_LOGO_URI = "logo_uri"; 1750*344a7f5eSAndroid Build Coastguard Worker field public static final java.lang.String COLUMN_LONG_DESCRIPTION = "long_description"; 1751*344a7f5eSAndroid Build Coastguard Worker field public static final java.lang.String COLUMN_OFFER_PRICE = "offer_price"; 1752*344a7f5eSAndroid Build Coastguard Worker field public static final java.lang.String COLUMN_POSTER_ART_ASPECT_RATIO = "poster_art_aspect_ratio"; 1753*344a7f5eSAndroid Build Coastguard Worker field public static final java.lang.String COLUMN_POSTER_ART_URI = "poster_art_uri"; 1754*344a7f5eSAndroid Build Coastguard Worker field public static final java.lang.String COLUMN_PREVIEW_VIDEO_URI = "preview_video_uri"; 1755*344a7f5eSAndroid Build Coastguard Worker field public static final java.lang.String COLUMN_RELEASE_DATE = "release_date"; 1756*344a7f5eSAndroid Build Coastguard Worker field public static final java.lang.String COLUMN_REVIEW_RATING = "review_rating"; 1757*344a7f5eSAndroid Build Coastguard Worker field public static final java.lang.String COLUMN_REVIEW_RATING_STYLE = "review_rating_style"; 1758*344a7f5eSAndroid Build Coastguard Worker field public static final java.lang.String COLUMN_SEARCHABLE = "searchable"; 1759*344a7f5eSAndroid Build Coastguard Worker field public static final java.lang.String COLUMN_SEASON_DISPLAY_NUMBER = "season_display_number"; 1760*344a7f5eSAndroid Build Coastguard Worker field public static final java.lang.String COLUMN_SEASON_TITLE = "season_title"; 1761*344a7f5eSAndroid Build Coastguard Worker field public static final java.lang.String COLUMN_SHORT_DESCRIPTION = "short_description"; 1762*344a7f5eSAndroid Build Coastguard Worker field public static final java.lang.String COLUMN_STARTING_PRICE = "starting_price"; 1763*344a7f5eSAndroid Build Coastguard Worker field public static final java.lang.String COLUMN_THUMBNAIL_ASPECT_RATIO = "poster_thumbnail_aspect_ratio"; 1764*344a7f5eSAndroid Build Coastguard Worker field public static final java.lang.String COLUMN_THUMBNAIL_URI = "thumbnail_uri"; 1765*344a7f5eSAndroid Build Coastguard Worker field public static final java.lang.String COLUMN_TITLE = "title"; 1766*344a7f5eSAndroid Build Coastguard Worker field public static final java.lang.String COLUMN_TRANSIENT = "transient"; 1767*344a7f5eSAndroid Build Coastguard Worker field public static final java.lang.String COLUMN_TYPE = "type"; 1768*344a7f5eSAndroid Build Coastguard Worker field public static final java.lang.String COLUMN_VERSION_NUMBER = "version_number"; 1769*344a7f5eSAndroid Build Coastguard Worker field public static final java.lang.String COLUMN_VIDEO_HEIGHT = "video_height"; 1770*344a7f5eSAndroid Build Coastguard Worker field public static final java.lang.String COLUMN_VIDEO_WIDTH = "video_width"; 1771*344a7f5eSAndroid Build Coastguard Worker field public static final java.lang.String COLUMN_WATCH_NEXT_TYPE = "watch_next_type"; 1772*344a7f5eSAndroid Build Coastguard Worker field public static final java.lang.String CONTENT_ITEM_TYPE = "vnd.android.cursor.item/watch_next_program"; 1773*344a7f5eSAndroid Build Coastguard Worker field public static final java.lang.String CONTENT_TYPE = "vnd.android.cursor.dir/watch_next_program"; 1774*344a7f5eSAndroid Build Coastguard Worker field public static final android.net.Uri CONTENT_URI; 1775*344a7f5eSAndroid Build Coastguard Worker field public static final int INTERACTION_TYPE_FANS = 3; // 0x3 1776*344a7f5eSAndroid Build Coastguard Worker field public static final int INTERACTION_TYPE_FOLLOWERS = 2; // 0x2 1777*344a7f5eSAndroid Build Coastguard Worker field public static final int INTERACTION_TYPE_LIKES = 4; // 0x4 1778*344a7f5eSAndroid Build Coastguard Worker field public static final int INTERACTION_TYPE_LISTENS = 1; // 0x1 1779*344a7f5eSAndroid Build Coastguard Worker field public static final int INTERACTION_TYPE_THUMBS = 5; // 0x5 1780*344a7f5eSAndroid Build Coastguard Worker field public static final int INTERACTION_TYPE_VIEWERS = 6; // 0x6 1781*344a7f5eSAndroid Build Coastguard Worker field public static final int INTERACTION_TYPE_VIEWS = 0; // 0x0 1782*344a7f5eSAndroid Build Coastguard Worker field public static final int REVIEW_RATING_STYLE_PERCENTAGE = 2; // 0x2 1783*344a7f5eSAndroid Build Coastguard Worker field public static final int REVIEW_RATING_STYLE_STARS = 0; // 0x0 1784*344a7f5eSAndroid Build Coastguard Worker field public static final int REVIEW_RATING_STYLE_THUMBS_UP_DOWN = 1; // 0x1 1785*344a7f5eSAndroid Build Coastguard Worker field public static final int TYPE_ALBUM = 8; // 0x8 1786*344a7f5eSAndroid Build Coastguard Worker field public static final int TYPE_ARTIST = 9; // 0x9 1787*344a7f5eSAndroid Build Coastguard Worker field public static final int TYPE_CHANNEL = 6; // 0x6 1788*344a7f5eSAndroid Build Coastguard Worker field public static final int TYPE_CLIP = 4; // 0x4 1789*344a7f5eSAndroid Build Coastguard Worker field public static final int TYPE_EVENT = 5; // 0x5 1790*344a7f5eSAndroid Build Coastguard Worker field public static final int TYPE_MOVIE = 0; // 0x0 1791*344a7f5eSAndroid Build Coastguard Worker field public static final int TYPE_PLAYLIST = 10; // 0xa 1792*344a7f5eSAndroid Build Coastguard Worker field public static final int TYPE_STATION = 11; // 0xb 1793*344a7f5eSAndroid Build Coastguard Worker field public static final int TYPE_TRACK = 7; // 0x7 1794*344a7f5eSAndroid Build Coastguard Worker field public static final int TYPE_TV_EPISODE = 3; // 0x3 1795*344a7f5eSAndroid Build Coastguard Worker field public static final int TYPE_TV_SEASON = 2; // 0x2 1796*344a7f5eSAndroid Build Coastguard Worker field public static final int TYPE_TV_SERIES = 1; // 0x1 1797*344a7f5eSAndroid Build Coastguard Worker field public static final int WATCH_NEXT_TYPE_CONTINUE = 0; // 0x0 1798*344a7f5eSAndroid Build Coastguard Worker field public static final int WATCH_NEXT_TYPE_NEW = 2; // 0x2 1799*344a7f5eSAndroid Build Coastguard Worker field public static final int WATCH_NEXT_TYPE_NEXT = 1; // 0x1 1800*344a7f5eSAndroid Build Coastguard Worker field public static final int WATCH_NEXT_TYPE_WATCHLIST = 3; // 0x3 1801*344a7f5eSAndroid Build Coastguard Worker } 1802*344a7f5eSAndroid Build Coastguard Worker 1803*344a7f5eSAndroid Build Coastguard Worker public final class WatchNextProgram extends android.support.media.tv.BasePreviewProgram { 1804*344a7f5eSAndroid Build Coastguard Worker method public static android.support.media.tv.WatchNextProgram fromCursor(android.database.Cursor); 1805*344a7f5eSAndroid Build Coastguard Worker method public long getLastEngagementTimeUtcMillis(); 1806*344a7f5eSAndroid Build Coastguard Worker method public int getWatchNextType(); 1807*344a7f5eSAndroid Build Coastguard Worker } 1808*344a7f5eSAndroid Build Coastguard Worker 1809*344a7f5eSAndroid Build Coastguard Worker public static final class WatchNextProgram.Builder extends android.support.media.tv.BasePreviewProgram.Builder { 1810*344a7f5eSAndroid Build Coastguard Worker ctor public WatchNextProgram.Builder(); 1811*344a7f5eSAndroid Build Coastguard Worker ctor public WatchNextProgram.Builder(android.support.media.tv.WatchNextProgram); 1812*344a7f5eSAndroid Build Coastguard Worker method public android.support.media.tv.WatchNextProgram build(); 1813*344a7f5eSAndroid Build Coastguard Worker method public android.support.media.tv.WatchNextProgram.Builder setLastEngagementTimeUtcMillis(long); 1814*344a7f5eSAndroid Build Coastguard Worker method public android.support.media.tv.WatchNextProgram.Builder setWatchNextType(int); 1815*344a7f5eSAndroid Build Coastguard Worker } 1816*344a7f5eSAndroid Build Coastguard Worker 1817*344a7f5eSAndroid Build Coastguard Worker} 1818*344a7f5eSAndroid Build Coastguard Worker 1819*344a7f5eSAndroid Build Coastguard Workerpackage android.support.percent { 1820*344a7f5eSAndroid Build Coastguard Worker 1821*344a7f5eSAndroid Build Coastguard Worker public deprecated class PercentFrameLayout extends android.widget.FrameLayout { 1822*344a7f5eSAndroid Build Coastguard Worker ctor public PercentFrameLayout(android.content.Context); 1823*344a7f5eSAndroid Build Coastguard Worker ctor public PercentFrameLayout(android.content.Context, android.util.AttributeSet); 1824*344a7f5eSAndroid Build Coastguard Worker ctor public PercentFrameLayout(android.content.Context, android.util.AttributeSet, int); 1825*344a7f5eSAndroid Build Coastguard Worker } 1826*344a7f5eSAndroid Build Coastguard Worker 1827*344a7f5eSAndroid Build Coastguard Worker public static deprecated class PercentFrameLayout.LayoutParams extends android.widget.FrameLayout.LayoutParams implements android.support.percent.PercentLayoutHelper.PercentLayoutParams { 1828*344a7f5eSAndroid Build Coastguard Worker ctor public PercentFrameLayout.LayoutParams(android.content.Context, android.util.AttributeSet); 1829*344a7f5eSAndroid Build Coastguard Worker ctor public PercentFrameLayout.LayoutParams(int, int); 1830*344a7f5eSAndroid Build Coastguard Worker ctor public PercentFrameLayout.LayoutParams(int, int, int); 1831*344a7f5eSAndroid Build Coastguard Worker ctor public PercentFrameLayout.LayoutParams(android.view.ViewGroup.LayoutParams); 1832*344a7f5eSAndroid Build Coastguard Worker ctor public PercentFrameLayout.LayoutParams(android.view.ViewGroup.MarginLayoutParams); 1833*344a7f5eSAndroid Build Coastguard Worker ctor public PercentFrameLayout.LayoutParams(android.widget.FrameLayout.LayoutParams); 1834*344a7f5eSAndroid Build Coastguard Worker ctor public PercentFrameLayout.LayoutParams(android.support.percent.PercentFrameLayout.LayoutParams); 1835*344a7f5eSAndroid Build Coastguard Worker method public android.support.percent.PercentLayoutHelper.PercentLayoutInfo getPercentLayoutInfo(); 1836*344a7f5eSAndroid Build Coastguard Worker } 1837*344a7f5eSAndroid Build Coastguard Worker 1838*344a7f5eSAndroid Build Coastguard Worker public deprecated class PercentLayoutHelper { 1839*344a7f5eSAndroid Build Coastguard Worker ctor public PercentLayoutHelper(android.view.ViewGroup); 1840*344a7f5eSAndroid Build Coastguard Worker method public void adjustChildren(int, int); 1841*344a7f5eSAndroid Build Coastguard Worker method public static void fetchWidthAndHeight(android.view.ViewGroup.LayoutParams, android.content.res.TypedArray, int, int); 1842*344a7f5eSAndroid Build Coastguard Worker method public static android.support.percent.PercentLayoutHelper.PercentLayoutInfo getPercentLayoutInfo(android.content.Context, android.util.AttributeSet); 1843*344a7f5eSAndroid Build Coastguard Worker method public boolean handleMeasuredStateTooSmall(); 1844*344a7f5eSAndroid Build Coastguard Worker method public void restoreOriginalParams(); 1845*344a7f5eSAndroid Build Coastguard Worker } 1846*344a7f5eSAndroid Build Coastguard Worker 1847*344a7f5eSAndroid Build Coastguard Worker public static deprecated class PercentLayoutHelper.PercentLayoutInfo { 1848*344a7f5eSAndroid Build Coastguard Worker ctor public PercentLayoutHelper.PercentLayoutInfo(); 1849*344a7f5eSAndroid Build Coastguard Worker method public void fillLayoutParams(android.view.ViewGroup.LayoutParams, int, int); 1850*344a7f5eSAndroid Build Coastguard Worker method public deprecated void fillMarginLayoutParams(android.view.ViewGroup.MarginLayoutParams, int, int); 1851*344a7f5eSAndroid Build Coastguard Worker method public void fillMarginLayoutParams(android.view.View, android.view.ViewGroup.MarginLayoutParams, int, int); 1852*344a7f5eSAndroid Build Coastguard Worker method public void restoreLayoutParams(android.view.ViewGroup.LayoutParams); 1853*344a7f5eSAndroid Build Coastguard Worker method public void restoreMarginLayoutParams(android.view.ViewGroup.MarginLayoutParams); 1854*344a7f5eSAndroid Build Coastguard Worker field public float aspectRatio; 1855*344a7f5eSAndroid Build Coastguard Worker field public float bottomMarginPercent; 1856*344a7f5eSAndroid Build Coastguard Worker field public float endMarginPercent; 1857*344a7f5eSAndroid Build Coastguard Worker field public float heightPercent; 1858*344a7f5eSAndroid Build Coastguard Worker field public float leftMarginPercent; 1859*344a7f5eSAndroid Build Coastguard Worker field public float rightMarginPercent; 1860*344a7f5eSAndroid Build Coastguard Worker field public float startMarginPercent; 1861*344a7f5eSAndroid Build Coastguard Worker field public float topMarginPercent; 1862*344a7f5eSAndroid Build Coastguard Worker field public float widthPercent; 1863*344a7f5eSAndroid Build Coastguard Worker } 1864*344a7f5eSAndroid Build Coastguard Worker 1865*344a7f5eSAndroid Build Coastguard Worker public static abstract deprecated interface PercentLayoutHelper.PercentLayoutParams { 1866*344a7f5eSAndroid Build Coastguard Worker method public abstract android.support.percent.PercentLayoutHelper.PercentLayoutInfo getPercentLayoutInfo(); 1867*344a7f5eSAndroid Build Coastguard Worker } 1868*344a7f5eSAndroid Build Coastguard Worker 1869*344a7f5eSAndroid Build Coastguard Worker public deprecated class PercentRelativeLayout extends android.widget.RelativeLayout { 1870*344a7f5eSAndroid Build Coastguard Worker ctor public PercentRelativeLayout(android.content.Context); 1871*344a7f5eSAndroid Build Coastguard Worker ctor public PercentRelativeLayout(android.content.Context, android.util.AttributeSet); 1872*344a7f5eSAndroid Build Coastguard Worker ctor public PercentRelativeLayout(android.content.Context, android.util.AttributeSet, int); 1873*344a7f5eSAndroid Build Coastguard Worker } 1874*344a7f5eSAndroid Build Coastguard Worker 1875*344a7f5eSAndroid Build Coastguard Worker public static deprecated class PercentRelativeLayout.LayoutParams extends android.widget.RelativeLayout.LayoutParams implements android.support.percent.PercentLayoutHelper.PercentLayoutParams { 1876*344a7f5eSAndroid Build Coastguard Worker ctor public PercentRelativeLayout.LayoutParams(android.content.Context, android.util.AttributeSet); 1877*344a7f5eSAndroid Build Coastguard Worker ctor public PercentRelativeLayout.LayoutParams(int, int); 1878*344a7f5eSAndroid Build Coastguard Worker ctor public PercentRelativeLayout.LayoutParams(android.view.ViewGroup.LayoutParams); 1879*344a7f5eSAndroid Build Coastguard Worker ctor public PercentRelativeLayout.LayoutParams(android.view.ViewGroup.MarginLayoutParams); 1880*344a7f5eSAndroid Build Coastguard Worker method public android.support.percent.PercentLayoutHelper.PercentLayoutInfo getPercentLayoutInfo(); 1881*344a7f5eSAndroid Build Coastguard Worker } 1882*344a7f5eSAndroid Build Coastguard Worker 1883*344a7f5eSAndroid Build Coastguard Worker} 1884*344a7f5eSAndroid Build Coastguard Worker 1885*344a7f5eSAndroid Build Coastguard Workerpackage android.support.text.emoji { 1886*344a7f5eSAndroid Build Coastguard Worker 1887*344a7f5eSAndroid Build Coastguard Worker public class EmojiCompat { 1888*344a7f5eSAndroid Build Coastguard Worker method public static android.support.text.emoji.EmojiCompat get(); 1889*344a7f5eSAndroid Build Coastguard Worker method public int getLoadState(); 1890*344a7f5eSAndroid Build Coastguard Worker method public static boolean handleDeleteSurroundingText(android.view.inputmethod.InputConnection, android.text.Editable, int, int, boolean); 1891*344a7f5eSAndroid Build Coastguard Worker method public static boolean handleOnKeyDown(android.text.Editable, int, android.view.KeyEvent); 1892*344a7f5eSAndroid Build Coastguard Worker method public boolean hasEmojiGlyph(java.lang.CharSequence); 1893*344a7f5eSAndroid Build Coastguard Worker method public boolean hasEmojiGlyph(java.lang.CharSequence, int); 1894*344a7f5eSAndroid Build Coastguard Worker method public static android.support.text.emoji.EmojiCompat init(android.support.text.emoji.EmojiCompat.Config); 1895*344a7f5eSAndroid Build Coastguard Worker method public java.lang.CharSequence process(java.lang.CharSequence); 1896*344a7f5eSAndroid Build Coastguard Worker method public java.lang.CharSequence process(java.lang.CharSequence, int, int); 1897*344a7f5eSAndroid Build Coastguard Worker method public java.lang.CharSequence process(java.lang.CharSequence, int, int, int); 1898*344a7f5eSAndroid Build Coastguard Worker method public java.lang.CharSequence process(java.lang.CharSequence, int, int, int, int); 1899*344a7f5eSAndroid Build Coastguard Worker method public void registerInitCallback(android.support.text.emoji.EmojiCompat.InitCallback); 1900*344a7f5eSAndroid Build Coastguard Worker method public void unregisterInitCallback(android.support.text.emoji.EmojiCompat.InitCallback); 1901*344a7f5eSAndroid Build Coastguard Worker field public static final java.lang.String EDITOR_INFO_METAVERSION_KEY = "android.support.text.emoji.emojiCompat_metadataVersion"; 1902*344a7f5eSAndroid Build Coastguard Worker field public static final java.lang.String EDITOR_INFO_REPLACE_ALL_KEY = "android.support.text.emoji.emojiCompat_replaceAll"; 1903*344a7f5eSAndroid Build Coastguard Worker field public static final int LOAD_STATE_FAILED = 2; // 0x2 1904*344a7f5eSAndroid Build Coastguard Worker field public static final deprecated int LOAD_STATE_FAILURE = 2; // 0x2 1905*344a7f5eSAndroid Build Coastguard Worker field public static final int LOAD_STATE_LOADING = 0; // 0x0 1906*344a7f5eSAndroid Build Coastguard Worker field public static final int LOAD_STATE_SUCCEEDED = 1; // 0x1 1907*344a7f5eSAndroid Build Coastguard Worker field public static final deprecated int LOAD_STATE_SUCCESS = 1; // 0x1 1908*344a7f5eSAndroid Build Coastguard Worker field public static final int REPLACE_STRATEGY_ALL = 1; // 0x1 1909*344a7f5eSAndroid Build Coastguard Worker field public static final int REPLACE_STRATEGY_DEFAULT = 0; // 0x0 1910*344a7f5eSAndroid Build Coastguard Worker field public static final int REPLACE_STRATEGY_NON_EXISTENT = 2; // 0x2 1911*344a7f5eSAndroid Build Coastguard Worker } 1912*344a7f5eSAndroid Build Coastguard Worker 1913*344a7f5eSAndroid Build Coastguard Worker public static abstract class EmojiCompat.Config { 1914*344a7f5eSAndroid Build Coastguard Worker ctor protected EmojiCompat.Config(android.support.text.emoji.EmojiCompat.MetadataLoader); 1915*344a7f5eSAndroid Build Coastguard Worker method public android.support.text.emoji.EmojiCompat.Config registerInitCallback(android.support.text.emoji.EmojiCompat.InitCallback); 1916*344a7f5eSAndroid Build Coastguard Worker method public android.support.text.emoji.EmojiCompat.Config setEmojiSpanIndicatorColor(int); 1917*344a7f5eSAndroid Build Coastguard Worker method public android.support.text.emoji.EmojiCompat.Config setEmojiSpanIndicatorEnabled(boolean); 1918*344a7f5eSAndroid Build Coastguard Worker method public android.support.text.emoji.EmojiCompat.Config setReplaceAll(boolean); 1919*344a7f5eSAndroid Build Coastguard Worker method public android.support.text.emoji.EmojiCompat.Config unregisterInitCallback(android.support.text.emoji.EmojiCompat.InitCallback); 1920*344a7f5eSAndroid Build Coastguard Worker } 1921*344a7f5eSAndroid Build Coastguard Worker 1922*344a7f5eSAndroid Build Coastguard Worker public static abstract class EmojiCompat.InitCallback { 1923*344a7f5eSAndroid Build Coastguard Worker ctor public EmojiCompat.InitCallback(); 1924*344a7f5eSAndroid Build Coastguard Worker method public void onFailed(java.lang.Throwable); 1925*344a7f5eSAndroid Build Coastguard Worker method public void onInitialized(); 1926*344a7f5eSAndroid Build Coastguard Worker } 1927*344a7f5eSAndroid Build Coastguard Worker 1928*344a7f5eSAndroid Build Coastguard Worker public static abstract class EmojiCompat.LoaderCallback { 1929*344a7f5eSAndroid Build Coastguard Worker ctor public EmojiCompat.LoaderCallback(); 1930*344a7f5eSAndroid Build Coastguard Worker method public abstract void onFailed(java.lang.Throwable); 1931*344a7f5eSAndroid Build Coastguard Worker method public abstract void onLoaded(android.support.text.emoji.MetadataRepo); 1932*344a7f5eSAndroid Build Coastguard Worker } 1933*344a7f5eSAndroid Build Coastguard Worker 1934*344a7f5eSAndroid Build Coastguard Worker public static abstract interface EmojiCompat.MetadataLoader { 1935*344a7f5eSAndroid Build Coastguard Worker method public abstract void load(android.support.text.emoji.EmojiCompat.LoaderCallback); 1936*344a7f5eSAndroid Build Coastguard Worker } 1937*344a7f5eSAndroid Build Coastguard Worker 1938*344a7f5eSAndroid Build Coastguard Worker public abstract class EmojiSpan extends android.text.style.ReplacementSpan { 1939*344a7f5eSAndroid Build Coastguard Worker method public int getSize(android.graphics.Paint, java.lang.CharSequence, int, int, android.graphics.Paint.FontMetricsInt); 1940*344a7f5eSAndroid Build Coastguard Worker } 1941*344a7f5eSAndroid Build Coastguard Worker 1942*344a7f5eSAndroid Build Coastguard Worker public class FontRequestEmojiCompatConfig extends android.support.text.emoji.EmojiCompat.Config { 1943*344a7f5eSAndroid Build Coastguard Worker ctor public FontRequestEmojiCompatConfig(android.content.Context, android.support.v4.provider.FontRequest); 1944*344a7f5eSAndroid Build Coastguard Worker } 1945*344a7f5eSAndroid Build Coastguard Worker 1946*344a7f5eSAndroid Build Coastguard Worker public final class MetadataRepo { 1947*344a7f5eSAndroid Build Coastguard Worker method public static android.support.text.emoji.MetadataRepo create(android.graphics.Typeface, java.io.InputStream) throws java.io.IOException; 1948*344a7f5eSAndroid Build Coastguard Worker method public static android.support.text.emoji.MetadataRepo create(android.graphics.Typeface, java.nio.ByteBuffer) throws java.io.IOException; 1949*344a7f5eSAndroid Build Coastguard Worker method public static android.support.text.emoji.MetadataRepo create(android.content.res.AssetManager, java.lang.String) throws java.io.IOException; 1950*344a7f5eSAndroid Build Coastguard Worker } 1951*344a7f5eSAndroid Build Coastguard Worker 1952*344a7f5eSAndroid Build Coastguard Worker} 1953*344a7f5eSAndroid Build Coastguard Worker 1954*344a7f5eSAndroid Build Coastguard Workerpackage android.support.text.emoji.bundled { 1955*344a7f5eSAndroid Build Coastguard Worker 1956*344a7f5eSAndroid Build Coastguard Worker public class BundledEmojiCompatConfig extends android.support.text.emoji.EmojiCompat.Config { 1957*344a7f5eSAndroid Build Coastguard Worker ctor public BundledEmojiCompatConfig(android.content.Context); 1958*344a7f5eSAndroid Build Coastguard Worker } 1959*344a7f5eSAndroid Build Coastguard Worker 1960*344a7f5eSAndroid Build Coastguard Worker} 1961*344a7f5eSAndroid Build Coastguard Worker 1962*344a7f5eSAndroid Build Coastguard Workerpackage android.support.text.emoji.widget { 1963*344a7f5eSAndroid Build Coastguard Worker 1964*344a7f5eSAndroid Build Coastguard Worker public class EmojiAppCompatButton extends android.support.v7.widget.AppCompatButton { 1965*344a7f5eSAndroid Build Coastguard Worker ctor public EmojiAppCompatButton(android.content.Context); 1966*344a7f5eSAndroid Build Coastguard Worker ctor public EmojiAppCompatButton(android.content.Context, android.util.AttributeSet); 1967*344a7f5eSAndroid Build Coastguard Worker ctor public EmojiAppCompatButton(android.content.Context, android.util.AttributeSet, int); 1968*344a7f5eSAndroid Build Coastguard Worker } 1969*344a7f5eSAndroid Build Coastguard Worker 1970*344a7f5eSAndroid Build Coastguard Worker public class EmojiAppCompatEditText extends android.support.v7.widget.AppCompatEditText { 1971*344a7f5eSAndroid Build Coastguard Worker ctor public EmojiAppCompatEditText(android.content.Context); 1972*344a7f5eSAndroid Build Coastguard Worker ctor public EmojiAppCompatEditText(android.content.Context, android.util.AttributeSet); 1973*344a7f5eSAndroid Build Coastguard Worker ctor public EmojiAppCompatEditText(android.content.Context, android.util.AttributeSet, int); 1974*344a7f5eSAndroid Build Coastguard Worker method public int getMaxEmojiCount(); 1975*344a7f5eSAndroid Build Coastguard Worker method public void setMaxEmojiCount(int); 1976*344a7f5eSAndroid Build Coastguard Worker } 1977*344a7f5eSAndroid Build Coastguard Worker 1978*344a7f5eSAndroid Build Coastguard Worker public class EmojiAppCompatTextView extends android.support.v7.widget.AppCompatTextView { 1979*344a7f5eSAndroid Build Coastguard Worker ctor public EmojiAppCompatTextView(android.content.Context); 1980*344a7f5eSAndroid Build Coastguard Worker ctor public EmojiAppCompatTextView(android.content.Context, android.util.AttributeSet); 1981*344a7f5eSAndroid Build Coastguard Worker ctor public EmojiAppCompatTextView(android.content.Context, android.util.AttributeSet, int); 1982*344a7f5eSAndroid Build Coastguard Worker } 1983*344a7f5eSAndroid Build Coastguard Worker 1984*344a7f5eSAndroid Build Coastguard Worker public class EmojiButton extends android.widget.Button { 1985*344a7f5eSAndroid Build Coastguard Worker ctor public EmojiButton(android.content.Context); 1986*344a7f5eSAndroid Build Coastguard Worker ctor public EmojiButton(android.content.Context, android.util.AttributeSet); 1987*344a7f5eSAndroid Build Coastguard Worker ctor public EmojiButton(android.content.Context, android.util.AttributeSet, int); 1988*344a7f5eSAndroid Build Coastguard Worker ctor public EmojiButton(android.content.Context, android.util.AttributeSet, int, int); 1989*344a7f5eSAndroid Build Coastguard Worker } 1990*344a7f5eSAndroid Build Coastguard Worker 1991*344a7f5eSAndroid Build Coastguard Worker public class EmojiEditText extends android.widget.EditText { 1992*344a7f5eSAndroid Build Coastguard Worker ctor public EmojiEditText(android.content.Context); 1993*344a7f5eSAndroid Build Coastguard Worker ctor public EmojiEditText(android.content.Context, android.util.AttributeSet); 1994*344a7f5eSAndroid Build Coastguard Worker ctor public EmojiEditText(android.content.Context, android.util.AttributeSet, int); 1995*344a7f5eSAndroid Build Coastguard Worker ctor public EmojiEditText(android.content.Context, android.util.AttributeSet, int, int); 1996*344a7f5eSAndroid Build Coastguard Worker method public int getMaxEmojiCount(); 1997*344a7f5eSAndroid Build Coastguard Worker method public void setMaxEmojiCount(int); 1998*344a7f5eSAndroid Build Coastguard Worker } 1999*344a7f5eSAndroid Build Coastguard Worker 2000*344a7f5eSAndroid Build Coastguard Worker public final class EmojiEditTextHelper { 2001*344a7f5eSAndroid Build Coastguard Worker ctor public EmojiEditTextHelper(android.widget.EditText); 2002*344a7f5eSAndroid Build Coastguard Worker method public android.text.method.KeyListener getKeyListener(android.text.method.KeyListener); 2003*344a7f5eSAndroid Build Coastguard Worker method public int getMaxEmojiCount(); 2004*344a7f5eSAndroid Build Coastguard Worker method public android.view.inputmethod.InputConnection onCreateInputConnection(android.view.inputmethod.InputConnection, android.view.inputmethod.EditorInfo); 2005*344a7f5eSAndroid Build Coastguard Worker method public void setMaxEmojiCount(int); 2006*344a7f5eSAndroid Build Coastguard Worker } 2007*344a7f5eSAndroid Build Coastguard Worker 2008*344a7f5eSAndroid Build Coastguard Worker public class EmojiTextView extends android.widget.TextView { 2009*344a7f5eSAndroid Build Coastguard Worker ctor public EmojiTextView(android.content.Context); 2010*344a7f5eSAndroid Build Coastguard Worker ctor public EmojiTextView(android.content.Context, android.util.AttributeSet); 2011*344a7f5eSAndroid Build Coastguard Worker ctor public EmojiTextView(android.content.Context, android.util.AttributeSet, int); 2012*344a7f5eSAndroid Build Coastguard Worker ctor public EmojiTextView(android.content.Context, android.util.AttributeSet, int, int); 2013*344a7f5eSAndroid Build Coastguard Worker } 2014*344a7f5eSAndroid Build Coastguard Worker 2015*344a7f5eSAndroid Build Coastguard Worker public final class EmojiTextViewHelper { 2016*344a7f5eSAndroid Build Coastguard Worker ctor public EmojiTextViewHelper(android.widget.TextView); 2017*344a7f5eSAndroid Build Coastguard Worker method public android.text.InputFilter[] getFilters(android.text.InputFilter[]); 2018*344a7f5eSAndroid Build Coastguard Worker method public void setAllCaps(boolean); 2019*344a7f5eSAndroid Build Coastguard Worker method public void updateTransformationMethod(); 2020*344a7f5eSAndroid Build Coastguard Worker method public android.text.method.TransformationMethod wrapTransformationMethod(android.text.method.TransformationMethod); 2021*344a7f5eSAndroid Build Coastguard Worker } 2022*344a7f5eSAndroid Build Coastguard Worker 2023*344a7f5eSAndroid Build Coastguard Worker} 2024*344a7f5eSAndroid Build Coastguard Worker 2025*344a7f5eSAndroid Build Coastguard Workerpackage android.support.transition { 2026*344a7f5eSAndroid Build Coastguard Worker 2027*344a7f5eSAndroid Build Coastguard Worker public class ArcMotion extends android.support.transition.PathMotion { 2028*344a7f5eSAndroid Build Coastguard Worker ctor public ArcMotion(); 2029*344a7f5eSAndroid Build Coastguard Worker ctor public ArcMotion(android.content.Context, android.util.AttributeSet); 2030*344a7f5eSAndroid Build Coastguard Worker method public float getMaximumAngle(); 2031*344a7f5eSAndroid Build Coastguard Worker method public float getMinimumHorizontalAngle(); 2032*344a7f5eSAndroid Build Coastguard Worker method public float getMinimumVerticalAngle(); 2033*344a7f5eSAndroid Build Coastguard Worker method public android.graphics.Path getPath(float, float, float, float); 2034*344a7f5eSAndroid Build Coastguard Worker method public void setMaximumAngle(float); 2035*344a7f5eSAndroid Build Coastguard Worker method public void setMinimumHorizontalAngle(float); 2036*344a7f5eSAndroid Build Coastguard Worker method public void setMinimumVerticalAngle(float); 2037*344a7f5eSAndroid Build Coastguard Worker } 2038*344a7f5eSAndroid Build Coastguard Worker 2039*344a7f5eSAndroid Build Coastguard Worker public class AutoTransition extends android.support.transition.TransitionSet { 2040*344a7f5eSAndroid Build Coastguard Worker ctor public AutoTransition(); 2041*344a7f5eSAndroid Build Coastguard Worker ctor public AutoTransition(android.content.Context, android.util.AttributeSet); 2042*344a7f5eSAndroid Build Coastguard Worker } 2043*344a7f5eSAndroid Build Coastguard Worker 2044*344a7f5eSAndroid Build Coastguard Worker public class ChangeBounds extends android.support.transition.Transition { 2045*344a7f5eSAndroid Build Coastguard Worker ctor public ChangeBounds(); 2046*344a7f5eSAndroid Build Coastguard Worker ctor public ChangeBounds(android.content.Context, android.util.AttributeSet); 2047*344a7f5eSAndroid Build Coastguard Worker method public void captureEndValues(android.support.transition.TransitionValues); 2048*344a7f5eSAndroid Build Coastguard Worker method public void captureStartValues(android.support.transition.TransitionValues); 2049*344a7f5eSAndroid Build Coastguard Worker method public boolean getResizeClip(); 2050*344a7f5eSAndroid Build Coastguard Worker method public void setResizeClip(boolean); 2051*344a7f5eSAndroid Build Coastguard Worker } 2052*344a7f5eSAndroid Build Coastguard Worker 2053*344a7f5eSAndroid Build Coastguard Worker public class ChangeClipBounds extends android.support.transition.Transition { 2054*344a7f5eSAndroid Build Coastguard Worker ctor public ChangeClipBounds(); 2055*344a7f5eSAndroid Build Coastguard Worker ctor public ChangeClipBounds(android.content.Context, android.util.AttributeSet); 2056*344a7f5eSAndroid Build Coastguard Worker method public void captureEndValues(android.support.transition.TransitionValues); 2057*344a7f5eSAndroid Build Coastguard Worker method public void captureStartValues(android.support.transition.TransitionValues); 2058*344a7f5eSAndroid Build Coastguard Worker } 2059*344a7f5eSAndroid Build Coastguard Worker 2060*344a7f5eSAndroid Build Coastguard Worker public class ChangeImageTransform extends android.support.transition.Transition { 2061*344a7f5eSAndroid Build Coastguard Worker ctor public ChangeImageTransform(); 2062*344a7f5eSAndroid Build Coastguard Worker ctor public ChangeImageTransform(android.content.Context, android.util.AttributeSet); 2063*344a7f5eSAndroid Build Coastguard Worker method public void captureEndValues(android.support.transition.TransitionValues); 2064*344a7f5eSAndroid Build Coastguard Worker method public void captureStartValues(android.support.transition.TransitionValues); 2065*344a7f5eSAndroid Build Coastguard Worker } 2066*344a7f5eSAndroid Build Coastguard Worker 2067*344a7f5eSAndroid Build Coastguard Worker public class ChangeScroll extends android.support.transition.Transition { 2068*344a7f5eSAndroid Build Coastguard Worker ctor public ChangeScroll(); 2069*344a7f5eSAndroid Build Coastguard Worker ctor public ChangeScroll(android.content.Context, android.util.AttributeSet); 2070*344a7f5eSAndroid Build Coastguard Worker method public void captureEndValues(android.support.transition.TransitionValues); 2071*344a7f5eSAndroid Build Coastguard Worker method public void captureStartValues(android.support.transition.TransitionValues); 2072*344a7f5eSAndroid Build Coastguard Worker } 2073*344a7f5eSAndroid Build Coastguard Worker 2074*344a7f5eSAndroid Build Coastguard Worker public class ChangeTransform extends android.support.transition.Transition { 2075*344a7f5eSAndroid Build Coastguard Worker ctor public ChangeTransform(); 2076*344a7f5eSAndroid Build Coastguard Worker ctor public ChangeTransform(android.content.Context, android.util.AttributeSet); 2077*344a7f5eSAndroid Build Coastguard Worker method public void captureEndValues(android.support.transition.TransitionValues); 2078*344a7f5eSAndroid Build Coastguard Worker method public void captureStartValues(android.support.transition.TransitionValues); 2079*344a7f5eSAndroid Build Coastguard Worker method public boolean getReparent(); 2080*344a7f5eSAndroid Build Coastguard Worker method public boolean getReparentWithOverlay(); 2081*344a7f5eSAndroid Build Coastguard Worker method public void setReparent(boolean); 2082*344a7f5eSAndroid Build Coastguard Worker method public void setReparentWithOverlay(boolean); 2083*344a7f5eSAndroid Build Coastguard Worker } 2084*344a7f5eSAndroid Build Coastguard Worker 2085*344a7f5eSAndroid Build Coastguard Worker public class CircularPropagation extends android.support.transition.VisibilityPropagation { 2086*344a7f5eSAndroid Build Coastguard Worker ctor public CircularPropagation(); 2087*344a7f5eSAndroid Build Coastguard Worker method public long getStartDelay(android.view.ViewGroup, android.support.transition.Transition, android.support.transition.TransitionValues, android.support.transition.TransitionValues); 2088*344a7f5eSAndroid Build Coastguard Worker method public void setPropagationSpeed(float); 2089*344a7f5eSAndroid Build Coastguard Worker } 2090*344a7f5eSAndroid Build Coastguard Worker 2091*344a7f5eSAndroid Build Coastguard Worker public class Explode extends android.support.transition.Visibility { 2092*344a7f5eSAndroid Build Coastguard Worker ctor public Explode(); 2093*344a7f5eSAndroid Build Coastguard Worker ctor public Explode(android.content.Context, android.util.AttributeSet); 2094*344a7f5eSAndroid Build Coastguard Worker } 2095*344a7f5eSAndroid Build Coastguard Worker 2096*344a7f5eSAndroid Build Coastguard Worker public class Fade extends android.support.transition.Visibility { 2097*344a7f5eSAndroid Build Coastguard Worker ctor public Fade(int); 2098*344a7f5eSAndroid Build Coastguard Worker ctor public Fade(); 2099*344a7f5eSAndroid Build Coastguard Worker ctor public Fade(android.content.Context, android.util.AttributeSet); 2100*344a7f5eSAndroid Build Coastguard Worker field public static final int IN = 1; // 0x1 2101*344a7f5eSAndroid Build Coastguard Worker field public static final int OUT = 2; // 0x2 2102*344a7f5eSAndroid Build Coastguard Worker } 2103*344a7f5eSAndroid Build Coastguard Worker 2104*344a7f5eSAndroid Build Coastguard Worker public abstract class PathMotion { 2105*344a7f5eSAndroid Build Coastguard Worker ctor public PathMotion(); 2106*344a7f5eSAndroid Build Coastguard Worker ctor public PathMotion(android.content.Context, android.util.AttributeSet); 2107*344a7f5eSAndroid Build Coastguard Worker method public abstract android.graphics.Path getPath(float, float, float, float); 2108*344a7f5eSAndroid Build Coastguard Worker } 2109*344a7f5eSAndroid Build Coastguard Worker 2110*344a7f5eSAndroid Build Coastguard Worker public class PatternPathMotion extends android.support.transition.PathMotion { 2111*344a7f5eSAndroid Build Coastguard Worker ctor public PatternPathMotion(); 2112*344a7f5eSAndroid Build Coastguard Worker ctor public PatternPathMotion(android.content.Context, android.util.AttributeSet); 2113*344a7f5eSAndroid Build Coastguard Worker ctor public PatternPathMotion(android.graphics.Path); 2114*344a7f5eSAndroid Build Coastguard Worker method public android.graphics.Path getPath(float, float, float, float); 2115*344a7f5eSAndroid Build Coastguard Worker method public android.graphics.Path getPatternPath(); 2116*344a7f5eSAndroid Build Coastguard Worker method public void setPatternPath(android.graphics.Path); 2117*344a7f5eSAndroid Build Coastguard Worker } 2118*344a7f5eSAndroid Build Coastguard Worker 2119*344a7f5eSAndroid Build Coastguard Worker public class Scene { 2120*344a7f5eSAndroid Build Coastguard Worker ctor public Scene(android.view.ViewGroup); 2121*344a7f5eSAndroid Build Coastguard Worker ctor public Scene(android.view.ViewGroup, android.view.View); 2122*344a7f5eSAndroid Build Coastguard Worker method public void enter(); 2123*344a7f5eSAndroid Build Coastguard Worker method public void exit(); 2124*344a7f5eSAndroid Build Coastguard Worker method public static android.support.transition.Scene getSceneForLayout(android.view.ViewGroup, int, android.content.Context); 2125*344a7f5eSAndroid Build Coastguard Worker method public android.view.ViewGroup getSceneRoot(); 2126*344a7f5eSAndroid Build Coastguard Worker method public void setEnterAction(java.lang.Runnable); 2127*344a7f5eSAndroid Build Coastguard Worker method public void setExitAction(java.lang.Runnable); 2128*344a7f5eSAndroid Build Coastguard Worker } 2129*344a7f5eSAndroid Build Coastguard Worker 2130*344a7f5eSAndroid Build Coastguard Worker public class SidePropagation extends android.support.transition.VisibilityPropagation { 2131*344a7f5eSAndroid Build Coastguard Worker ctor public SidePropagation(); 2132*344a7f5eSAndroid Build Coastguard Worker method public long getStartDelay(android.view.ViewGroup, android.support.transition.Transition, android.support.transition.TransitionValues, android.support.transition.TransitionValues); 2133*344a7f5eSAndroid Build Coastguard Worker method public void setPropagationSpeed(float); 2134*344a7f5eSAndroid Build Coastguard Worker method public void setSide(int); 2135*344a7f5eSAndroid Build Coastguard Worker } 2136*344a7f5eSAndroid Build Coastguard Worker 2137*344a7f5eSAndroid Build Coastguard Worker public class Slide extends android.support.transition.Visibility { 2138*344a7f5eSAndroid Build Coastguard Worker ctor public Slide(); 2139*344a7f5eSAndroid Build Coastguard Worker ctor public Slide(int); 2140*344a7f5eSAndroid Build Coastguard Worker ctor public Slide(android.content.Context, android.util.AttributeSet); 2141*344a7f5eSAndroid Build Coastguard Worker method public int getSlideEdge(); 2142*344a7f5eSAndroid Build Coastguard Worker method public void setSlideEdge(int); 2143*344a7f5eSAndroid Build Coastguard Worker } 2144*344a7f5eSAndroid Build Coastguard Worker 2145*344a7f5eSAndroid Build Coastguard Worker public abstract class Transition { 2146*344a7f5eSAndroid Build Coastguard Worker ctor public Transition(); 2147*344a7f5eSAndroid Build Coastguard Worker ctor public Transition(android.content.Context, android.util.AttributeSet); 2148*344a7f5eSAndroid Build Coastguard Worker method public android.support.transition.Transition addListener(android.support.transition.Transition.TransitionListener); 2149*344a7f5eSAndroid Build Coastguard Worker method public android.support.transition.Transition addTarget(android.view.View); 2150*344a7f5eSAndroid Build Coastguard Worker method public android.support.transition.Transition addTarget(int); 2151*344a7f5eSAndroid Build Coastguard Worker method public android.support.transition.Transition addTarget(java.lang.String); 2152*344a7f5eSAndroid Build Coastguard Worker method public android.support.transition.Transition addTarget(java.lang.Class); 2153*344a7f5eSAndroid Build Coastguard Worker method public abstract void captureEndValues(android.support.transition.TransitionValues); 2154*344a7f5eSAndroid Build Coastguard Worker method public abstract void captureStartValues(android.support.transition.TransitionValues); 2155*344a7f5eSAndroid Build Coastguard Worker method public android.support.transition.Transition clone(); 2156*344a7f5eSAndroid Build Coastguard Worker method public android.animation.Animator createAnimator(android.view.ViewGroup, android.support.transition.TransitionValues, android.support.transition.TransitionValues); 2157*344a7f5eSAndroid Build Coastguard Worker method public android.support.transition.Transition excludeChildren(android.view.View, boolean); 2158*344a7f5eSAndroid Build Coastguard Worker method public android.support.transition.Transition excludeChildren(int, boolean); 2159*344a7f5eSAndroid Build Coastguard Worker method public android.support.transition.Transition excludeChildren(java.lang.Class, boolean); 2160*344a7f5eSAndroid Build Coastguard Worker method public android.support.transition.Transition excludeTarget(android.view.View, boolean); 2161*344a7f5eSAndroid Build Coastguard Worker method public android.support.transition.Transition excludeTarget(int, boolean); 2162*344a7f5eSAndroid Build Coastguard Worker method public android.support.transition.Transition excludeTarget(java.lang.String, boolean); 2163*344a7f5eSAndroid Build Coastguard Worker method public android.support.transition.Transition excludeTarget(java.lang.Class, boolean); 2164*344a7f5eSAndroid Build Coastguard Worker method public long getDuration(); 2165*344a7f5eSAndroid Build Coastguard Worker method public android.graphics.Rect getEpicenter(); 2166*344a7f5eSAndroid Build Coastguard Worker method public android.support.transition.Transition.EpicenterCallback getEpicenterCallback(); 2167*344a7f5eSAndroid Build Coastguard Worker method public android.animation.TimeInterpolator getInterpolator(); 2168*344a7f5eSAndroid Build Coastguard Worker method public java.lang.String getName(); 2169*344a7f5eSAndroid Build Coastguard Worker method public android.support.transition.PathMotion getPathMotion(); 2170*344a7f5eSAndroid Build Coastguard Worker method public android.support.transition.TransitionPropagation getPropagation(); 2171*344a7f5eSAndroid Build Coastguard Worker method public long getStartDelay(); 2172*344a7f5eSAndroid Build Coastguard Worker method public java.util.List<java.lang.Integer> getTargetIds(); 2173*344a7f5eSAndroid Build Coastguard Worker method public java.util.List<java.lang.String> getTargetNames(); 2174*344a7f5eSAndroid Build Coastguard Worker method public java.util.List<java.lang.Class> getTargetTypes(); 2175*344a7f5eSAndroid Build Coastguard Worker method public java.util.List<android.view.View> getTargets(); 2176*344a7f5eSAndroid Build Coastguard Worker method public java.lang.String[] getTransitionProperties(); 2177*344a7f5eSAndroid Build Coastguard Worker method public android.support.transition.TransitionValues getTransitionValues(android.view.View, boolean); 2178*344a7f5eSAndroid Build Coastguard Worker method public boolean isTransitionRequired(android.support.transition.TransitionValues, android.support.transition.TransitionValues); 2179*344a7f5eSAndroid Build Coastguard Worker method public android.support.transition.Transition removeListener(android.support.transition.Transition.TransitionListener); 2180*344a7f5eSAndroid Build Coastguard Worker method public android.support.transition.Transition removeTarget(android.view.View); 2181*344a7f5eSAndroid Build Coastguard Worker method public android.support.transition.Transition removeTarget(int); 2182*344a7f5eSAndroid Build Coastguard Worker method public android.support.transition.Transition removeTarget(java.lang.String); 2183*344a7f5eSAndroid Build Coastguard Worker method public android.support.transition.Transition removeTarget(java.lang.Class); 2184*344a7f5eSAndroid Build Coastguard Worker method public android.support.transition.Transition setDuration(long); 2185*344a7f5eSAndroid Build Coastguard Worker method public void setEpicenterCallback(android.support.transition.Transition.EpicenterCallback); 2186*344a7f5eSAndroid Build Coastguard Worker method public android.support.transition.Transition setInterpolator(android.animation.TimeInterpolator); 2187*344a7f5eSAndroid Build Coastguard Worker method public void setMatchOrder(int...); 2188*344a7f5eSAndroid Build Coastguard Worker method public void setPathMotion(android.support.transition.PathMotion); 2189*344a7f5eSAndroid Build Coastguard Worker method public void setPropagation(android.support.transition.TransitionPropagation); 2190*344a7f5eSAndroid Build Coastguard Worker method public android.support.transition.Transition setStartDelay(long); 2191*344a7f5eSAndroid Build Coastguard Worker field public static final int MATCH_ID = 3; // 0x3 2192*344a7f5eSAndroid Build Coastguard Worker field public static final int MATCH_INSTANCE = 1; // 0x1 2193*344a7f5eSAndroid Build Coastguard Worker field public static final int MATCH_ITEM_ID = 4; // 0x4 2194*344a7f5eSAndroid Build Coastguard Worker field public static final int MATCH_NAME = 2; // 0x2 2195*344a7f5eSAndroid Build Coastguard Worker } 2196*344a7f5eSAndroid Build Coastguard Worker 2197*344a7f5eSAndroid Build Coastguard Worker public static abstract class Transition.EpicenterCallback { 2198*344a7f5eSAndroid Build Coastguard Worker ctor public Transition.EpicenterCallback(); 2199*344a7f5eSAndroid Build Coastguard Worker method public abstract android.graphics.Rect onGetEpicenter(android.support.transition.Transition); 2200*344a7f5eSAndroid Build Coastguard Worker } 2201*344a7f5eSAndroid Build Coastguard Worker 2202*344a7f5eSAndroid Build Coastguard Worker public static abstract interface Transition.TransitionListener { 2203*344a7f5eSAndroid Build Coastguard Worker method public abstract void onTransitionCancel(android.support.transition.Transition); 2204*344a7f5eSAndroid Build Coastguard Worker method public abstract void onTransitionEnd(android.support.transition.Transition); 2205*344a7f5eSAndroid Build Coastguard Worker method public abstract void onTransitionPause(android.support.transition.Transition); 2206*344a7f5eSAndroid Build Coastguard Worker method public abstract void onTransitionResume(android.support.transition.Transition); 2207*344a7f5eSAndroid Build Coastguard Worker method public abstract void onTransitionStart(android.support.transition.Transition); 2208*344a7f5eSAndroid Build Coastguard Worker } 2209*344a7f5eSAndroid Build Coastguard Worker 2210*344a7f5eSAndroid Build Coastguard Worker public class TransitionInflater { 2211*344a7f5eSAndroid Build Coastguard Worker method public static android.support.transition.TransitionInflater from(android.content.Context); 2212*344a7f5eSAndroid Build Coastguard Worker method public android.support.transition.Transition inflateTransition(int); 2213*344a7f5eSAndroid Build Coastguard Worker method public android.support.transition.TransitionManager inflateTransitionManager(int, android.view.ViewGroup); 2214*344a7f5eSAndroid Build Coastguard Worker } 2215*344a7f5eSAndroid Build Coastguard Worker 2216*344a7f5eSAndroid Build Coastguard Worker public class TransitionListenerAdapter implements android.support.transition.Transition.TransitionListener { 2217*344a7f5eSAndroid Build Coastguard Worker ctor public TransitionListenerAdapter(); 2218*344a7f5eSAndroid Build Coastguard Worker method public void onTransitionCancel(android.support.transition.Transition); 2219*344a7f5eSAndroid Build Coastguard Worker method public void onTransitionEnd(android.support.transition.Transition); 2220*344a7f5eSAndroid Build Coastguard Worker method public void onTransitionPause(android.support.transition.Transition); 2221*344a7f5eSAndroid Build Coastguard Worker method public void onTransitionResume(android.support.transition.Transition); 2222*344a7f5eSAndroid Build Coastguard Worker method public void onTransitionStart(android.support.transition.Transition); 2223*344a7f5eSAndroid Build Coastguard Worker } 2224*344a7f5eSAndroid Build Coastguard Worker 2225*344a7f5eSAndroid Build Coastguard Worker public class TransitionManager { 2226*344a7f5eSAndroid Build Coastguard Worker ctor public TransitionManager(); 2227*344a7f5eSAndroid Build Coastguard Worker method public static void beginDelayedTransition(android.view.ViewGroup); 2228*344a7f5eSAndroid Build Coastguard Worker method public static void beginDelayedTransition(android.view.ViewGroup, android.support.transition.Transition); 2229*344a7f5eSAndroid Build Coastguard Worker method public static void endTransitions(android.view.ViewGroup); 2230*344a7f5eSAndroid Build Coastguard Worker method public static void go(android.support.transition.Scene); 2231*344a7f5eSAndroid Build Coastguard Worker method public static void go(android.support.transition.Scene, android.support.transition.Transition); 2232*344a7f5eSAndroid Build Coastguard Worker method public void setTransition(android.support.transition.Scene, android.support.transition.Transition); 2233*344a7f5eSAndroid Build Coastguard Worker method public void setTransition(android.support.transition.Scene, android.support.transition.Scene, android.support.transition.Transition); 2234*344a7f5eSAndroid Build Coastguard Worker method public void transitionTo(android.support.transition.Scene); 2235*344a7f5eSAndroid Build Coastguard Worker } 2236*344a7f5eSAndroid Build Coastguard Worker 2237*344a7f5eSAndroid Build Coastguard Worker public abstract class TransitionPropagation { 2238*344a7f5eSAndroid Build Coastguard Worker ctor public TransitionPropagation(); 2239*344a7f5eSAndroid Build Coastguard Worker method public abstract void captureValues(android.support.transition.TransitionValues); 2240*344a7f5eSAndroid Build Coastguard Worker method public abstract java.lang.String[] getPropagationProperties(); 2241*344a7f5eSAndroid Build Coastguard Worker method public abstract long getStartDelay(android.view.ViewGroup, android.support.transition.Transition, android.support.transition.TransitionValues, android.support.transition.TransitionValues); 2242*344a7f5eSAndroid Build Coastguard Worker } 2243*344a7f5eSAndroid Build Coastguard Worker 2244*344a7f5eSAndroid Build Coastguard Worker public class TransitionSet extends android.support.transition.Transition { 2245*344a7f5eSAndroid Build Coastguard Worker ctor public TransitionSet(); 2246*344a7f5eSAndroid Build Coastguard Worker ctor public TransitionSet(android.content.Context, android.util.AttributeSet); 2247*344a7f5eSAndroid Build Coastguard Worker method public android.support.transition.TransitionSet addTransition(android.support.transition.Transition); 2248*344a7f5eSAndroid Build Coastguard Worker method public void captureEndValues(android.support.transition.TransitionValues); 2249*344a7f5eSAndroid Build Coastguard Worker method public void captureStartValues(android.support.transition.TransitionValues); 2250*344a7f5eSAndroid Build Coastguard Worker method public int getOrdering(); 2251*344a7f5eSAndroid Build Coastguard Worker method public android.support.transition.Transition getTransitionAt(int); 2252*344a7f5eSAndroid Build Coastguard Worker method public int getTransitionCount(); 2253*344a7f5eSAndroid Build Coastguard Worker method public android.support.transition.TransitionSet removeTransition(android.support.transition.Transition); 2254*344a7f5eSAndroid Build Coastguard Worker method public android.support.transition.TransitionSet setOrdering(int); 2255*344a7f5eSAndroid Build Coastguard Worker field public static final int ORDERING_SEQUENTIAL = 1; // 0x1 2256*344a7f5eSAndroid Build Coastguard Worker field public static final int ORDERING_TOGETHER = 0; // 0x0 2257*344a7f5eSAndroid Build Coastguard Worker } 2258*344a7f5eSAndroid Build Coastguard Worker 2259*344a7f5eSAndroid Build Coastguard Worker public class TransitionValues { 2260*344a7f5eSAndroid Build Coastguard Worker ctor public TransitionValues(); 2261*344a7f5eSAndroid Build Coastguard Worker field public final java.util.Map<java.lang.String, java.lang.Object> values; 2262*344a7f5eSAndroid Build Coastguard Worker field public android.view.View view; 2263*344a7f5eSAndroid Build Coastguard Worker } 2264*344a7f5eSAndroid Build Coastguard Worker 2265*344a7f5eSAndroid Build Coastguard Worker public abstract class Visibility extends android.support.transition.Transition { 2266*344a7f5eSAndroid Build Coastguard Worker ctor public Visibility(); 2267*344a7f5eSAndroid Build Coastguard Worker ctor public Visibility(android.content.Context, android.util.AttributeSet); 2268*344a7f5eSAndroid Build Coastguard Worker method public void captureEndValues(android.support.transition.TransitionValues); 2269*344a7f5eSAndroid Build Coastguard Worker method public void captureStartValues(android.support.transition.TransitionValues); 2270*344a7f5eSAndroid Build Coastguard Worker method public int getMode(); 2271*344a7f5eSAndroid Build Coastguard Worker method public boolean isVisible(android.support.transition.TransitionValues); 2272*344a7f5eSAndroid Build Coastguard Worker method public android.animation.Animator onAppear(android.view.ViewGroup, android.support.transition.TransitionValues, int, android.support.transition.TransitionValues, int); 2273*344a7f5eSAndroid Build Coastguard Worker method public android.animation.Animator onAppear(android.view.ViewGroup, android.view.View, android.support.transition.TransitionValues, android.support.transition.TransitionValues); 2274*344a7f5eSAndroid Build Coastguard Worker method public android.animation.Animator onDisappear(android.view.ViewGroup, android.support.transition.TransitionValues, int, android.support.transition.TransitionValues, int); 2275*344a7f5eSAndroid Build Coastguard Worker method public android.animation.Animator onDisappear(android.view.ViewGroup, android.view.View, android.support.transition.TransitionValues, android.support.transition.TransitionValues); 2276*344a7f5eSAndroid Build Coastguard Worker method public void setMode(int); 2277*344a7f5eSAndroid Build Coastguard Worker field public static final int MODE_IN = 1; // 0x1 2278*344a7f5eSAndroid Build Coastguard Worker field public static final int MODE_OUT = 2; // 0x2 2279*344a7f5eSAndroid Build Coastguard Worker } 2280*344a7f5eSAndroid Build Coastguard Worker 2281*344a7f5eSAndroid Build Coastguard Worker public abstract class VisibilityPropagation extends android.support.transition.TransitionPropagation { 2282*344a7f5eSAndroid Build Coastguard Worker ctor public VisibilityPropagation(); 2283*344a7f5eSAndroid Build Coastguard Worker method public void captureValues(android.support.transition.TransitionValues); 2284*344a7f5eSAndroid Build Coastguard Worker method public java.lang.String[] getPropagationProperties(); 2285*344a7f5eSAndroid Build Coastguard Worker method public int getViewVisibility(android.support.transition.TransitionValues); 2286*344a7f5eSAndroid Build Coastguard Worker method public int getViewX(android.support.transition.TransitionValues); 2287*344a7f5eSAndroid Build Coastguard Worker method public int getViewY(android.support.transition.TransitionValues); 2288*344a7f5eSAndroid Build Coastguard Worker } 2289*344a7f5eSAndroid Build Coastguard Worker 2290*344a7f5eSAndroid Build Coastguard Worker} 2291*344a7f5eSAndroid Build Coastguard Worker 2292*344a7f5eSAndroid Build Coastguard Workerpackage android.support.v13.app { 2293*344a7f5eSAndroid Build Coastguard Worker 2294*344a7f5eSAndroid Build Coastguard Worker public class ActivityCompat extends android.support.v4.app.ActivityCompat { 2295*344a7f5eSAndroid Build Coastguard Worker ctor protected ActivityCompat(); 2296*344a7f5eSAndroid Build Coastguard Worker method public static android.support.v13.view.DragAndDropPermissionsCompat requestDragAndDropPermissions(android.app.Activity, android.view.DragEvent); 2297*344a7f5eSAndroid Build Coastguard Worker } 2298*344a7f5eSAndroid Build Coastguard Worker 2299*344a7f5eSAndroid Build Coastguard Worker public class FragmentCompat { 2300*344a7f5eSAndroid Build Coastguard Worker ctor public FragmentCompat(); 2301*344a7f5eSAndroid Build Coastguard Worker method public static void requestPermissions(android.app.Fragment, java.lang.String[], int); 2302*344a7f5eSAndroid Build Coastguard Worker method public static deprecated void setMenuVisibility(android.app.Fragment, boolean); 2303*344a7f5eSAndroid Build Coastguard Worker method public static void setUserVisibleHint(android.app.Fragment, boolean); 2304*344a7f5eSAndroid Build Coastguard Worker method public static boolean shouldShowRequestPermissionRationale(android.app.Fragment, java.lang.String); 2305*344a7f5eSAndroid Build Coastguard Worker } 2306*344a7f5eSAndroid Build Coastguard Worker 2307*344a7f5eSAndroid Build Coastguard Worker public static abstract interface FragmentCompat.OnRequestPermissionsResultCallback { 2308*344a7f5eSAndroid Build Coastguard Worker method public abstract void onRequestPermissionsResult(int, java.lang.String[], int[]); 2309*344a7f5eSAndroid Build Coastguard Worker } 2310*344a7f5eSAndroid Build Coastguard Worker 2311*344a7f5eSAndroid Build Coastguard Worker public abstract class FragmentPagerAdapter extends android.support.v4.view.PagerAdapter { 2312*344a7f5eSAndroid Build Coastguard Worker ctor public FragmentPagerAdapter(android.app.FragmentManager); 2313*344a7f5eSAndroid Build Coastguard Worker method public abstract android.app.Fragment getItem(int); 2314*344a7f5eSAndroid Build Coastguard Worker method public long getItemId(int); 2315*344a7f5eSAndroid Build Coastguard Worker method public boolean isViewFromObject(android.view.View, java.lang.Object); 2316*344a7f5eSAndroid Build Coastguard Worker } 2317*344a7f5eSAndroid Build Coastguard Worker 2318*344a7f5eSAndroid Build Coastguard Worker public abstract class FragmentStatePagerAdapter extends android.support.v4.view.PagerAdapter { 2319*344a7f5eSAndroid Build Coastguard Worker ctor public FragmentStatePagerAdapter(android.app.FragmentManager); 2320*344a7f5eSAndroid Build Coastguard Worker method public abstract android.app.Fragment getItem(int); 2321*344a7f5eSAndroid Build Coastguard Worker method public boolean isViewFromObject(android.view.View, java.lang.Object); 2322*344a7f5eSAndroid Build Coastguard Worker } 2323*344a7f5eSAndroid Build Coastguard Worker 2324*344a7f5eSAndroid Build Coastguard Worker public class FragmentTabHost extends android.widget.TabHost implements android.widget.TabHost.OnTabChangeListener { 2325*344a7f5eSAndroid Build Coastguard Worker ctor public FragmentTabHost(android.content.Context); 2326*344a7f5eSAndroid Build Coastguard Worker ctor public FragmentTabHost(android.content.Context, android.util.AttributeSet); 2327*344a7f5eSAndroid Build Coastguard Worker method public void addTab(android.widget.TabHost.TabSpec, java.lang.Class<?>, android.os.Bundle); 2328*344a7f5eSAndroid Build Coastguard Worker method public void onTabChanged(java.lang.String); 2329*344a7f5eSAndroid Build Coastguard Worker method public void setup(android.content.Context, android.app.FragmentManager); 2330*344a7f5eSAndroid Build Coastguard Worker method public void setup(android.content.Context, android.app.FragmentManager, int); 2331*344a7f5eSAndroid Build Coastguard Worker } 2332*344a7f5eSAndroid Build Coastguard Worker 2333*344a7f5eSAndroid Build Coastguard Worker} 2334*344a7f5eSAndroid Build Coastguard Worker 2335*344a7f5eSAndroid Build Coastguard Workerpackage android.support.v13.view { 2336*344a7f5eSAndroid Build Coastguard Worker 2337*344a7f5eSAndroid Build Coastguard Worker public final class DragAndDropPermissionsCompat { 2338*344a7f5eSAndroid Build Coastguard Worker method public void release(); 2339*344a7f5eSAndroid Build Coastguard Worker } 2340*344a7f5eSAndroid Build Coastguard Worker 2341*344a7f5eSAndroid Build Coastguard Worker public class DragStartHelper { 2342*344a7f5eSAndroid Build Coastguard Worker ctor public DragStartHelper(android.view.View, android.support.v13.view.DragStartHelper.OnDragStartListener); 2343*344a7f5eSAndroid Build Coastguard Worker method public void attach(); 2344*344a7f5eSAndroid Build Coastguard Worker method public void detach(); 2345*344a7f5eSAndroid Build Coastguard Worker method public void getTouchPosition(android.graphics.Point); 2346*344a7f5eSAndroid Build Coastguard Worker method public boolean onLongClick(android.view.View); 2347*344a7f5eSAndroid Build Coastguard Worker method public boolean onTouch(android.view.View, android.view.MotionEvent); 2348*344a7f5eSAndroid Build Coastguard Worker } 2349*344a7f5eSAndroid Build Coastguard Worker 2350*344a7f5eSAndroid Build Coastguard Worker public static abstract interface DragStartHelper.OnDragStartListener { 2351*344a7f5eSAndroid Build Coastguard Worker method public abstract boolean onDragStart(android.view.View, android.support.v13.view.DragStartHelper); 2352*344a7f5eSAndroid Build Coastguard Worker } 2353*344a7f5eSAndroid Build Coastguard Worker 2354*344a7f5eSAndroid Build Coastguard Worker public deprecated class ViewCompat extends android.support.v4.view.ViewCompat { 2355*344a7f5eSAndroid Build Coastguard Worker } 2356*344a7f5eSAndroid Build Coastguard Worker 2357*344a7f5eSAndroid Build Coastguard Worker} 2358*344a7f5eSAndroid Build Coastguard Worker 2359*344a7f5eSAndroid Build Coastguard Workerpackage android.support.v13.view.inputmethod { 2360*344a7f5eSAndroid Build Coastguard Worker 2361*344a7f5eSAndroid Build Coastguard Worker public final class EditorInfoCompat { 2362*344a7f5eSAndroid Build Coastguard Worker ctor public EditorInfoCompat(); 2363*344a7f5eSAndroid Build Coastguard Worker method public static java.lang.String[] getContentMimeTypes(android.view.inputmethod.EditorInfo); 2364*344a7f5eSAndroid Build Coastguard Worker method public static void setContentMimeTypes(android.view.inputmethod.EditorInfo, java.lang.String[]); 2365*344a7f5eSAndroid Build Coastguard Worker field public static final int IME_FLAG_FORCE_ASCII = -2147483648; // 0x80000000 2366*344a7f5eSAndroid Build Coastguard Worker field public static final int IME_FLAG_NO_PERSONALIZED_LEARNING = 16777216; // 0x1000000 2367*344a7f5eSAndroid Build Coastguard Worker } 2368*344a7f5eSAndroid Build Coastguard Worker 2369*344a7f5eSAndroid Build Coastguard Worker public final class InputConnectionCompat { 2370*344a7f5eSAndroid Build Coastguard Worker ctor public InputConnectionCompat(); 2371*344a7f5eSAndroid Build Coastguard Worker method public static boolean commitContent(android.view.inputmethod.InputConnection, android.view.inputmethod.EditorInfo, android.support.v13.view.inputmethod.InputContentInfoCompat, int, android.os.Bundle); 2372*344a7f5eSAndroid Build Coastguard Worker method public static android.view.inputmethod.InputConnection createWrapper(android.view.inputmethod.InputConnection, android.view.inputmethod.EditorInfo, android.support.v13.view.inputmethod.InputConnectionCompat.OnCommitContentListener); 2373*344a7f5eSAndroid Build Coastguard Worker field public static int INPUT_CONTENT_GRANT_READ_URI_PERMISSION; 2374*344a7f5eSAndroid Build Coastguard Worker } 2375*344a7f5eSAndroid Build Coastguard Worker 2376*344a7f5eSAndroid Build Coastguard Worker public static abstract interface InputConnectionCompat.OnCommitContentListener { 2377*344a7f5eSAndroid Build Coastguard Worker method public abstract boolean onCommitContent(android.support.v13.view.inputmethod.InputContentInfoCompat, int, android.os.Bundle); 2378*344a7f5eSAndroid Build Coastguard Worker } 2379*344a7f5eSAndroid Build Coastguard Worker 2380*344a7f5eSAndroid Build Coastguard Worker public final class InputContentInfoCompat { 2381*344a7f5eSAndroid Build Coastguard Worker ctor public InputContentInfoCompat(android.net.Uri, android.content.ClipDescription, android.net.Uri); 2382*344a7f5eSAndroid Build Coastguard Worker method public android.net.Uri getContentUri(); 2383*344a7f5eSAndroid Build Coastguard Worker method public android.content.ClipDescription getDescription(); 2384*344a7f5eSAndroid Build Coastguard Worker method public android.net.Uri getLinkUri(); 2385*344a7f5eSAndroid Build Coastguard Worker method public void releasePermission(); 2386*344a7f5eSAndroid Build Coastguard Worker method public void requestPermission(); 2387*344a7f5eSAndroid Build Coastguard Worker method public java.lang.Object unwrap(); 2388*344a7f5eSAndroid Build Coastguard Worker method public static android.support.v13.view.inputmethod.InputContentInfoCompat wrap(java.lang.Object); 2389*344a7f5eSAndroid Build Coastguard Worker } 2390*344a7f5eSAndroid Build Coastguard Worker 2391*344a7f5eSAndroid Build Coastguard Worker} 2392*344a7f5eSAndroid Build Coastguard Worker 2393*344a7f5eSAndroid Build Coastguard Workerpackage android.support.v14.preference { 2394*344a7f5eSAndroid Build Coastguard Worker 2395*344a7f5eSAndroid Build Coastguard Worker public class EditTextPreferenceDialogFragment extends android.support.v14.preference.PreferenceDialogFragment { 2396*344a7f5eSAndroid Build Coastguard Worker ctor public EditTextPreferenceDialogFragment(); 2397*344a7f5eSAndroid Build Coastguard Worker method public static android.support.v14.preference.EditTextPreferenceDialogFragment newInstance(java.lang.String); 2398*344a7f5eSAndroid Build Coastguard Worker method public void onDialogClosed(boolean); 2399*344a7f5eSAndroid Build Coastguard Worker } 2400*344a7f5eSAndroid Build Coastguard Worker 2401*344a7f5eSAndroid Build Coastguard Worker public class ListPreferenceDialogFragment extends android.support.v14.preference.PreferenceDialogFragment { 2402*344a7f5eSAndroid Build Coastguard Worker ctor public ListPreferenceDialogFragment(); 2403*344a7f5eSAndroid Build Coastguard Worker method public static android.support.v14.preference.ListPreferenceDialogFragment newInstance(java.lang.String); 2404*344a7f5eSAndroid Build Coastguard Worker method public void onDialogClosed(boolean); 2405*344a7f5eSAndroid Build Coastguard Worker } 2406*344a7f5eSAndroid Build Coastguard Worker 2407*344a7f5eSAndroid Build Coastguard Worker public class MultiSelectListPreference extends android.support.v7.preference.DialogPreference { 2408*344a7f5eSAndroid Build Coastguard Worker ctor public MultiSelectListPreference(android.content.Context, android.util.AttributeSet, int, int); 2409*344a7f5eSAndroid Build Coastguard Worker ctor public MultiSelectListPreference(android.content.Context, android.util.AttributeSet, int); 2410*344a7f5eSAndroid Build Coastguard Worker ctor public MultiSelectListPreference(android.content.Context, android.util.AttributeSet); 2411*344a7f5eSAndroid Build Coastguard Worker ctor public MultiSelectListPreference(android.content.Context); 2412*344a7f5eSAndroid Build Coastguard Worker method public int findIndexOfValue(java.lang.String); 2413*344a7f5eSAndroid Build Coastguard Worker method public java.lang.CharSequence[] getEntries(); 2414*344a7f5eSAndroid Build Coastguard Worker method public java.lang.CharSequence[] getEntryValues(); 2415*344a7f5eSAndroid Build Coastguard Worker method protected boolean[] getSelectedItems(); 2416*344a7f5eSAndroid Build Coastguard Worker method public java.util.Set<java.lang.String> getValues(); 2417*344a7f5eSAndroid Build Coastguard Worker method public void setEntries(java.lang.CharSequence[]); 2418*344a7f5eSAndroid Build Coastguard Worker method public void setEntries(int); 2419*344a7f5eSAndroid Build Coastguard Worker method public void setEntryValues(java.lang.CharSequence[]); 2420*344a7f5eSAndroid Build Coastguard Worker method public void setEntryValues(int); 2421*344a7f5eSAndroid Build Coastguard Worker method public void setValues(java.util.Set<java.lang.String>); 2422*344a7f5eSAndroid Build Coastguard Worker } 2423*344a7f5eSAndroid Build Coastguard Worker 2424*344a7f5eSAndroid Build Coastguard Worker public class MultiSelectListPreferenceDialogFragment extends android.support.v14.preference.PreferenceDialogFragment { 2425*344a7f5eSAndroid Build Coastguard Worker ctor public MultiSelectListPreferenceDialogFragment(); 2426*344a7f5eSAndroid Build Coastguard Worker method public static android.support.v14.preference.MultiSelectListPreferenceDialogFragment newInstance(java.lang.String); 2427*344a7f5eSAndroid Build Coastguard Worker method public void onDialogClosed(boolean); 2428*344a7f5eSAndroid Build Coastguard Worker } 2429*344a7f5eSAndroid Build Coastguard Worker 2430*344a7f5eSAndroid Build Coastguard Worker public abstract class PreferenceDialogFragment extends android.app.DialogFragment implements android.content.DialogInterface.OnClickListener { 2431*344a7f5eSAndroid Build Coastguard Worker ctor public PreferenceDialogFragment(); 2432*344a7f5eSAndroid Build Coastguard Worker method public android.support.v7.preference.DialogPreference getPreference(); 2433*344a7f5eSAndroid Build Coastguard Worker method protected void onBindDialogView(android.view.View); 2434*344a7f5eSAndroid Build Coastguard Worker method public void onClick(android.content.DialogInterface, int); 2435*344a7f5eSAndroid Build Coastguard Worker method protected android.view.View onCreateDialogView(android.content.Context); 2436*344a7f5eSAndroid Build Coastguard Worker method public abstract void onDialogClosed(boolean); 2437*344a7f5eSAndroid Build Coastguard Worker method protected void onPrepareDialogBuilder(android.app.AlertDialog.Builder); 2438*344a7f5eSAndroid Build Coastguard Worker field protected static final java.lang.String ARG_KEY = "key"; 2439*344a7f5eSAndroid Build Coastguard Worker } 2440*344a7f5eSAndroid Build Coastguard Worker 2441*344a7f5eSAndroid Build Coastguard Worker public abstract class PreferenceFragment extends android.app.Fragment implements android.support.v7.preference.DialogPreference.TargetFragment android.support.v7.preference.PreferenceManager.OnDisplayPreferenceDialogListener android.support.v7.preference.PreferenceManager.OnNavigateToScreenListener android.support.v7.preference.PreferenceManager.OnPreferenceTreeClickListener { 2442*344a7f5eSAndroid Build Coastguard Worker ctor public PreferenceFragment(); 2443*344a7f5eSAndroid Build Coastguard Worker method public void addPreferencesFromResource(int); 2444*344a7f5eSAndroid Build Coastguard Worker method public android.support.v7.preference.Preference findPreference(java.lang.CharSequence); 2445*344a7f5eSAndroid Build Coastguard Worker method public final android.support.v7.widget.RecyclerView getListView(); 2446*344a7f5eSAndroid Build Coastguard Worker method public android.support.v7.preference.PreferenceManager getPreferenceManager(); 2447*344a7f5eSAndroid Build Coastguard Worker method public android.support.v7.preference.PreferenceScreen getPreferenceScreen(); 2448*344a7f5eSAndroid Build Coastguard Worker method protected android.support.v7.widget.RecyclerView.Adapter onCreateAdapter(android.support.v7.preference.PreferenceScreen); 2449*344a7f5eSAndroid Build Coastguard Worker method public android.support.v7.widget.RecyclerView.LayoutManager onCreateLayoutManager(); 2450*344a7f5eSAndroid Build Coastguard Worker method public abstract void onCreatePreferences(android.os.Bundle, java.lang.String); 2451*344a7f5eSAndroid Build Coastguard Worker method public android.support.v7.widget.RecyclerView onCreateRecyclerView(android.view.LayoutInflater, android.view.ViewGroup, android.os.Bundle); 2452*344a7f5eSAndroid Build Coastguard Worker method public void onDisplayPreferenceDialog(android.support.v7.preference.Preference); 2453*344a7f5eSAndroid Build Coastguard Worker method public void onNavigateToScreen(android.support.v7.preference.PreferenceScreen); 2454*344a7f5eSAndroid Build Coastguard Worker method public boolean onPreferenceTreeClick(android.support.v7.preference.Preference); 2455*344a7f5eSAndroid Build Coastguard Worker method public void scrollToPreference(java.lang.String); 2456*344a7f5eSAndroid Build Coastguard Worker method public void scrollToPreference(android.support.v7.preference.Preference); 2457*344a7f5eSAndroid Build Coastguard Worker method public void setDivider(android.graphics.drawable.Drawable); 2458*344a7f5eSAndroid Build Coastguard Worker method public void setDividerHeight(int); 2459*344a7f5eSAndroid Build Coastguard Worker method public void setPreferenceScreen(android.support.v7.preference.PreferenceScreen); 2460*344a7f5eSAndroid Build Coastguard Worker method public void setPreferencesFromResource(int, java.lang.String); 2461*344a7f5eSAndroid Build Coastguard Worker field public static final java.lang.String ARG_PREFERENCE_ROOT = "android.support.v7.preference.PreferenceFragmentCompat.PREFERENCE_ROOT"; 2462*344a7f5eSAndroid Build Coastguard Worker } 2463*344a7f5eSAndroid Build Coastguard Worker 2464*344a7f5eSAndroid Build Coastguard Worker public static abstract interface PreferenceFragment.OnPreferenceDisplayDialogCallback { 2465*344a7f5eSAndroid Build Coastguard Worker method public abstract boolean onPreferenceDisplayDialog(android.support.v14.preference.PreferenceFragment, android.support.v7.preference.Preference); 2466*344a7f5eSAndroid Build Coastguard Worker } 2467*344a7f5eSAndroid Build Coastguard Worker 2468*344a7f5eSAndroid Build Coastguard Worker public static abstract interface PreferenceFragment.OnPreferenceStartFragmentCallback { 2469*344a7f5eSAndroid Build Coastguard Worker method public abstract boolean onPreferenceStartFragment(android.support.v14.preference.PreferenceFragment, android.support.v7.preference.Preference); 2470*344a7f5eSAndroid Build Coastguard Worker } 2471*344a7f5eSAndroid Build Coastguard Worker 2472*344a7f5eSAndroid Build Coastguard Worker public static abstract interface PreferenceFragment.OnPreferenceStartScreenCallback { 2473*344a7f5eSAndroid Build Coastguard Worker method public abstract boolean onPreferenceStartScreen(android.support.v14.preference.PreferenceFragment, android.support.v7.preference.PreferenceScreen); 2474*344a7f5eSAndroid Build Coastguard Worker } 2475*344a7f5eSAndroid Build Coastguard Worker 2476*344a7f5eSAndroid Build Coastguard Worker public class SwitchPreference extends android.support.v7.preference.TwoStatePreference { 2477*344a7f5eSAndroid Build Coastguard Worker ctor public SwitchPreference(android.content.Context, android.util.AttributeSet, int, int); 2478*344a7f5eSAndroid Build Coastguard Worker ctor public SwitchPreference(android.content.Context, android.util.AttributeSet, int); 2479*344a7f5eSAndroid Build Coastguard Worker ctor public SwitchPreference(android.content.Context, android.util.AttributeSet); 2480*344a7f5eSAndroid Build Coastguard Worker ctor public SwitchPreference(android.content.Context); 2481*344a7f5eSAndroid Build Coastguard Worker method public java.lang.CharSequence getSwitchTextOff(); 2482*344a7f5eSAndroid Build Coastguard Worker method public java.lang.CharSequence getSwitchTextOn(); 2483*344a7f5eSAndroid Build Coastguard Worker method public void setSwitchTextOff(java.lang.CharSequence); 2484*344a7f5eSAndroid Build Coastguard Worker method public void setSwitchTextOff(int); 2485*344a7f5eSAndroid Build Coastguard Worker method public void setSwitchTextOn(java.lang.CharSequence); 2486*344a7f5eSAndroid Build Coastguard Worker method public void setSwitchTextOn(int); 2487*344a7f5eSAndroid Build Coastguard Worker } 2488*344a7f5eSAndroid Build Coastguard Worker 2489*344a7f5eSAndroid Build Coastguard Worker} 2490*344a7f5eSAndroid Build Coastguard Worker 2491*344a7f5eSAndroid Build Coastguard Workerpackage android.support.v17.leanback.app { 2492*344a7f5eSAndroid Build Coastguard Worker 2493*344a7f5eSAndroid Build Coastguard Worker public final class BackgroundManager { 2494*344a7f5eSAndroid Build Coastguard Worker method public void attach(android.view.Window); 2495*344a7f5eSAndroid Build Coastguard Worker method public void attachToView(android.view.View); 2496*344a7f5eSAndroid Build Coastguard Worker method public void clearDrawable(); 2497*344a7f5eSAndroid Build Coastguard Worker method public final int getColor(); 2498*344a7f5eSAndroid Build Coastguard Worker method public deprecated android.graphics.drawable.Drawable getDefaultDimLayer(); 2499*344a7f5eSAndroid Build Coastguard Worker method public deprecated android.graphics.drawable.Drawable getDimLayer(); 2500*344a7f5eSAndroid Build Coastguard Worker method public android.graphics.drawable.Drawable getDrawable(); 2501*344a7f5eSAndroid Build Coastguard Worker method public static android.support.v17.leanback.app.BackgroundManager getInstance(android.app.Activity); 2502*344a7f5eSAndroid Build Coastguard Worker method public boolean isAttached(); 2503*344a7f5eSAndroid Build Coastguard Worker method public boolean isAutoReleaseOnStop(); 2504*344a7f5eSAndroid Build Coastguard Worker method public void release(); 2505*344a7f5eSAndroid Build Coastguard Worker method public void setAutoReleaseOnStop(boolean); 2506*344a7f5eSAndroid Build Coastguard Worker method public void setBitmap(android.graphics.Bitmap); 2507*344a7f5eSAndroid Build Coastguard Worker method public void setColor(int); 2508*344a7f5eSAndroid Build Coastguard Worker method public deprecated void setDimLayer(android.graphics.drawable.Drawable); 2509*344a7f5eSAndroid Build Coastguard Worker method public void setDrawable(android.graphics.drawable.Drawable); 2510*344a7f5eSAndroid Build Coastguard Worker method public void setThemeDrawableResourceId(int); 2511*344a7f5eSAndroid Build Coastguard Worker } 2512*344a7f5eSAndroid Build Coastguard Worker 2513*344a7f5eSAndroid Build Coastguard Worker public class BaseFragment extends android.support.v17.leanback.app.BrandedFragment { 2514*344a7f5eSAndroid Build Coastguard Worker method protected java.lang.Object createEntranceTransition(); 2515*344a7f5eSAndroid Build Coastguard Worker method public final android.support.v17.leanback.app.ProgressBarManager getProgressBarManager(); 2516*344a7f5eSAndroid Build Coastguard Worker method protected void onEntranceTransitionEnd(); 2517*344a7f5eSAndroid Build Coastguard Worker method protected void onEntranceTransitionPrepare(); 2518*344a7f5eSAndroid Build Coastguard Worker method protected void onEntranceTransitionStart(); 2519*344a7f5eSAndroid Build Coastguard Worker method public void prepareEntranceTransition(); 2520*344a7f5eSAndroid Build Coastguard Worker method protected void runEntranceTransition(java.lang.Object); 2521*344a7f5eSAndroid Build Coastguard Worker method public void startEntranceTransition(); 2522*344a7f5eSAndroid Build Coastguard Worker } 2523*344a7f5eSAndroid Build Coastguard Worker 2524*344a7f5eSAndroid Build Coastguard Worker abstract class BaseRowFragment extends android.app.Fragment { 2525*344a7f5eSAndroid Build Coastguard Worker method public final android.support.v17.leanback.widget.ObjectAdapter getAdapter(); 2526*344a7f5eSAndroid Build Coastguard Worker method public final android.support.v17.leanback.widget.ItemBridgeAdapter getBridgeAdapter(); 2527*344a7f5eSAndroid Build Coastguard Worker method public final android.support.v17.leanback.widget.PresenterSelector getPresenterSelector(); 2528*344a7f5eSAndroid Build Coastguard Worker method public int getSelectedPosition(); 2529*344a7f5eSAndroid Build Coastguard Worker method public final android.support.v17.leanback.widget.VerticalGridView getVerticalGridView(); 2530*344a7f5eSAndroid Build Coastguard Worker method public void onTransitionEnd(); 2531*344a7f5eSAndroid Build Coastguard Worker method public boolean onTransitionPrepare(); 2532*344a7f5eSAndroid Build Coastguard Worker method public void onTransitionStart(); 2533*344a7f5eSAndroid Build Coastguard Worker method public final void setAdapter(android.support.v17.leanback.widget.ObjectAdapter); 2534*344a7f5eSAndroid Build Coastguard Worker method public void setAlignment(int); 2535*344a7f5eSAndroid Build Coastguard Worker method public final void setPresenterSelector(android.support.v17.leanback.widget.PresenterSelector); 2536*344a7f5eSAndroid Build Coastguard Worker method public void setSelectedPosition(int); 2537*344a7f5eSAndroid Build Coastguard Worker method public void setSelectedPosition(int, boolean); 2538*344a7f5eSAndroid Build Coastguard Worker } 2539*344a7f5eSAndroid Build Coastguard Worker 2540*344a7f5eSAndroid Build Coastguard Worker abstract class BaseRowSupportFragment extends android.support.v4.app.Fragment { 2541*344a7f5eSAndroid Build Coastguard Worker method public final android.support.v17.leanback.widget.ObjectAdapter getAdapter(); 2542*344a7f5eSAndroid Build Coastguard Worker method public final android.support.v17.leanback.widget.ItemBridgeAdapter getBridgeAdapter(); 2543*344a7f5eSAndroid Build Coastguard Worker method public final android.support.v17.leanback.widget.PresenterSelector getPresenterSelector(); 2544*344a7f5eSAndroid Build Coastguard Worker method public int getSelectedPosition(); 2545*344a7f5eSAndroid Build Coastguard Worker method public final android.support.v17.leanback.widget.VerticalGridView getVerticalGridView(); 2546*344a7f5eSAndroid Build Coastguard Worker method public void onTransitionEnd(); 2547*344a7f5eSAndroid Build Coastguard Worker method public boolean onTransitionPrepare(); 2548*344a7f5eSAndroid Build Coastguard Worker method public void onTransitionStart(); 2549*344a7f5eSAndroid Build Coastguard Worker method public final void setAdapter(android.support.v17.leanback.widget.ObjectAdapter); 2550*344a7f5eSAndroid Build Coastguard Worker method public void setAlignment(int); 2551*344a7f5eSAndroid Build Coastguard Worker method public final void setPresenterSelector(android.support.v17.leanback.widget.PresenterSelector); 2552*344a7f5eSAndroid Build Coastguard Worker method public void setSelectedPosition(int); 2553*344a7f5eSAndroid Build Coastguard Worker method public void setSelectedPosition(int, boolean); 2554*344a7f5eSAndroid Build Coastguard Worker } 2555*344a7f5eSAndroid Build Coastguard Worker 2556*344a7f5eSAndroid Build Coastguard Worker public class BaseSupportFragment extends android.support.v17.leanback.app.BrandedSupportFragment { 2557*344a7f5eSAndroid Build Coastguard Worker method protected java.lang.Object createEntranceTransition(); 2558*344a7f5eSAndroid Build Coastguard Worker method public final android.support.v17.leanback.app.ProgressBarManager getProgressBarManager(); 2559*344a7f5eSAndroid Build Coastguard Worker method protected void onEntranceTransitionEnd(); 2560*344a7f5eSAndroid Build Coastguard Worker method protected void onEntranceTransitionPrepare(); 2561*344a7f5eSAndroid Build Coastguard Worker method protected void onEntranceTransitionStart(); 2562*344a7f5eSAndroid Build Coastguard Worker method public void prepareEntranceTransition(); 2563*344a7f5eSAndroid Build Coastguard Worker method protected void runEntranceTransition(java.lang.Object); 2564*344a7f5eSAndroid Build Coastguard Worker method public void startEntranceTransition(); 2565*344a7f5eSAndroid Build Coastguard Worker } 2566*344a7f5eSAndroid Build Coastguard Worker 2567*344a7f5eSAndroid Build Coastguard Worker public class BrandedFragment extends android.app.Fragment { 2568*344a7f5eSAndroid Build Coastguard Worker ctor public BrandedFragment(); 2569*344a7f5eSAndroid Build Coastguard Worker method public android.graphics.drawable.Drawable getBadgeDrawable(); 2570*344a7f5eSAndroid Build Coastguard Worker method public int getSearchAffordanceColor(); 2571*344a7f5eSAndroid Build Coastguard Worker method public android.support.v17.leanback.widget.SearchOrbView.Colors getSearchAffordanceColors(); 2572*344a7f5eSAndroid Build Coastguard Worker method public java.lang.CharSequence getTitle(); 2573*344a7f5eSAndroid Build Coastguard Worker method public android.view.View getTitleView(); 2574*344a7f5eSAndroid Build Coastguard Worker method public android.support.v17.leanback.widget.TitleViewAdapter getTitleViewAdapter(); 2575*344a7f5eSAndroid Build Coastguard Worker method public void installTitleView(android.view.LayoutInflater, android.view.ViewGroup, android.os.Bundle); 2576*344a7f5eSAndroid Build Coastguard Worker method public final boolean isShowingTitle(); 2577*344a7f5eSAndroid Build Coastguard Worker method public android.view.View onInflateTitleView(android.view.LayoutInflater, android.view.ViewGroup, android.os.Bundle); 2578*344a7f5eSAndroid Build Coastguard Worker method public void setBadgeDrawable(android.graphics.drawable.Drawable); 2579*344a7f5eSAndroid Build Coastguard Worker method public void setOnSearchClickedListener(android.view.View.OnClickListener); 2580*344a7f5eSAndroid Build Coastguard Worker method public void setSearchAffordanceColor(int); 2581*344a7f5eSAndroid Build Coastguard Worker method public void setSearchAffordanceColors(android.support.v17.leanback.widget.SearchOrbView.Colors); 2582*344a7f5eSAndroid Build Coastguard Worker method public void setTitle(java.lang.CharSequence); 2583*344a7f5eSAndroid Build Coastguard Worker method public void setTitleView(android.view.View); 2584*344a7f5eSAndroid Build Coastguard Worker method public void showTitle(boolean); 2585*344a7f5eSAndroid Build Coastguard Worker method public void showTitle(int); 2586*344a7f5eSAndroid Build Coastguard Worker } 2587*344a7f5eSAndroid Build Coastguard Worker 2588*344a7f5eSAndroid Build Coastguard Worker public class BrandedSupportFragment extends android.support.v4.app.Fragment { 2589*344a7f5eSAndroid Build Coastguard Worker ctor public BrandedSupportFragment(); 2590*344a7f5eSAndroid Build Coastguard Worker method public android.graphics.drawable.Drawable getBadgeDrawable(); 2591*344a7f5eSAndroid Build Coastguard Worker method public int getSearchAffordanceColor(); 2592*344a7f5eSAndroid Build Coastguard Worker method public android.support.v17.leanback.widget.SearchOrbView.Colors getSearchAffordanceColors(); 2593*344a7f5eSAndroid Build Coastguard Worker method public java.lang.CharSequence getTitle(); 2594*344a7f5eSAndroid Build Coastguard Worker method public android.view.View getTitleView(); 2595*344a7f5eSAndroid Build Coastguard Worker method public android.support.v17.leanback.widget.TitleViewAdapter getTitleViewAdapter(); 2596*344a7f5eSAndroid Build Coastguard Worker method public void installTitleView(android.view.LayoutInflater, android.view.ViewGroup, android.os.Bundle); 2597*344a7f5eSAndroid Build Coastguard Worker method public final boolean isShowingTitle(); 2598*344a7f5eSAndroid Build Coastguard Worker method public android.view.View onInflateTitleView(android.view.LayoutInflater, android.view.ViewGroup, android.os.Bundle); 2599*344a7f5eSAndroid Build Coastguard Worker method public void setBadgeDrawable(android.graphics.drawable.Drawable); 2600*344a7f5eSAndroid Build Coastguard Worker method public void setOnSearchClickedListener(android.view.View.OnClickListener); 2601*344a7f5eSAndroid Build Coastguard Worker method public void setSearchAffordanceColor(int); 2602*344a7f5eSAndroid Build Coastguard Worker method public void setSearchAffordanceColors(android.support.v17.leanback.widget.SearchOrbView.Colors); 2603*344a7f5eSAndroid Build Coastguard Worker method public void setTitle(java.lang.CharSequence); 2604*344a7f5eSAndroid Build Coastguard Worker method public void setTitleView(android.view.View); 2605*344a7f5eSAndroid Build Coastguard Worker method public void showTitle(boolean); 2606*344a7f5eSAndroid Build Coastguard Worker method public void showTitle(int); 2607*344a7f5eSAndroid Build Coastguard Worker } 2608*344a7f5eSAndroid Build Coastguard Worker 2609*344a7f5eSAndroid Build Coastguard Worker public class BrowseFragment extends android.support.v17.leanback.app.BaseFragment { 2610*344a7f5eSAndroid Build Coastguard Worker ctor public BrowseFragment(); 2611*344a7f5eSAndroid Build Coastguard Worker method public static android.os.Bundle createArgs(android.os.Bundle, java.lang.String, int); 2612*344a7f5eSAndroid Build Coastguard Worker method public void enableMainFragmentScaling(boolean); 2613*344a7f5eSAndroid Build Coastguard Worker method public deprecated void enableRowScaling(boolean); 2614*344a7f5eSAndroid Build Coastguard Worker method public android.support.v17.leanback.widget.ObjectAdapter getAdapter(); 2615*344a7f5eSAndroid Build Coastguard Worker method public int getBrandColor(); 2616*344a7f5eSAndroid Build Coastguard Worker method public android.support.v17.leanback.app.HeadersFragment getHeadersFragment(); 2617*344a7f5eSAndroid Build Coastguard Worker method public int getHeadersState(); 2618*344a7f5eSAndroid Build Coastguard Worker method public android.app.Fragment getMainFragment(); 2619*344a7f5eSAndroid Build Coastguard Worker method public final android.support.v17.leanback.app.BrowseFragment.MainFragmentAdapterRegistry getMainFragmentRegistry(); 2620*344a7f5eSAndroid Build Coastguard Worker method public android.support.v17.leanback.widget.OnItemViewClickedListener getOnItemViewClickedListener(); 2621*344a7f5eSAndroid Build Coastguard Worker method public android.support.v17.leanback.widget.OnItemViewSelectedListener getOnItemViewSelectedListener(); 2622*344a7f5eSAndroid Build Coastguard Worker method public android.support.v17.leanback.app.RowsFragment getRowsFragment(); 2623*344a7f5eSAndroid Build Coastguard Worker method public int getSelectedPosition(); 2624*344a7f5eSAndroid Build Coastguard Worker method public android.support.v17.leanback.widget.RowPresenter.ViewHolder getSelectedRowViewHolder(); 2625*344a7f5eSAndroid Build Coastguard Worker method public final boolean isHeadersTransitionOnBackEnabled(); 2626*344a7f5eSAndroid Build Coastguard Worker method public boolean isInHeadersTransition(); 2627*344a7f5eSAndroid Build Coastguard Worker method public boolean isShowingHeaders(); 2628*344a7f5eSAndroid Build Coastguard Worker method public android.support.v17.leanback.app.HeadersFragment onCreateHeadersFragment(); 2629*344a7f5eSAndroid Build Coastguard Worker method public void setAdapter(android.support.v17.leanback.widget.ObjectAdapter); 2630*344a7f5eSAndroid Build Coastguard Worker method public void setBrandColor(int); 2631*344a7f5eSAndroid Build Coastguard Worker method public void setBrowseTransitionListener(android.support.v17.leanback.app.BrowseFragment.BrowseTransitionListener); 2632*344a7f5eSAndroid Build Coastguard Worker method public void setHeaderPresenterSelector(android.support.v17.leanback.widget.PresenterSelector); 2633*344a7f5eSAndroid Build Coastguard Worker method public void setHeadersState(int); 2634*344a7f5eSAndroid Build Coastguard Worker method public final void setHeadersTransitionOnBackEnabled(boolean); 2635*344a7f5eSAndroid Build Coastguard Worker method public void setOnItemViewClickedListener(android.support.v17.leanback.widget.OnItemViewClickedListener); 2636*344a7f5eSAndroid Build Coastguard Worker method public void setOnItemViewSelectedListener(android.support.v17.leanback.widget.OnItemViewSelectedListener); 2637*344a7f5eSAndroid Build Coastguard Worker method public void setSelectedPosition(int); 2638*344a7f5eSAndroid Build Coastguard Worker method public void setSelectedPosition(int, boolean); 2639*344a7f5eSAndroid Build Coastguard Worker method public void setSelectedPosition(int, boolean, android.support.v17.leanback.widget.Presenter.ViewHolderTask); 2640*344a7f5eSAndroid Build Coastguard Worker method public void startHeadersTransition(boolean); 2641*344a7f5eSAndroid Build Coastguard Worker field public static final int HEADERS_DISABLED = 3; // 0x3 2642*344a7f5eSAndroid Build Coastguard Worker field public static final int HEADERS_ENABLED = 1; // 0x1 2643*344a7f5eSAndroid Build Coastguard Worker field public static final int HEADERS_HIDDEN = 2; // 0x2 2644*344a7f5eSAndroid Build Coastguard Worker } 2645*344a7f5eSAndroid Build Coastguard Worker 2646*344a7f5eSAndroid Build Coastguard Worker public static class BrowseFragment.BrowseTransitionListener { 2647*344a7f5eSAndroid Build Coastguard Worker ctor public BrowseFragment.BrowseTransitionListener(); 2648*344a7f5eSAndroid Build Coastguard Worker method public void onHeadersTransitionStart(boolean); 2649*344a7f5eSAndroid Build Coastguard Worker method public void onHeadersTransitionStop(boolean); 2650*344a7f5eSAndroid Build Coastguard Worker } 2651*344a7f5eSAndroid Build Coastguard Worker 2652*344a7f5eSAndroid Build Coastguard Worker public static abstract class BrowseFragment.FragmentFactory<T extends android.app.Fragment> { 2653*344a7f5eSAndroid Build Coastguard Worker ctor public BrowseFragment.FragmentFactory(); 2654*344a7f5eSAndroid Build Coastguard Worker method public abstract T createFragment(java.lang.Object); 2655*344a7f5eSAndroid Build Coastguard Worker } 2656*344a7f5eSAndroid Build Coastguard Worker 2657*344a7f5eSAndroid Build Coastguard Worker public static abstract interface BrowseFragment.FragmentHost { 2658*344a7f5eSAndroid Build Coastguard Worker method public abstract void notifyDataReady(android.support.v17.leanback.app.BrowseFragment.MainFragmentAdapter); 2659*344a7f5eSAndroid Build Coastguard Worker method public abstract void notifyViewCreated(android.support.v17.leanback.app.BrowseFragment.MainFragmentAdapter); 2660*344a7f5eSAndroid Build Coastguard Worker method public abstract void showTitleView(boolean); 2661*344a7f5eSAndroid Build Coastguard Worker } 2662*344a7f5eSAndroid Build Coastguard Worker 2663*344a7f5eSAndroid Build Coastguard Worker public static class BrowseFragment.ListRowFragmentFactory extends android.support.v17.leanback.app.BrowseFragment.FragmentFactory { 2664*344a7f5eSAndroid Build Coastguard Worker ctor public BrowseFragment.ListRowFragmentFactory(); 2665*344a7f5eSAndroid Build Coastguard Worker method public android.support.v17.leanback.app.RowsFragment createFragment(java.lang.Object); 2666*344a7f5eSAndroid Build Coastguard Worker } 2667*344a7f5eSAndroid Build Coastguard Worker 2668*344a7f5eSAndroid Build Coastguard Worker public static class BrowseFragment.MainFragmentAdapter<T extends android.app.Fragment> { 2669*344a7f5eSAndroid Build Coastguard Worker ctor public BrowseFragment.MainFragmentAdapter(T); 2670*344a7f5eSAndroid Build Coastguard Worker method public final T getFragment(); 2671*344a7f5eSAndroid Build Coastguard Worker method public final android.support.v17.leanback.app.BrowseFragment.FragmentHost getFragmentHost(); 2672*344a7f5eSAndroid Build Coastguard Worker method public boolean isScalingEnabled(); 2673*344a7f5eSAndroid Build Coastguard Worker method public boolean isScrolling(); 2674*344a7f5eSAndroid Build Coastguard Worker method public void onTransitionEnd(); 2675*344a7f5eSAndroid Build Coastguard Worker method public boolean onTransitionPrepare(); 2676*344a7f5eSAndroid Build Coastguard Worker method public void onTransitionStart(); 2677*344a7f5eSAndroid Build Coastguard Worker method public void setAlignment(int); 2678*344a7f5eSAndroid Build Coastguard Worker method public void setEntranceTransitionState(boolean); 2679*344a7f5eSAndroid Build Coastguard Worker method public void setExpand(boolean); 2680*344a7f5eSAndroid Build Coastguard Worker method public void setScalingEnabled(boolean); 2681*344a7f5eSAndroid Build Coastguard Worker } 2682*344a7f5eSAndroid Build Coastguard Worker 2683*344a7f5eSAndroid Build Coastguard Worker public static abstract interface BrowseFragment.MainFragmentAdapterProvider { 2684*344a7f5eSAndroid Build Coastguard Worker method public abstract android.support.v17.leanback.app.BrowseFragment.MainFragmentAdapter getMainFragmentAdapter(); 2685*344a7f5eSAndroid Build Coastguard Worker } 2686*344a7f5eSAndroid Build Coastguard Worker 2687*344a7f5eSAndroid Build Coastguard Worker public static final class BrowseFragment.MainFragmentAdapterRegistry { 2688*344a7f5eSAndroid Build Coastguard Worker ctor public BrowseFragment.MainFragmentAdapterRegistry(); 2689*344a7f5eSAndroid Build Coastguard Worker method public android.app.Fragment createFragment(java.lang.Object); 2690*344a7f5eSAndroid Build Coastguard Worker method public void registerFragment(java.lang.Class, android.support.v17.leanback.app.BrowseFragment.FragmentFactory); 2691*344a7f5eSAndroid Build Coastguard Worker } 2692*344a7f5eSAndroid Build Coastguard Worker 2693*344a7f5eSAndroid Build Coastguard Worker public static class BrowseFragment.MainFragmentRowsAdapter<T extends android.app.Fragment> { 2694*344a7f5eSAndroid Build Coastguard Worker ctor public BrowseFragment.MainFragmentRowsAdapter(T); 2695*344a7f5eSAndroid Build Coastguard Worker method public android.support.v17.leanback.widget.RowPresenter.ViewHolder findRowViewHolderByPosition(int); 2696*344a7f5eSAndroid Build Coastguard Worker method public final T getFragment(); 2697*344a7f5eSAndroid Build Coastguard Worker method public int getSelectedPosition(); 2698*344a7f5eSAndroid Build Coastguard Worker method public void setAdapter(android.support.v17.leanback.widget.ObjectAdapter); 2699*344a7f5eSAndroid Build Coastguard Worker method public void setOnItemViewClickedListener(android.support.v17.leanback.widget.OnItemViewClickedListener); 2700*344a7f5eSAndroid Build Coastguard Worker method public void setOnItemViewSelectedListener(android.support.v17.leanback.widget.OnItemViewSelectedListener); 2701*344a7f5eSAndroid Build Coastguard Worker method public void setSelectedPosition(int, boolean, android.support.v17.leanback.widget.Presenter.ViewHolderTask); 2702*344a7f5eSAndroid Build Coastguard Worker method public void setSelectedPosition(int, boolean); 2703*344a7f5eSAndroid Build Coastguard Worker } 2704*344a7f5eSAndroid Build Coastguard Worker 2705*344a7f5eSAndroid Build Coastguard Worker public static abstract interface BrowseFragment.MainFragmentRowsAdapterProvider { 2706*344a7f5eSAndroid Build Coastguard Worker method public abstract android.support.v17.leanback.app.BrowseFragment.MainFragmentRowsAdapter getMainFragmentRowsAdapter(); 2707*344a7f5eSAndroid Build Coastguard Worker } 2708*344a7f5eSAndroid Build Coastguard Worker 2709*344a7f5eSAndroid Build Coastguard Worker public class BrowseSupportFragment extends android.support.v17.leanback.app.BaseSupportFragment { 2710*344a7f5eSAndroid Build Coastguard Worker ctor public BrowseSupportFragment(); 2711*344a7f5eSAndroid Build Coastguard Worker method public static android.os.Bundle createArgs(android.os.Bundle, java.lang.String, int); 2712*344a7f5eSAndroid Build Coastguard Worker method public void enableMainFragmentScaling(boolean); 2713*344a7f5eSAndroid Build Coastguard Worker method public deprecated void enableRowScaling(boolean); 2714*344a7f5eSAndroid Build Coastguard Worker method public android.support.v17.leanback.widget.ObjectAdapter getAdapter(); 2715*344a7f5eSAndroid Build Coastguard Worker method public int getBrandColor(); 2716*344a7f5eSAndroid Build Coastguard Worker method public int getHeadersState(); 2717*344a7f5eSAndroid Build Coastguard Worker method public android.support.v17.leanback.app.HeadersSupportFragment getHeadersSupportFragment(); 2718*344a7f5eSAndroid Build Coastguard Worker method public android.support.v4.app.Fragment getMainFragment(); 2719*344a7f5eSAndroid Build Coastguard Worker method public final android.support.v17.leanback.app.BrowseSupportFragment.MainFragmentAdapterRegistry getMainFragmentRegistry(); 2720*344a7f5eSAndroid Build Coastguard Worker method public android.support.v17.leanback.widget.OnItemViewClickedListener getOnItemViewClickedListener(); 2721*344a7f5eSAndroid Build Coastguard Worker method public android.support.v17.leanback.widget.OnItemViewSelectedListener getOnItemViewSelectedListener(); 2722*344a7f5eSAndroid Build Coastguard Worker method public android.support.v17.leanback.app.RowsSupportFragment getRowsSupportFragment(); 2723*344a7f5eSAndroid Build Coastguard Worker method public int getSelectedPosition(); 2724*344a7f5eSAndroid Build Coastguard Worker method public android.support.v17.leanback.widget.RowPresenter.ViewHolder getSelectedRowViewHolder(); 2725*344a7f5eSAndroid Build Coastguard Worker method public final boolean isHeadersTransitionOnBackEnabled(); 2726*344a7f5eSAndroid Build Coastguard Worker method public boolean isInHeadersTransition(); 2727*344a7f5eSAndroid Build Coastguard Worker method public boolean isShowingHeaders(); 2728*344a7f5eSAndroid Build Coastguard Worker method public android.support.v17.leanback.app.HeadersSupportFragment onCreateHeadersSupportFragment(); 2729*344a7f5eSAndroid Build Coastguard Worker method public void setAdapter(android.support.v17.leanback.widget.ObjectAdapter); 2730*344a7f5eSAndroid Build Coastguard Worker method public void setBrandColor(int); 2731*344a7f5eSAndroid Build Coastguard Worker method public void setBrowseTransitionListener(android.support.v17.leanback.app.BrowseSupportFragment.BrowseTransitionListener); 2732*344a7f5eSAndroid Build Coastguard Worker method public void setHeaderPresenterSelector(android.support.v17.leanback.widget.PresenterSelector); 2733*344a7f5eSAndroid Build Coastguard Worker method public void setHeadersState(int); 2734*344a7f5eSAndroid Build Coastguard Worker method public final void setHeadersTransitionOnBackEnabled(boolean); 2735*344a7f5eSAndroid Build Coastguard Worker method public void setOnItemViewClickedListener(android.support.v17.leanback.widget.OnItemViewClickedListener); 2736*344a7f5eSAndroid Build Coastguard Worker method public void setOnItemViewSelectedListener(android.support.v17.leanback.widget.OnItemViewSelectedListener); 2737*344a7f5eSAndroid Build Coastguard Worker method public void setSelectedPosition(int); 2738*344a7f5eSAndroid Build Coastguard Worker method public void setSelectedPosition(int, boolean); 2739*344a7f5eSAndroid Build Coastguard Worker method public void setSelectedPosition(int, boolean, android.support.v17.leanback.widget.Presenter.ViewHolderTask); 2740*344a7f5eSAndroid Build Coastguard Worker method public void startHeadersTransition(boolean); 2741*344a7f5eSAndroid Build Coastguard Worker field public static final int HEADERS_DISABLED = 3; // 0x3 2742*344a7f5eSAndroid Build Coastguard Worker field public static final int HEADERS_ENABLED = 1; // 0x1 2743*344a7f5eSAndroid Build Coastguard Worker field public static final int HEADERS_HIDDEN = 2; // 0x2 2744*344a7f5eSAndroid Build Coastguard Worker } 2745*344a7f5eSAndroid Build Coastguard Worker 2746*344a7f5eSAndroid Build Coastguard Worker public static class BrowseSupportFragment.BrowseTransitionListener { 2747*344a7f5eSAndroid Build Coastguard Worker ctor public BrowseSupportFragment.BrowseTransitionListener(); 2748*344a7f5eSAndroid Build Coastguard Worker method public void onHeadersTransitionStart(boolean); 2749*344a7f5eSAndroid Build Coastguard Worker method public void onHeadersTransitionStop(boolean); 2750*344a7f5eSAndroid Build Coastguard Worker } 2751*344a7f5eSAndroid Build Coastguard Worker 2752*344a7f5eSAndroid Build Coastguard Worker public static abstract class BrowseSupportFragment.FragmentFactory<T extends android.support.v4.app.Fragment> { 2753*344a7f5eSAndroid Build Coastguard Worker ctor public BrowseSupportFragment.FragmentFactory(); 2754*344a7f5eSAndroid Build Coastguard Worker method public abstract T createFragment(java.lang.Object); 2755*344a7f5eSAndroid Build Coastguard Worker } 2756*344a7f5eSAndroid Build Coastguard Worker 2757*344a7f5eSAndroid Build Coastguard Worker public static abstract interface BrowseSupportFragment.FragmentHost { 2758*344a7f5eSAndroid Build Coastguard Worker method public abstract void notifyDataReady(android.support.v17.leanback.app.BrowseSupportFragment.MainFragmentAdapter); 2759*344a7f5eSAndroid Build Coastguard Worker method public abstract void notifyViewCreated(android.support.v17.leanback.app.BrowseSupportFragment.MainFragmentAdapter); 2760*344a7f5eSAndroid Build Coastguard Worker method public abstract void showTitleView(boolean); 2761*344a7f5eSAndroid Build Coastguard Worker } 2762*344a7f5eSAndroid Build Coastguard Worker 2763*344a7f5eSAndroid Build Coastguard Worker public static class BrowseSupportFragment.ListRowFragmentFactory extends android.support.v17.leanback.app.BrowseSupportFragment.FragmentFactory { 2764*344a7f5eSAndroid Build Coastguard Worker ctor public BrowseSupportFragment.ListRowFragmentFactory(); 2765*344a7f5eSAndroid Build Coastguard Worker method public android.support.v17.leanback.app.RowsSupportFragment createFragment(java.lang.Object); 2766*344a7f5eSAndroid Build Coastguard Worker } 2767*344a7f5eSAndroid Build Coastguard Worker 2768*344a7f5eSAndroid Build Coastguard Worker public static class BrowseSupportFragment.MainFragmentAdapter<T extends android.support.v4.app.Fragment> { 2769*344a7f5eSAndroid Build Coastguard Worker ctor public BrowseSupportFragment.MainFragmentAdapter(T); 2770*344a7f5eSAndroid Build Coastguard Worker method public final T getFragment(); 2771*344a7f5eSAndroid Build Coastguard Worker method public final android.support.v17.leanback.app.BrowseSupportFragment.FragmentHost getFragmentHost(); 2772*344a7f5eSAndroid Build Coastguard Worker method public boolean isScalingEnabled(); 2773*344a7f5eSAndroid Build Coastguard Worker method public boolean isScrolling(); 2774*344a7f5eSAndroid Build Coastguard Worker method public void onTransitionEnd(); 2775*344a7f5eSAndroid Build Coastguard Worker method public boolean onTransitionPrepare(); 2776*344a7f5eSAndroid Build Coastguard Worker method public void onTransitionStart(); 2777*344a7f5eSAndroid Build Coastguard Worker method public void setAlignment(int); 2778*344a7f5eSAndroid Build Coastguard Worker method public void setEntranceTransitionState(boolean); 2779*344a7f5eSAndroid Build Coastguard Worker method public void setExpand(boolean); 2780*344a7f5eSAndroid Build Coastguard Worker method public void setScalingEnabled(boolean); 2781*344a7f5eSAndroid Build Coastguard Worker } 2782*344a7f5eSAndroid Build Coastguard Worker 2783*344a7f5eSAndroid Build Coastguard Worker public static abstract interface BrowseSupportFragment.MainFragmentAdapterProvider { 2784*344a7f5eSAndroid Build Coastguard Worker method public abstract android.support.v17.leanback.app.BrowseSupportFragment.MainFragmentAdapter getMainFragmentAdapter(); 2785*344a7f5eSAndroid Build Coastguard Worker } 2786*344a7f5eSAndroid Build Coastguard Worker 2787*344a7f5eSAndroid Build Coastguard Worker public static final class BrowseSupportFragment.MainFragmentAdapterRegistry { 2788*344a7f5eSAndroid Build Coastguard Worker ctor public BrowseSupportFragment.MainFragmentAdapterRegistry(); 2789*344a7f5eSAndroid Build Coastguard Worker method public android.support.v4.app.Fragment createFragment(java.lang.Object); 2790*344a7f5eSAndroid Build Coastguard Worker method public void registerFragment(java.lang.Class, android.support.v17.leanback.app.BrowseSupportFragment.FragmentFactory); 2791*344a7f5eSAndroid Build Coastguard Worker } 2792*344a7f5eSAndroid Build Coastguard Worker 2793*344a7f5eSAndroid Build Coastguard Worker public static class BrowseSupportFragment.MainFragmentRowsAdapter<T extends android.support.v4.app.Fragment> { 2794*344a7f5eSAndroid Build Coastguard Worker ctor public BrowseSupportFragment.MainFragmentRowsAdapter(T); 2795*344a7f5eSAndroid Build Coastguard Worker method public android.support.v17.leanback.widget.RowPresenter.ViewHolder findRowViewHolderByPosition(int); 2796*344a7f5eSAndroid Build Coastguard Worker method public final T getFragment(); 2797*344a7f5eSAndroid Build Coastguard Worker method public int getSelectedPosition(); 2798*344a7f5eSAndroid Build Coastguard Worker method public void setAdapter(android.support.v17.leanback.widget.ObjectAdapter); 2799*344a7f5eSAndroid Build Coastguard Worker method public void setOnItemViewClickedListener(android.support.v17.leanback.widget.OnItemViewClickedListener); 2800*344a7f5eSAndroid Build Coastguard Worker method public void setOnItemViewSelectedListener(android.support.v17.leanback.widget.OnItemViewSelectedListener); 2801*344a7f5eSAndroid Build Coastguard Worker method public void setSelectedPosition(int, boolean, android.support.v17.leanback.widget.Presenter.ViewHolderTask); 2802*344a7f5eSAndroid Build Coastguard Worker method public void setSelectedPosition(int, boolean); 2803*344a7f5eSAndroid Build Coastguard Worker } 2804*344a7f5eSAndroid Build Coastguard Worker 2805*344a7f5eSAndroid Build Coastguard Worker public static abstract interface BrowseSupportFragment.MainFragmentRowsAdapterProvider { 2806*344a7f5eSAndroid Build Coastguard Worker method public abstract android.support.v17.leanback.app.BrowseSupportFragment.MainFragmentRowsAdapter getMainFragmentRowsAdapter(); 2807*344a7f5eSAndroid Build Coastguard Worker } 2808*344a7f5eSAndroid Build Coastguard Worker 2809*344a7f5eSAndroid Build Coastguard Worker public class DetailsFragment extends android.support.v17.leanback.app.BaseFragment { 2810*344a7f5eSAndroid Build Coastguard Worker ctor public DetailsFragment(); 2811*344a7f5eSAndroid Build Coastguard Worker method public android.support.v17.leanback.widget.ObjectAdapter getAdapter(); 2812*344a7f5eSAndroid Build Coastguard Worker method public android.support.v17.leanback.widget.BaseOnItemViewClickedListener getOnItemViewClickedListener(); 2813*344a7f5eSAndroid Build Coastguard Worker method public android.support.v17.leanback.widget.DetailsParallax getParallax(); 2814*344a7f5eSAndroid Build Coastguard Worker method public android.support.v17.leanback.app.RowsFragment getRowsFragment(); 2815*344a7f5eSAndroid Build Coastguard Worker method protected deprecated android.view.View inflateTitle(android.view.LayoutInflater, android.view.ViewGroup, android.os.Bundle); 2816*344a7f5eSAndroid Build Coastguard Worker method protected void onSetDetailsOverviewRowStatus(android.support.v17.leanback.widget.FullWidthDetailsOverviewRowPresenter, android.support.v17.leanback.widget.FullWidthDetailsOverviewRowPresenter.ViewHolder, int, int, int); 2817*344a7f5eSAndroid Build Coastguard Worker method protected void onSetRowStatus(android.support.v17.leanback.widget.RowPresenter, android.support.v17.leanback.widget.RowPresenter.ViewHolder, int, int, int); 2818*344a7f5eSAndroid Build Coastguard Worker method public void setAdapter(android.support.v17.leanback.widget.ObjectAdapter); 2819*344a7f5eSAndroid Build Coastguard Worker method public void setOnItemViewClickedListener(android.support.v17.leanback.widget.BaseOnItemViewClickedListener); 2820*344a7f5eSAndroid Build Coastguard Worker method public void setOnItemViewSelectedListener(android.support.v17.leanback.widget.BaseOnItemViewSelectedListener); 2821*344a7f5eSAndroid Build Coastguard Worker method public void setSelectedPosition(int); 2822*344a7f5eSAndroid Build Coastguard Worker method public void setSelectedPosition(int, boolean); 2823*344a7f5eSAndroid Build Coastguard Worker method protected void setupDetailsOverviewRowPresenter(android.support.v17.leanback.widget.FullWidthDetailsOverviewRowPresenter); 2824*344a7f5eSAndroid Build Coastguard Worker method protected void setupPresenter(android.support.v17.leanback.widget.Presenter); 2825*344a7f5eSAndroid Build Coastguard Worker } 2826*344a7f5eSAndroid Build Coastguard Worker 2827*344a7f5eSAndroid Build Coastguard Worker public class DetailsFragmentBackgroundController { 2828*344a7f5eSAndroid Build Coastguard Worker ctor public DetailsFragmentBackgroundController(android.support.v17.leanback.app.DetailsFragment); 2829*344a7f5eSAndroid Build Coastguard Worker method public boolean canNavigateToVideoFragment(); 2830*344a7f5eSAndroid Build Coastguard Worker method public void enableParallax(); 2831*344a7f5eSAndroid Build Coastguard Worker method public void enableParallax(android.graphics.drawable.Drawable, android.graphics.drawable.Drawable, android.support.v17.leanback.widget.ParallaxTarget.PropertyValuesHolderTarget); 2832*344a7f5eSAndroid Build Coastguard Worker method public final android.app.Fragment findOrCreateVideoFragment(); 2833*344a7f5eSAndroid Build Coastguard Worker method public final android.graphics.drawable.Drawable getBottomDrawable(); 2834*344a7f5eSAndroid Build Coastguard Worker method public final android.graphics.Bitmap getCoverBitmap(); 2835*344a7f5eSAndroid Build Coastguard Worker method public final android.graphics.drawable.Drawable getCoverDrawable(); 2836*344a7f5eSAndroid Build Coastguard Worker method public final int getParallaxDrawableMaxOffset(); 2837*344a7f5eSAndroid Build Coastguard Worker method public final android.support.v17.leanback.media.PlaybackGlue getPlaybackGlue(); 2838*344a7f5eSAndroid Build Coastguard Worker method public final int getSolidColor(); 2839*344a7f5eSAndroid Build Coastguard Worker method public android.support.v17.leanback.media.PlaybackGlueHost onCreateGlueHost(); 2840*344a7f5eSAndroid Build Coastguard Worker method public android.app.Fragment onCreateVideoFragment(); 2841*344a7f5eSAndroid Build Coastguard Worker method public final void setCoverBitmap(android.graphics.Bitmap); 2842*344a7f5eSAndroid Build Coastguard Worker method public final void setParallaxDrawableMaxOffset(int); 2843*344a7f5eSAndroid Build Coastguard Worker method public final void setSolidColor(int); 2844*344a7f5eSAndroid Build Coastguard Worker method public void setupVideoPlayback(android.support.v17.leanback.media.PlaybackGlue); 2845*344a7f5eSAndroid Build Coastguard Worker method public final void switchToRows(); 2846*344a7f5eSAndroid Build Coastguard Worker method public final void switchToVideo(); 2847*344a7f5eSAndroid Build Coastguard Worker } 2848*344a7f5eSAndroid Build Coastguard Worker 2849*344a7f5eSAndroid Build Coastguard Worker public class DetailsSupportFragment extends android.support.v17.leanback.app.BaseSupportFragment { 2850*344a7f5eSAndroid Build Coastguard Worker ctor public DetailsSupportFragment(); 2851*344a7f5eSAndroid Build Coastguard Worker method public android.support.v17.leanback.widget.ObjectAdapter getAdapter(); 2852*344a7f5eSAndroid Build Coastguard Worker method public android.support.v17.leanback.widget.BaseOnItemViewClickedListener getOnItemViewClickedListener(); 2853*344a7f5eSAndroid Build Coastguard Worker method public android.support.v17.leanback.widget.DetailsParallax getParallax(); 2854*344a7f5eSAndroid Build Coastguard Worker method public android.support.v17.leanback.app.RowsSupportFragment getRowsSupportFragment(); 2855*344a7f5eSAndroid Build Coastguard Worker method protected deprecated android.view.View inflateTitle(android.view.LayoutInflater, android.view.ViewGroup, android.os.Bundle); 2856*344a7f5eSAndroid Build Coastguard Worker method protected void onSetDetailsOverviewRowStatus(android.support.v17.leanback.widget.FullWidthDetailsOverviewRowPresenter, android.support.v17.leanback.widget.FullWidthDetailsOverviewRowPresenter.ViewHolder, int, int, int); 2857*344a7f5eSAndroid Build Coastguard Worker method protected void onSetRowStatus(android.support.v17.leanback.widget.RowPresenter, android.support.v17.leanback.widget.RowPresenter.ViewHolder, int, int, int); 2858*344a7f5eSAndroid Build Coastguard Worker method public void setAdapter(android.support.v17.leanback.widget.ObjectAdapter); 2859*344a7f5eSAndroid Build Coastguard Worker method public void setOnItemViewClickedListener(android.support.v17.leanback.widget.BaseOnItemViewClickedListener); 2860*344a7f5eSAndroid Build Coastguard Worker method public void setOnItemViewSelectedListener(android.support.v17.leanback.widget.BaseOnItemViewSelectedListener); 2861*344a7f5eSAndroid Build Coastguard Worker method public void setSelectedPosition(int); 2862*344a7f5eSAndroid Build Coastguard Worker method public void setSelectedPosition(int, boolean); 2863*344a7f5eSAndroid Build Coastguard Worker method protected void setupDetailsOverviewRowPresenter(android.support.v17.leanback.widget.FullWidthDetailsOverviewRowPresenter); 2864*344a7f5eSAndroid Build Coastguard Worker method protected void setupPresenter(android.support.v17.leanback.widget.Presenter); 2865*344a7f5eSAndroid Build Coastguard Worker } 2866*344a7f5eSAndroid Build Coastguard Worker 2867*344a7f5eSAndroid Build Coastguard Worker public class DetailsSupportFragmentBackgroundController { 2868*344a7f5eSAndroid Build Coastguard Worker ctor public DetailsSupportFragmentBackgroundController(android.support.v17.leanback.app.DetailsSupportFragment); 2869*344a7f5eSAndroid Build Coastguard Worker method public boolean canNavigateToVideoSupportFragment(); 2870*344a7f5eSAndroid Build Coastguard Worker method public void enableParallax(); 2871*344a7f5eSAndroid Build Coastguard Worker method public void enableParallax(android.graphics.drawable.Drawable, android.graphics.drawable.Drawable, android.support.v17.leanback.widget.ParallaxTarget.PropertyValuesHolderTarget); 2872*344a7f5eSAndroid Build Coastguard Worker method public final android.support.v4.app.Fragment findOrCreateVideoSupportFragment(); 2873*344a7f5eSAndroid Build Coastguard Worker method public final android.graphics.drawable.Drawable getBottomDrawable(); 2874*344a7f5eSAndroid Build Coastguard Worker method public final android.graphics.Bitmap getCoverBitmap(); 2875*344a7f5eSAndroid Build Coastguard Worker method public final android.graphics.drawable.Drawable getCoverDrawable(); 2876*344a7f5eSAndroid Build Coastguard Worker method public final int getParallaxDrawableMaxOffset(); 2877*344a7f5eSAndroid Build Coastguard Worker method public final android.support.v17.leanback.media.PlaybackGlue getPlaybackGlue(); 2878*344a7f5eSAndroid Build Coastguard Worker method public final int getSolidColor(); 2879*344a7f5eSAndroid Build Coastguard Worker method public android.support.v17.leanback.media.PlaybackGlueHost onCreateGlueHost(); 2880*344a7f5eSAndroid Build Coastguard Worker method public android.support.v4.app.Fragment onCreateVideoSupportFragment(); 2881*344a7f5eSAndroid Build Coastguard Worker method public final void setCoverBitmap(android.graphics.Bitmap); 2882*344a7f5eSAndroid Build Coastguard Worker method public final void setParallaxDrawableMaxOffset(int); 2883*344a7f5eSAndroid Build Coastguard Worker method public final void setSolidColor(int); 2884*344a7f5eSAndroid Build Coastguard Worker method public void setupVideoPlayback(android.support.v17.leanback.media.PlaybackGlue); 2885*344a7f5eSAndroid Build Coastguard Worker method public final void switchToRows(); 2886*344a7f5eSAndroid Build Coastguard Worker method public final void switchToVideo(); 2887*344a7f5eSAndroid Build Coastguard Worker } 2888*344a7f5eSAndroid Build Coastguard Worker 2889*344a7f5eSAndroid Build Coastguard Worker public class ErrorFragment extends android.support.v17.leanback.app.BrandedFragment { 2890*344a7f5eSAndroid Build Coastguard Worker ctor public ErrorFragment(); 2891*344a7f5eSAndroid Build Coastguard Worker method public android.graphics.drawable.Drawable getBackgroundDrawable(); 2892*344a7f5eSAndroid Build Coastguard Worker method public android.view.View.OnClickListener getButtonClickListener(); 2893*344a7f5eSAndroid Build Coastguard Worker method public java.lang.String getButtonText(); 2894*344a7f5eSAndroid Build Coastguard Worker method public android.graphics.drawable.Drawable getImageDrawable(); 2895*344a7f5eSAndroid Build Coastguard Worker method public java.lang.CharSequence getMessage(); 2896*344a7f5eSAndroid Build Coastguard Worker method public boolean isBackgroundTranslucent(); 2897*344a7f5eSAndroid Build Coastguard Worker method public void setBackgroundDrawable(android.graphics.drawable.Drawable); 2898*344a7f5eSAndroid Build Coastguard Worker method public void setButtonClickListener(android.view.View.OnClickListener); 2899*344a7f5eSAndroid Build Coastguard Worker method public void setButtonText(java.lang.String); 2900*344a7f5eSAndroid Build Coastguard Worker method public void setDefaultBackground(boolean); 2901*344a7f5eSAndroid Build Coastguard Worker method public void setImageDrawable(android.graphics.drawable.Drawable); 2902*344a7f5eSAndroid Build Coastguard Worker method public void setMessage(java.lang.CharSequence); 2903*344a7f5eSAndroid Build Coastguard Worker } 2904*344a7f5eSAndroid Build Coastguard Worker 2905*344a7f5eSAndroid Build Coastguard Worker public class ErrorSupportFragment extends android.support.v17.leanback.app.BrandedSupportFragment { 2906*344a7f5eSAndroid Build Coastguard Worker ctor public ErrorSupportFragment(); 2907*344a7f5eSAndroid Build Coastguard Worker method public android.graphics.drawable.Drawable getBackgroundDrawable(); 2908*344a7f5eSAndroid Build Coastguard Worker method public android.view.View.OnClickListener getButtonClickListener(); 2909*344a7f5eSAndroid Build Coastguard Worker method public java.lang.String getButtonText(); 2910*344a7f5eSAndroid Build Coastguard Worker method public android.graphics.drawable.Drawable getImageDrawable(); 2911*344a7f5eSAndroid Build Coastguard Worker method public java.lang.CharSequence getMessage(); 2912*344a7f5eSAndroid Build Coastguard Worker method public boolean isBackgroundTranslucent(); 2913*344a7f5eSAndroid Build Coastguard Worker method public void setBackgroundDrawable(android.graphics.drawable.Drawable); 2914*344a7f5eSAndroid Build Coastguard Worker method public void setButtonClickListener(android.view.View.OnClickListener); 2915*344a7f5eSAndroid Build Coastguard Worker method public void setButtonText(java.lang.String); 2916*344a7f5eSAndroid Build Coastguard Worker method public void setDefaultBackground(boolean); 2917*344a7f5eSAndroid Build Coastguard Worker method public void setImageDrawable(android.graphics.drawable.Drawable); 2918*344a7f5eSAndroid Build Coastguard Worker method public void setMessage(java.lang.CharSequence); 2919*344a7f5eSAndroid Build Coastguard Worker } 2920*344a7f5eSAndroid Build Coastguard Worker 2921*344a7f5eSAndroid Build Coastguard Worker public class GuidedStepFragment extends android.app.Fragment { 2922*344a7f5eSAndroid Build Coastguard Worker ctor public GuidedStepFragment(); 2923*344a7f5eSAndroid Build Coastguard Worker method public static int add(android.app.FragmentManager, android.support.v17.leanback.app.GuidedStepFragment); 2924*344a7f5eSAndroid Build Coastguard Worker method public static int add(android.app.FragmentManager, android.support.v17.leanback.app.GuidedStepFragment, int); 2925*344a7f5eSAndroid Build Coastguard Worker method public static int addAsRoot(android.app.Activity, android.support.v17.leanback.app.GuidedStepFragment, int); 2926*344a7f5eSAndroid Build Coastguard Worker method public void collapseAction(boolean); 2927*344a7f5eSAndroid Build Coastguard Worker method public void collapseSubActions(); 2928*344a7f5eSAndroid Build Coastguard Worker method public void expandAction(android.support.v17.leanback.widget.GuidedAction, boolean); 2929*344a7f5eSAndroid Build Coastguard Worker method public void expandSubActions(android.support.v17.leanback.widget.GuidedAction); 2930*344a7f5eSAndroid Build Coastguard Worker method public android.support.v17.leanback.widget.GuidedAction findActionById(long); 2931*344a7f5eSAndroid Build Coastguard Worker method public int findActionPositionById(long); 2932*344a7f5eSAndroid Build Coastguard Worker method public android.support.v17.leanback.widget.GuidedAction findButtonActionById(long); 2933*344a7f5eSAndroid Build Coastguard Worker method public int findButtonActionPositionById(long); 2934*344a7f5eSAndroid Build Coastguard Worker method public void finishGuidedStepFragments(); 2935*344a7f5eSAndroid Build Coastguard Worker method public android.view.View getActionItemView(int); 2936*344a7f5eSAndroid Build Coastguard Worker method public java.util.List<android.support.v17.leanback.widget.GuidedAction> getActions(); 2937*344a7f5eSAndroid Build Coastguard Worker method public android.view.View getButtonActionItemView(int); 2938*344a7f5eSAndroid Build Coastguard Worker method public java.util.List<android.support.v17.leanback.widget.GuidedAction> getButtonActions(); 2939*344a7f5eSAndroid Build Coastguard Worker method public static android.support.v17.leanback.app.GuidedStepFragment getCurrentGuidedStepFragment(android.app.FragmentManager); 2940*344a7f5eSAndroid Build Coastguard Worker method public android.support.v17.leanback.widget.GuidanceStylist getGuidanceStylist(); 2941*344a7f5eSAndroid Build Coastguard Worker method public android.support.v17.leanback.widget.GuidedActionsStylist getGuidedActionsStylist(); 2942*344a7f5eSAndroid Build Coastguard Worker method public android.support.v17.leanback.widget.GuidedActionsStylist getGuidedButtonActionsStylist(); 2943*344a7f5eSAndroid Build Coastguard Worker method public int getSelectedActionPosition(); 2944*344a7f5eSAndroid Build Coastguard Worker method public int getSelectedButtonActionPosition(); 2945*344a7f5eSAndroid Build Coastguard Worker method public int getUiStyle(); 2946*344a7f5eSAndroid Build Coastguard Worker method public boolean isExpanded(); 2947*344a7f5eSAndroid Build Coastguard Worker method public boolean isFocusOutEndAllowed(); 2948*344a7f5eSAndroid Build Coastguard Worker method public boolean isFocusOutStartAllowed(); 2949*344a7f5eSAndroid Build Coastguard Worker method public boolean isSubActionsExpanded(); 2950*344a7f5eSAndroid Build Coastguard Worker method public void notifyActionChanged(int); 2951*344a7f5eSAndroid Build Coastguard Worker method public void notifyButtonActionChanged(int); 2952*344a7f5eSAndroid Build Coastguard Worker method protected void onAddSharedElementTransition(android.app.FragmentTransaction, android.support.v17.leanback.app.GuidedStepFragment); 2953*344a7f5eSAndroid Build Coastguard Worker method public void onCreateActions(java.util.List<android.support.v17.leanback.widget.GuidedAction>, android.os.Bundle); 2954*344a7f5eSAndroid Build Coastguard Worker method public android.support.v17.leanback.widget.GuidedActionsStylist onCreateActionsStylist(); 2955*344a7f5eSAndroid Build Coastguard Worker method public android.view.View onCreateBackgroundView(android.view.LayoutInflater, android.view.ViewGroup, android.os.Bundle); 2956*344a7f5eSAndroid Build Coastguard Worker method public void onCreateButtonActions(java.util.List<android.support.v17.leanback.widget.GuidedAction>, android.os.Bundle); 2957*344a7f5eSAndroid Build Coastguard Worker method public android.support.v17.leanback.widget.GuidedActionsStylist onCreateButtonActionsStylist(); 2958*344a7f5eSAndroid Build Coastguard Worker method public android.support.v17.leanback.widget.GuidanceStylist.Guidance onCreateGuidance(android.os.Bundle); 2959*344a7f5eSAndroid Build Coastguard Worker method public android.support.v17.leanback.widget.GuidanceStylist onCreateGuidanceStylist(); 2960*344a7f5eSAndroid Build Coastguard Worker method public void onGuidedActionClicked(android.support.v17.leanback.widget.GuidedAction); 2961*344a7f5eSAndroid Build Coastguard Worker method public void onGuidedActionEditCanceled(android.support.v17.leanback.widget.GuidedAction); 2962*344a7f5eSAndroid Build Coastguard Worker method public deprecated void onGuidedActionEdited(android.support.v17.leanback.widget.GuidedAction); 2963*344a7f5eSAndroid Build Coastguard Worker method public long onGuidedActionEditedAndProceed(android.support.v17.leanback.widget.GuidedAction); 2964*344a7f5eSAndroid Build Coastguard Worker method public void onGuidedActionFocused(android.support.v17.leanback.widget.GuidedAction); 2965*344a7f5eSAndroid Build Coastguard Worker method protected void onProvideFragmentTransitions(); 2966*344a7f5eSAndroid Build Coastguard Worker method public int onProvideTheme(); 2967*344a7f5eSAndroid Build Coastguard Worker method public boolean onSubGuidedActionClicked(android.support.v17.leanback.widget.GuidedAction); 2968*344a7f5eSAndroid Build Coastguard Worker method public void openInEditMode(android.support.v17.leanback.widget.GuidedAction); 2969*344a7f5eSAndroid Build Coastguard Worker method public void popBackStackToGuidedStepFragment(java.lang.Class, int); 2970*344a7f5eSAndroid Build Coastguard Worker method public void setActions(java.util.List<android.support.v17.leanback.widget.GuidedAction>); 2971*344a7f5eSAndroid Build Coastguard Worker method public void setButtonActions(java.util.List<android.support.v17.leanback.widget.GuidedAction>); 2972*344a7f5eSAndroid Build Coastguard Worker method public void setSelectedActionPosition(int); 2973*344a7f5eSAndroid Build Coastguard Worker method public void setSelectedButtonActionPosition(int); 2974*344a7f5eSAndroid Build Coastguard Worker method public void setUiStyle(int); 2975*344a7f5eSAndroid Build Coastguard Worker field public static final java.lang.String EXTRA_UI_STYLE = "uiStyle"; 2976*344a7f5eSAndroid Build Coastguard Worker field public static final int UI_STYLE_ACTIVITY_ROOT = 2; // 0x2 2977*344a7f5eSAndroid Build Coastguard Worker field public static final deprecated int UI_STYLE_DEFAULT = 0; // 0x0 2978*344a7f5eSAndroid Build Coastguard Worker field public static final int UI_STYLE_ENTRANCE = 1; // 0x1 2979*344a7f5eSAndroid Build Coastguard Worker field public static final int UI_STYLE_REPLACE = 0; // 0x0 2980*344a7f5eSAndroid Build Coastguard Worker } 2981*344a7f5eSAndroid Build Coastguard Worker 2982*344a7f5eSAndroid Build Coastguard Worker public class GuidedStepSupportFragment extends android.support.v4.app.Fragment { 2983*344a7f5eSAndroid Build Coastguard Worker ctor public GuidedStepSupportFragment(); 2984*344a7f5eSAndroid Build Coastguard Worker method public static int add(android.support.v4.app.FragmentManager, android.support.v17.leanback.app.GuidedStepSupportFragment); 2985*344a7f5eSAndroid Build Coastguard Worker method public static int add(android.support.v4.app.FragmentManager, android.support.v17.leanback.app.GuidedStepSupportFragment, int); 2986*344a7f5eSAndroid Build Coastguard Worker method public static int addAsRoot(android.support.v4.app.FragmentActivity, android.support.v17.leanback.app.GuidedStepSupportFragment, int); 2987*344a7f5eSAndroid Build Coastguard Worker method public void collapseAction(boolean); 2988*344a7f5eSAndroid Build Coastguard Worker method public void collapseSubActions(); 2989*344a7f5eSAndroid Build Coastguard Worker method public void expandAction(android.support.v17.leanback.widget.GuidedAction, boolean); 2990*344a7f5eSAndroid Build Coastguard Worker method public void expandSubActions(android.support.v17.leanback.widget.GuidedAction); 2991*344a7f5eSAndroid Build Coastguard Worker method public android.support.v17.leanback.widget.GuidedAction findActionById(long); 2992*344a7f5eSAndroid Build Coastguard Worker method public int findActionPositionById(long); 2993*344a7f5eSAndroid Build Coastguard Worker method public android.support.v17.leanback.widget.GuidedAction findButtonActionById(long); 2994*344a7f5eSAndroid Build Coastguard Worker method public int findButtonActionPositionById(long); 2995*344a7f5eSAndroid Build Coastguard Worker method public void finishGuidedStepSupportFragments(); 2996*344a7f5eSAndroid Build Coastguard Worker method public android.view.View getActionItemView(int); 2997*344a7f5eSAndroid Build Coastguard Worker method public java.util.List<android.support.v17.leanback.widget.GuidedAction> getActions(); 2998*344a7f5eSAndroid Build Coastguard Worker method public android.view.View getButtonActionItemView(int); 2999*344a7f5eSAndroid Build Coastguard Worker method public java.util.List<android.support.v17.leanback.widget.GuidedAction> getButtonActions(); 3000*344a7f5eSAndroid Build Coastguard Worker method public static android.support.v17.leanback.app.GuidedStepSupportFragment getCurrentGuidedStepSupportFragment(android.support.v4.app.FragmentManager); 3001*344a7f5eSAndroid Build Coastguard Worker method public android.support.v17.leanback.widget.GuidanceStylist getGuidanceStylist(); 3002*344a7f5eSAndroid Build Coastguard Worker method public android.support.v17.leanback.widget.GuidedActionsStylist getGuidedActionsStylist(); 3003*344a7f5eSAndroid Build Coastguard Worker method public android.support.v17.leanback.widget.GuidedActionsStylist getGuidedButtonActionsStylist(); 3004*344a7f5eSAndroid Build Coastguard Worker method public int getSelectedActionPosition(); 3005*344a7f5eSAndroid Build Coastguard Worker method public int getSelectedButtonActionPosition(); 3006*344a7f5eSAndroid Build Coastguard Worker method public int getUiStyle(); 3007*344a7f5eSAndroid Build Coastguard Worker method public boolean isExpanded(); 3008*344a7f5eSAndroid Build Coastguard Worker method public boolean isFocusOutEndAllowed(); 3009*344a7f5eSAndroid Build Coastguard Worker method public boolean isFocusOutStartAllowed(); 3010*344a7f5eSAndroid Build Coastguard Worker method public boolean isSubActionsExpanded(); 3011*344a7f5eSAndroid Build Coastguard Worker method public void notifyActionChanged(int); 3012*344a7f5eSAndroid Build Coastguard Worker method public void notifyButtonActionChanged(int); 3013*344a7f5eSAndroid Build Coastguard Worker method protected void onAddSharedElementTransition(android.support.v4.app.FragmentTransaction, android.support.v17.leanback.app.GuidedStepSupportFragment); 3014*344a7f5eSAndroid Build Coastguard Worker method public void onCreateActions(java.util.List<android.support.v17.leanback.widget.GuidedAction>, android.os.Bundle); 3015*344a7f5eSAndroid Build Coastguard Worker method public android.support.v17.leanback.widget.GuidedActionsStylist onCreateActionsStylist(); 3016*344a7f5eSAndroid Build Coastguard Worker method public android.view.View onCreateBackgroundView(android.view.LayoutInflater, android.view.ViewGroup, android.os.Bundle); 3017*344a7f5eSAndroid Build Coastguard Worker method public void onCreateButtonActions(java.util.List<android.support.v17.leanback.widget.GuidedAction>, android.os.Bundle); 3018*344a7f5eSAndroid Build Coastguard Worker method public android.support.v17.leanback.widget.GuidedActionsStylist onCreateButtonActionsStylist(); 3019*344a7f5eSAndroid Build Coastguard Worker method public android.support.v17.leanback.widget.GuidanceStylist.Guidance onCreateGuidance(android.os.Bundle); 3020*344a7f5eSAndroid Build Coastguard Worker method public android.support.v17.leanback.widget.GuidanceStylist onCreateGuidanceStylist(); 3021*344a7f5eSAndroid Build Coastguard Worker method public void onGuidedActionClicked(android.support.v17.leanback.widget.GuidedAction); 3022*344a7f5eSAndroid Build Coastguard Worker method public void onGuidedActionEditCanceled(android.support.v17.leanback.widget.GuidedAction); 3023*344a7f5eSAndroid Build Coastguard Worker method public deprecated void onGuidedActionEdited(android.support.v17.leanback.widget.GuidedAction); 3024*344a7f5eSAndroid Build Coastguard Worker method public long onGuidedActionEditedAndProceed(android.support.v17.leanback.widget.GuidedAction); 3025*344a7f5eSAndroid Build Coastguard Worker method public void onGuidedActionFocused(android.support.v17.leanback.widget.GuidedAction); 3026*344a7f5eSAndroid Build Coastguard Worker method protected void onProvideFragmentTransitions(); 3027*344a7f5eSAndroid Build Coastguard Worker method public int onProvideTheme(); 3028*344a7f5eSAndroid Build Coastguard Worker method public boolean onSubGuidedActionClicked(android.support.v17.leanback.widget.GuidedAction); 3029*344a7f5eSAndroid Build Coastguard Worker method public void openInEditMode(android.support.v17.leanback.widget.GuidedAction); 3030*344a7f5eSAndroid Build Coastguard Worker method public void popBackStackToGuidedStepSupportFragment(java.lang.Class, int); 3031*344a7f5eSAndroid Build Coastguard Worker method public void setActions(java.util.List<android.support.v17.leanback.widget.GuidedAction>); 3032*344a7f5eSAndroid Build Coastguard Worker method public void setButtonActions(java.util.List<android.support.v17.leanback.widget.GuidedAction>); 3033*344a7f5eSAndroid Build Coastguard Worker method public void setSelectedActionPosition(int); 3034*344a7f5eSAndroid Build Coastguard Worker method public void setSelectedButtonActionPosition(int); 3035*344a7f5eSAndroid Build Coastguard Worker method public void setUiStyle(int); 3036*344a7f5eSAndroid Build Coastguard Worker field public static final java.lang.String EXTRA_UI_STYLE = "uiStyle"; 3037*344a7f5eSAndroid Build Coastguard Worker field public static final int UI_STYLE_ACTIVITY_ROOT = 2; // 0x2 3038*344a7f5eSAndroid Build Coastguard Worker field public static final deprecated int UI_STYLE_DEFAULT = 0; // 0x0 3039*344a7f5eSAndroid Build Coastguard Worker field public static final int UI_STYLE_ENTRANCE = 1; // 0x1 3040*344a7f5eSAndroid Build Coastguard Worker field public static final int UI_STYLE_REPLACE = 0; // 0x0 3041*344a7f5eSAndroid Build Coastguard Worker } 3042*344a7f5eSAndroid Build Coastguard Worker 3043*344a7f5eSAndroid Build Coastguard Worker public class HeadersFragment extends android.support.v17.leanback.app.BaseRowFragment { 3044*344a7f5eSAndroid Build Coastguard Worker ctor public HeadersFragment(); 3045*344a7f5eSAndroid Build Coastguard Worker method public boolean isScrolling(); 3046*344a7f5eSAndroid Build Coastguard Worker method public void setOnHeaderClickedListener(android.support.v17.leanback.app.HeadersFragment.OnHeaderClickedListener); 3047*344a7f5eSAndroid Build Coastguard Worker method public void setOnHeaderViewSelectedListener(android.support.v17.leanback.app.HeadersFragment.OnHeaderViewSelectedListener); 3048*344a7f5eSAndroid Build Coastguard Worker } 3049*344a7f5eSAndroid Build Coastguard Worker 3050*344a7f5eSAndroid Build Coastguard Worker public static abstract interface HeadersFragment.OnHeaderClickedListener { 3051*344a7f5eSAndroid Build Coastguard Worker method public abstract void onHeaderClicked(android.support.v17.leanback.widget.RowHeaderPresenter.ViewHolder, android.support.v17.leanback.widget.Row); 3052*344a7f5eSAndroid Build Coastguard Worker } 3053*344a7f5eSAndroid Build Coastguard Worker 3054*344a7f5eSAndroid Build Coastguard Worker public static abstract interface HeadersFragment.OnHeaderViewSelectedListener { 3055*344a7f5eSAndroid Build Coastguard Worker method public abstract void onHeaderSelected(android.support.v17.leanback.widget.RowHeaderPresenter.ViewHolder, android.support.v17.leanback.widget.Row); 3056*344a7f5eSAndroid Build Coastguard Worker } 3057*344a7f5eSAndroid Build Coastguard Worker 3058*344a7f5eSAndroid Build Coastguard Worker public class HeadersSupportFragment extends android.support.v17.leanback.app.BaseRowSupportFragment { 3059*344a7f5eSAndroid Build Coastguard Worker ctor public HeadersSupportFragment(); 3060*344a7f5eSAndroid Build Coastguard Worker method public boolean isScrolling(); 3061*344a7f5eSAndroid Build Coastguard Worker method public void setOnHeaderClickedListener(android.support.v17.leanback.app.HeadersSupportFragment.OnHeaderClickedListener); 3062*344a7f5eSAndroid Build Coastguard Worker method public void setOnHeaderViewSelectedListener(android.support.v17.leanback.app.HeadersSupportFragment.OnHeaderViewSelectedListener); 3063*344a7f5eSAndroid Build Coastguard Worker } 3064*344a7f5eSAndroid Build Coastguard Worker 3065*344a7f5eSAndroid Build Coastguard Worker public static abstract interface HeadersSupportFragment.OnHeaderClickedListener { 3066*344a7f5eSAndroid Build Coastguard Worker method public abstract void onHeaderClicked(android.support.v17.leanback.widget.RowHeaderPresenter.ViewHolder, android.support.v17.leanback.widget.Row); 3067*344a7f5eSAndroid Build Coastguard Worker } 3068*344a7f5eSAndroid Build Coastguard Worker 3069*344a7f5eSAndroid Build Coastguard Worker public static abstract interface HeadersSupportFragment.OnHeaderViewSelectedListener { 3070*344a7f5eSAndroid Build Coastguard Worker method public abstract void onHeaderSelected(android.support.v17.leanback.widget.RowHeaderPresenter.ViewHolder, android.support.v17.leanback.widget.Row); 3071*344a7f5eSAndroid Build Coastguard Worker } 3072*344a7f5eSAndroid Build Coastguard Worker 3073*344a7f5eSAndroid Build Coastguard Worker public abstract deprecated class MediaControllerGlue extends android.support.v17.leanback.app.PlaybackControlGlue { 3074*344a7f5eSAndroid Build Coastguard Worker ctor public MediaControllerGlue(android.content.Context, android.support.v17.leanback.app.PlaybackOverlayFragment, int[]); 3075*344a7f5eSAndroid Build Coastguard Worker ctor public MediaControllerGlue(android.content.Context, android.support.v17.leanback.app.PlaybackOverlayFragment, int[], int[]); 3076*344a7f5eSAndroid Build Coastguard Worker method public void attachToMediaController(android.support.v4.media.session.MediaControllerCompat); 3077*344a7f5eSAndroid Build Coastguard Worker method public void detach(); 3078*344a7f5eSAndroid Build Coastguard Worker method public int getCurrentPosition(); 3079*344a7f5eSAndroid Build Coastguard Worker method public int getCurrentSpeedId(); 3080*344a7f5eSAndroid Build Coastguard Worker method public android.graphics.drawable.Drawable getMediaArt(); 3081*344a7f5eSAndroid Build Coastguard Worker method public final android.support.v4.media.session.MediaControllerCompat getMediaController(); 3082*344a7f5eSAndroid Build Coastguard Worker method public int getMediaDuration(); 3083*344a7f5eSAndroid Build Coastguard Worker method public java.lang.CharSequence getMediaSubtitle(); 3084*344a7f5eSAndroid Build Coastguard Worker method public java.lang.CharSequence getMediaTitle(); 3085*344a7f5eSAndroid Build Coastguard Worker method public long getSupportedActions(); 3086*344a7f5eSAndroid Build Coastguard Worker method public boolean hasValidMedia(); 3087*344a7f5eSAndroid Build Coastguard Worker method public boolean isMediaPlaying(); 3088*344a7f5eSAndroid Build Coastguard Worker } 3089*344a7f5eSAndroid Build Coastguard Worker 3090*344a7f5eSAndroid Build Coastguard Worker public abstract class OnboardingFragment extends android.app.Fragment { 3091*344a7f5eSAndroid Build Coastguard Worker ctor public OnboardingFragment(); 3092*344a7f5eSAndroid Build Coastguard Worker method public final int getArrowBackgroundColor(); 3093*344a7f5eSAndroid Build Coastguard Worker method public final int getArrowColor(); 3094*344a7f5eSAndroid Build Coastguard Worker method protected final int getCurrentPageIndex(); 3095*344a7f5eSAndroid Build Coastguard Worker method public final int getDescriptionViewTextColor(); 3096*344a7f5eSAndroid Build Coastguard Worker method public final int getDotBackgroundColor(); 3097*344a7f5eSAndroid Build Coastguard Worker method public final int getIconResourceId(); 3098*344a7f5eSAndroid Build Coastguard Worker method public final int getLogoResourceId(); 3099*344a7f5eSAndroid Build Coastguard Worker method protected abstract int getPageCount(); 3100*344a7f5eSAndroid Build Coastguard Worker method protected abstract java.lang.CharSequence getPageDescription(int); 3101*344a7f5eSAndroid Build Coastguard Worker method protected abstract java.lang.CharSequence getPageTitle(int); 3102*344a7f5eSAndroid Build Coastguard Worker method public final java.lang.CharSequence getStartButtonText(); 3103*344a7f5eSAndroid Build Coastguard Worker method public final int getTitleViewTextColor(); 3104*344a7f5eSAndroid Build Coastguard Worker method protected final boolean isLogoAnimationFinished(); 3105*344a7f5eSAndroid Build Coastguard Worker method protected void moveToNextPage(); 3106*344a7f5eSAndroid Build Coastguard Worker method protected void moveToPreviousPage(); 3107*344a7f5eSAndroid Build Coastguard Worker method protected abstract android.view.View onCreateBackgroundView(android.view.LayoutInflater, android.view.ViewGroup); 3108*344a7f5eSAndroid Build Coastguard Worker method protected abstract android.view.View onCreateContentView(android.view.LayoutInflater, android.view.ViewGroup); 3109*344a7f5eSAndroid Build Coastguard Worker method protected android.animation.Animator onCreateDescriptionAnimator(); 3110*344a7f5eSAndroid Build Coastguard Worker method protected android.animation.Animator onCreateEnterAnimation(); 3111*344a7f5eSAndroid Build Coastguard Worker method protected abstract android.view.View onCreateForegroundView(android.view.LayoutInflater, android.view.ViewGroup); 3112*344a7f5eSAndroid Build Coastguard Worker method protected android.animation.Animator onCreateLogoAnimation(); 3113*344a7f5eSAndroid Build Coastguard Worker method protected android.animation.Animator onCreateTitleAnimator(); 3114*344a7f5eSAndroid Build Coastguard Worker method protected void onFinishFragment(); 3115*344a7f5eSAndroid Build Coastguard Worker method protected void onLogoAnimationFinished(); 3116*344a7f5eSAndroid Build Coastguard Worker method protected void onPageChanged(int, int); 3117*344a7f5eSAndroid Build Coastguard Worker method public int onProvideTheme(); 3118*344a7f5eSAndroid Build Coastguard Worker method public void setArrowBackgroundColor(int); 3119*344a7f5eSAndroid Build Coastguard Worker method public void setArrowColor(int); 3120*344a7f5eSAndroid Build Coastguard Worker method public void setDescriptionViewTextColor(int); 3121*344a7f5eSAndroid Build Coastguard Worker method public void setDotBackgroundColor(int); 3122*344a7f5eSAndroid Build Coastguard Worker method public final void setIconResouceId(int); 3123*344a7f5eSAndroid Build Coastguard Worker method public final void setLogoResourceId(int); 3124*344a7f5eSAndroid Build Coastguard Worker method public void setStartButtonText(java.lang.CharSequence); 3125*344a7f5eSAndroid Build Coastguard Worker method public void setTitleViewTextColor(int); 3126*344a7f5eSAndroid Build Coastguard Worker method protected final void startEnterAnimation(boolean); 3127*344a7f5eSAndroid Build Coastguard Worker } 3128*344a7f5eSAndroid Build Coastguard Worker 3129*344a7f5eSAndroid Build Coastguard Worker public abstract class OnboardingSupportFragment extends android.support.v4.app.Fragment { 3130*344a7f5eSAndroid Build Coastguard Worker ctor public OnboardingSupportFragment(); 3131*344a7f5eSAndroid Build Coastguard Worker method public final int getArrowBackgroundColor(); 3132*344a7f5eSAndroid Build Coastguard Worker method public final int getArrowColor(); 3133*344a7f5eSAndroid Build Coastguard Worker method protected final int getCurrentPageIndex(); 3134*344a7f5eSAndroid Build Coastguard Worker method public final int getDescriptionViewTextColor(); 3135*344a7f5eSAndroid Build Coastguard Worker method public final int getDotBackgroundColor(); 3136*344a7f5eSAndroid Build Coastguard Worker method public final int getIconResourceId(); 3137*344a7f5eSAndroid Build Coastguard Worker method public final int getLogoResourceId(); 3138*344a7f5eSAndroid Build Coastguard Worker method protected abstract int getPageCount(); 3139*344a7f5eSAndroid Build Coastguard Worker method protected abstract java.lang.CharSequence getPageDescription(int); 3140*344a7f5eSAndroid Build Coastguard Worker method protected abstract java.lang.CharSequence getPageTitle(int); 3141*344a7f5eSAndroid Build Coastguard Worker method public final java.lang.CharSequence getStartButtonText(); 3142*344a7f5eSAndroid Build Coastguard Worker method public final int getTitleViewTextColor(); 3143*344a7f5eSAndroid Build Coastguard Worker method protected final boolean isLogoAnimationFinished(); 3144*344a7f5eSAndroid Build Coastguard Worker method protected void moveToNextPage(); 3145*344a7f5eSAndroid Build Coastguard Worker method protected void moveToPreviousPage(); 3146*344a7f5eSAndroid Build Coastguard Worker method protected abstract android.view.View onCreateBackgroundView(android.view.LayoutInflater, android.view.ViewGroup); 3147*344a7f5eSAndroid Build Coastguard Worker method protected abstract android.view.View onCreateContentView(android.view.LayoutInflater, android.view.ViewGroup); 3148*344a7f5eSAndroid Build Coastguard Worker method protected android.animation.Animator onCreateDescriptionAnimator(); 3149*344a7f5eSAndroid Build Coastguard Worker method protected android.animation.Animator onCreateEnterAnimation(); 3150*344a7f5eSAndroid Build Coastguard Worker method protected abstract android.view.View onCreateForegroundView(android.view.LayoutInflater, android.view.ViewGroup); 3151*344a7f5eSAndroid Build Coastguard Worker method protected android.animation.Animator onCreateLogoAnimation(); 3152*344a7f5eSAndroid Build Coastguard Worker method protected android.animation.Animator onCreateTitleAnimator(); 3153*344a7f5eSAndroid Build Coastguard Worker method protected void onFinishFragment(); 3154*344a7f5eSAndroid Build Coastguard Worker method protected void onLogoAnimationFinished(); 3155*344a7f5eSAndroid Build Coastguard Worker method protected void onPageChanged(int, int); 3156*344a7f5eSAndroid Build Coastguard Worker method public int onProvideTheme(); 3157*344a7f5eSAndroid Build Coastguard Worker method public void setArrowBackgroundColor(int); 3158*344a7f5eSAndroid Build Coastguard Worker method public void setArrowColor(int); 3159*344a7f5eSAndroid Build Coastguard Worker method public void setDescriptionViewTextColor(int); 3160*344a7f5eSAndroid Build Coastguard Worker method public void setDotBackgroundColor(int); 3161*344a7f5eSAndroid Build Coastguard Worker method public final void setIconResouceId(int); 3162*344a7f5eSAndroid Build Coastguard Worker method public final void setLogoResourceId(int); 3163*344a7f5eSAndroid Build Coastguard Worker method public void setStartButtonText(java.lang.CharSequence); 3164*344a7f5eSAndroid Build Coastguard Worker method public void setTitleViewTextColor(int); 3165*344a7f5eSAndroid Build Coastguard Worker method protected final void startEnterAnimation(boolean); 3166*344a7f5eSAndroid Build Coastguard Worker } 3167*344a7f5eSAndroid Build Coastguard Worker 3168*344a7f5eSAndroid Build Coastguard Worker public abstract deprecated class PlaybackControlGlue extends android.support.v17.leanback.media.PlaybackControlGlue { 3169*344a7f5eSAndroid Build Coastguard Worker ctor public PlaybackControlGlue(android.content.Context, int[]); 3170*344a7f5eSAndroid Build Coastguard Worker ctor public PlaybackControlGlue(android.content.Context, int[], int[]); 3171*344a7f5eSAndroid Build Coastguard Worker ctor public PlaybackControlGlue(android.content.Context, android.support.v17.leanback.app.PlaybackOverlayFragment, int[]); 3172*344a7f5eSAndroid Build Coastguard Worker ctor public PlaybackControlGlue(android.content.Context, android.support.v17.leanback.app.PlaybackOverlayFragment, int[], int[]); 3173*344a7f5eSAndroid Build Coastguard Worker method public android.support.v17.leanback.widget.PlaybackControlsRowPresenter createControlsRowAndPresenter(); 3174*344a7f5eSAndroid Build Coastguard Worker method protected android.support.v17.leanback.widget.SparseArrayObjectAdapter createPrimaryActionsAdapter(android.support.v17.leanback.widget.PresenterSelector); 3175*344a7f5eSAndroid Build Coastguard Worker method public android.support.v17.leanback.app.PlaybackOverlayFragment getFragment(); 3176*344a7f5eSAndroid Build Coastguard Worker method public deprecated android.support.v17.leanback.widget.OnItemViewClickedListener getOnItemViewClickedListener(); 3177*344a7f5eSAndroid Build Coastguard Worker method public final void next(); 3178*344a7f5eSAndroid Build Coastguard Worker method protected void onRowChanged(android.support.v17.leanback.widget.PlaybackControlsRow); 3179*344a7f5eSAndroid Build Coastguard Worker method public final void pause(); 3180*344a7f5eSAndroid Build Coastguard Worker method protected deprecated void pausePlayback(); 3181*344a7f5eSAndroid Build Coastguard Worker method public final void play(int); 3182*344a7f5eSAndroid Build Coastguard Worker method public final void previous(); 3183*344a7f5eSAndroid Build Coastguard Worker method public deprecated void setOnItemViewClickedListener(android.support.v17.leanback.widget.OnItemViewClickedListener); 3184*344a7f5eSAndroid Build Coastguard Worker method protected deprecated void skipToNext(); 3185*344a7f5eSAndroid Build Coastguard Worker method protected deprecated void skipToPrevious(); 3186*344a7f5eSAndroid Build Coastguard Worker method protected deprecated void startPlayback(int); 3187*344a7f5eSAndroid Build Coastguard Worker } 3188*344a7f5eSAndroid Build Coastguard Worker 3189*344a7f5eSAndroid Build Coastguard Worker public static abstract deprecated interface PlaybackControlGlue.InputEventHandler { 3190*344a7f5eSAndroid Build Coastguard Worker method public abstract boolean handleInputEvent(android.view.InputEvent); 3191*344a7f5eSAndroid Build Coastguard Worker } 3192*344a7f5eSAndroid Build Coastguard Worker 3193*344a7f5eSAndroid Build Coastguard Worker public abstract deprecated class PlaybackControlSupportGlue extends android.support.v17.leanback.app.PlaybackControlGlue { 3194*344a7f5eSAndroid Build Coastguard Worker ctor public PlaybackControlSupportGlue(android.content.Context, int[]); 3195*344a7f5eSAndroid Build Coastguard Worker ctor public PlaybackControlSupportGlue(android.content.Context, int[], int[]); 3196*344a7f5eSAndroid Build Coastguard Worker ctor public PlaybackControlSupportGlue(android.content.Context, android.support.v17.leanback.app.PlaybackOverlaySupportFragment, int[]); 3197*344a7f5eSAndroid Build Coastguard Worker ctor public PlaybackControlSupportGlue(android.content.Context, android.support.v17.leanback.app.PlaybackOverlaySupportFragment, int[], int[]); 3198*344a7f5eSAndroid Build Coastguard Worker field public static final int ACTION_CUSTOM_LEFT_FIRST = 1; // 0x1 3199*344a7f5eSAndroid Build Coastguard Worker field public static final int ACTION_CUSTOM_RIGHT_FIRST = 4096; // 0x1000 3200*344a7f5eSAndroid Build Coastguard Worker field public static final int ACTION_FAST_FORWARD = 128; // 0x80 3201*344a7f5eSAndroid Build Coastguard Worker field public static final int ACTION_PLAY_PAUSE = 64; // 0x40 3202*344a7f5eSAndroid Build Coastguard Worker field public static final int ACTION_REWIND = 32; // 0x20 3203*344a7f5eSAndroid Build Coastguard Worker field public static final int ACTION_SKIP_TO_NEXT = 256; // 0x100 3204*344a7f5eSAndroid Build Coastguard Worker field public static final int ACTION_SKIP_TO_PREVIOUS = 16; // 0x10 3205*344a7f5eSAndroid Build Coastguard Worker field public static final int PLAYBACK_SPEED_FAST_L0 = 10; // 0xa 3206*344a7f5eSAndroid Build Coastguard Worker field public static final int PLAYBACK_SPEED_FAST_L1 = 11; // 0xb 3207*344a7f5eSAndroid Build Coastguard Worker field public static final int PLAYBACK_SPEED_FAST_L2 = 12; // 0xc 3208*344a7f5eSAndroid Build Coastguard Worker field public static final int PLAYBACK_SPEED_FAST_L3 = 13; // 0xd 3209*344a7f5eSAndroid Build Coastguard Worker field public static final int PLAYBACK_SPEED_FAST_L4 = 14; // 0xe 3210*344a7f5eSAndroid Build Coastguard Worker field public static final int PLAYBACK_SPEED_INVALID = -1; // 0xffffffff 3211*344a7f5eSAndroid Build Coastguard Worker field public static final int PLAYBACK_SPEED_NORMAL = 1; // 0x1 3212*344a7f5eSAndroid Build Coastguard Worker field public static final int PLAYBACK_SPEED_PAUSED = 0; // 0x0 3213*344a7f5eSAndroid Build Coastguard Worker } 3214*344a7f5eSAndroid Build Coastguard Worker 3215*344a7f5eSAndroid Build Coastguard Worker public class PlaybackFragment extends android.app.Fragment { 3216*344a7f5eSAndroid Build Coastguard Worker ctor public PlaybackFragment(); 3217*344a7f5eSAndroid Build Coastguard Worker method public deprecated void fadeOut(); 3218*344a7f5eSAndroid Build Coastguard Worker method public android.support.v17.leanback.widget.ObjectAdapter getAdapter(); 3219*344a7f5eSAndroid Build Coastguard Worker method public int getBackgroundType(); 3220*344a7f5eSAndroid Build Coastguard Worker method public android.support.v17.leanback.app.ProgressBarManager getProgressBarManager(); 3221*344a7f5eSAndroid Build Coastguard Worker method public void hideControlsOverlay(boolean); 3222*344a7f5eSAndroid Build Coastguard Worker method public boolean isControlsOverlayAutoHideEnabled(); 3223*344a7f5eSAndroid Build Coastguard Worker method public boolean isControlsOverlayVisible(); 3224*344a7f5eSAndroid Build Coastguard Worker method public deprecated boolean isFadingEnabled(); 3225*344a7f5eSAndroid Build Coastguard Worker method public void notifyPlaybackRowChanged(); 3226*344a7f5eSAndroid Build Coastguard Worker method protected void onBufferingStateChanged(boolean); 3227*344a7f5eSAndroid Build Coastguard Worker method protected void onError(int, java.lang.CharSequence); 3228*344a7f5eSAndroid Build Coastguard Worker method protected void onVideoSizeChanged(int, int); 3229*344a7f5eSAndroid Build Coastguard Worker method public void setAdapter(android.support.v17.leanback.widget.ObjectAdapter); 3230*344a7f5eSAndroid Build Coastguard Worker method public void setBackgroundType(int); 3231*344a7f5eSAndroid Build Coastguard Worker method public void setControlsOverlayAutoHideEnabled(boolean); 3232*344a7f5eSAndroid Build Coastguard Worker method public deprecated void setFadingEnabled(boolean); 3233*344a7f5eSAndroid Build Coastguard Worker method public void setHostCallback(android.support.v17.leanback.media.PlaybackGlueHost.HostCallback); 3234*344a7f5eSAndroid Build Coastguard Worker method public void setOnItemViewClickedListener(android.support.v17.leanback.widget.BaseOnItemViewClickedListener); 3235*344a7f5eSAndroid Build Coastguard Worker method public void setOnItemViewSelectedListener(android.support.v17.leanback.widget.BaseOnItemViewSelectedListener); 3236*344a7f5eSAndroid Build Coastguard Worker method public final void setOnKeyInterceptListener(android.view.View.OnKeyListener); 3237*344a7f5eSAndroid Build Coastguard Worker method public void setOnPlaybackItemViewClickedListener(android.support.v17.leanback.widget.BaseOnItemViewClickedListener); 3238*344a7f5eSAndroid Build Coastguard Worker method public void setPlaybackRow(android.support.v17.leanback.widget.Row); 3239*344a7f5eSAndroid Build Coastguard Worker method public void setPlaybackRowPresenter(android.support.v17.leanback.widget.PlaybackRowPresenter); 3240*344a7f5eSAndroid Build Coastguard Worker method public void setPlaybackSeekUiClient(android.support.v17.leanback.widget.PlaybackSeekUi.Client); 3241*344a7f5eSAndroid Build Coastguard Worker method public void setSelectedPosition(int); 3242*344a7f5eSAndroid Build Coastguard Worker method public void setSelectedPosition(int, boolean); 3243*344a7f5eSAndroid Build Coastguard Worker method public void showControlsOverlay(boolean); 3244*344a7f5eSAndroid Build Coastguard Worker method public void tickle(); 3245*344a7f5eSAndroid Build Coastguard Worker field public static final int BG_DARK = 1; // 0x1 3246*344a7f5eSAndroid Build Coastguard Worker field public static final int BG_LIGHT = 2; // 0x2 3247*344a7f5eSAndroid Build Coastguard Worker field public static final int BG_NONE = 0; // 0x0 3248*344a7f5eSAndroid Build Coastguard Worker } 3249*344a7f5eSAndroid Build Coastguard Worker 3250*344a7f5eSAndroid Build Coastguard Worker public class PlaybackFragmentGlueHost extends android.support.v17.leanback.media.PlaybackGlueHost implements android.support.v17.leanback.widget.PlaybackSeekUi { 3251*344a7f5eSAndroid Build Coastguard Worker ctor public PlaybackFragmentGlueHost(android.support.v17.leanback.app.PlaybackFragment); 3252*344a7f5eSAndroid Build Coastguard Worker method public void setPlaybackSeekUiClient(android.support.v17.leanback.widget.PlaybackSeekUi.Client); 3253*344a7f5eSAndroid Build Coastguard Worker } 3254*344a7f5eSAndroid Build Coastguard Worker 3255*344a7f5eSAndroid Build Coastguard Worker public deprecated class PlaybackOverlayFragment extends android.support.v17.leanback.app.DetailsFragment { 3256*344a7f5eSAndroid Build Coastguard Worker ctor public PlaybackOverlayFragment(); 3257*344a7f5eSAndroid Build Coastguard Worker method public void fadeOut(); 3258*344a7f5eSAndroid Build Coastguard Worker method public int getBackgroundType(); 3259*344a7f5eSAndroid Build Coastguard Worker method public final android.support.v17.leanback.app.PlaybackControlGlue.InputEventHandler getEventHandler(); 3260*344a7f5eSAndroid Build Coastguard Worker method public android.support.v17.leanback.app.PlaybackOverlayFragment.OnFadeCompleteListener getFadeCompleteListener(); 3261*344a7f5eSAndroid Build Coastguard Worker method public final deprecated android.support.v17.leanback.app.PlaybackOverlayFragment.InputEventHandler getInputEventHandler(); 3262*344a7f5eSAndroid Build Coastguard Worker method public boolean isFadingEnabled(); 3263*344a7f5eSAndroid Build Coastguard Worker method public void setBackgroundType(int); 3264*344a7f5eSAndroid Build Coastguard Worker method public final void setEventHandler(android.support.v17.leanback.app.PlaybackControlGlue.InputEventHandler); 3265*344a7f5eSAndroid Build Coastguard Worker method public void setFadeCompleteListener(android.support.v17.leanback.app.PlaybackOverlayFragment.OnFadeCompleteListener); 3266*344a7f5eSAndroid Build Coastguard Worker method public void setFadingEnabled(boolean); 3267*344a7f5eSAndroid Build Coastguard Worker method public final deprecated void setInputEventHandler(android.support.v17.leanback.app.PlaybackOverlayFragment.InputEventHandler); 3268*344a7f5eSAndroid Build Coastguard Worker method public void tickle(); 3269*344a7f5eSAndroid Build Coastguard Worker field public static final int BG_DARK = 1; // 0x1 3270*344a7f5eSAndroid Build Coastguard Worker field public static final int BG_LIGHT = 2; // 0x2 3271*344a7f5eSAndroid Build Coastguard Worker field public static final int BG_NONE = 0; // 0x0 3272*344a7f5eSAndroid Build Coastguard Worker } 3273*344a7f5eSAndroid Build Coastguard Worker 3274*344a7f5eSAndroid Build Coastguard Worker public static abstract deprecated interface PlaybackOverlayFragment.InputEventHandler implements android.support.v17.leanback.app.PlaybackControlGlue.InputEventHandler { 3275*344a7f5eSAndroid Build Coastguard Worker } 3276*344a7f5eSAndroid Build Coastguard Worker 3277*344a7f5eSAndroid Build Coastguard Worker public static class PlaybackOverlayFragment.OnFadeCompleteListener { 3278*344a7f5eSAndroid Build Coastguard Worker ctor public PlaybackOverlayFragment.OnFadeCompleteListener(); 3279*344a7f5eSAndroid Build Coastguard Worker method public void onFadeInComplete(); 3280*344a7f5eSAndroid Build Coastguard Worker method public void onFadeOutComplete(); 3281*344a7f5eSAndroid Build Coastguard Worker } 3282*344a7f5eSAndroid Build Coastguard Worker 3283*344a7f5eSAndroid Build Coastguard Worker public deprecated class PlaybackOverlaySupportFragment extends android.support.v17.leanback.app.DetailsSupportFragment { 3284*344a7f5eSAndroid Build Coastguard Worker ctor public PlaybackOverlaySupportFragment(); 3285*344a7f5eSAndroid Build Coastguard Worker method public void fadeOut(); 3286*344a7f5eSAndroid Build Coastguard Worker method public int getBackgroundType(); 3287*344a7f5eSAndroid Build Coastguard Worker method public final android.support.v17.leanback.app.PlaybackControlGlue.InputEventHandler getEventHandler(); 3288*344a7f5eSAndroid Build Coastguard Worker method public android.support.v17.leanback.app.PlaybackOverlaySupportFragment.OnFadeCompleteListener getFadeCompleteListener(); 3289*344a7f5eSAndroid Build Coastguard Worker method public final deprecated android.support.v17.leanback.app.PlaybackOverlaySupportFragment.InputEventHandler getInputEventHandler(); 3290*344a7f5eSAndroid Build Coastguard Worker method public boolean isFadingEnabled(); 3291*344a7f5eSAndroid Build Coastguard Worker method public void setBackgroundType(int); 3292*344a7f5eSAndroid Build Coastguard Worker method public final void setEventHandler(android.support.v17.leanback.app.PlaybackControlGlue.InputEventHandler); 3293*344a7f5eSAndroid Build Coastguard Worker method public void setFadeCompleteListener(android.support.v17.leanback.app.PlaybackOverlaySupportFragment.OnFadeCompleteListener); 3294*344a7f5eSAndroid Build Coastguard Worker method public void setFadingEnabled(boolean); 3295*344a7f5eSAndroid Build Coastguard Worker method public final deprecated void setInputEventHandler(android.support.v17.leanback.app.PlaybackOverlaySupportFragment.InputEventHandler); 3296*344a7f5eSAndroid Build Coastguard Worker method public void tickle(); 3297*344a7f5eSAndroid Build Coastguard Worker field public static final int BG_DARK = 1; // 0x1 3298*344a7f5eSAndroid Build Coastguard Worker field public static final int BG_LIGHT = 2; // 0x2 3299*344a7f5eSAndroid Build Coastguard Worker field public static final int BG_NONE = 0; // 0x0 3300*344a7f5eSAndroid Build Coastguard Worker } 3301*344a7f5eSAndroid Build Coastguard Worker 3302*344a7f5eSAndroid Build Coastguard Worker public static abstract deprecated interface PlaybackOverlaySupportFragment.InputEventHandler implements android.support.v17.leanback.app.PlaybackControlGlue.InputEventHandler { 3303*344a7f5eSAndroid Build Coastguard Worker } 3304*344a7f5eSAndroid Build Coastguard Worker 3305*344a7f5eSAndroid Build Coastguard Worker public static class PlaybackOverlaySupportFragment.OnFadeCompleteListener { 3306*344a7f5eSAndroid Build Coastguard Worker ctor public PlaybackOverlaySupportFragment.OnFadeCompleteListener(); 3307*344a7f5eSAndroid Build Coastguard Worker method public void onFadeInComplete(); 3308*344a7f5eSAndroid Build Coastguard Worker method public void onFadeOutComplete(); 3309*344a7f5eSAndroid Build Coastguard Worker } 3310*344a7f5eSAndroid Build Coastguard Worker 3311*344a7f5eSAndroid Build Coastguard Worker public class PlaybackSupportFragment extends android.support.v4.app.Fragment { 3312*344a7f5eSAndroid Build Coastguard Worker ctor public PlaybackSupportFragment(); 3313*344a7f5eSAndroid Build Coastguard Worker method public deprecated void fadeOut(); 3314*344a7f5eSAndroid Build Coastguard Worker method public android.support.v17.leanback.widget.ObjectAdapter getAdapter(); 3315*344a7f5eSAndroid Build Coastguard Worker method public int getBackgroundType(); 3316*344a7f5eSAndroid Build Coastguard Worker method public android.support.v17.leanback.app.ProgressBarManager getProgressBarManager(); 3317*344a7f5eSAndroid Build Coastguard Worker method public void hideControlsOverlay(boolean); 3318*344a7f5eSAndroid Build Coastguard Worker method public boolean isControlsOverlayAutoHideEnabled(); 3319*344a7f5eSAndroid Build Coastguard Worker method public boolean isControlsOverlayVisible(); 3320*344a7f5eSAndroid Build Coastguard Worker method public deprecated boolean isFadingEnabled(); 3321*344a7f5eSAndroid Build Coastguard Worker method public void notifyPlaybackRowChanged(); 3322*344a7f5eSAndroid Build Coastguard Worker method protected void onBufferingStateChanged(boolean); 3323*344a7f5eSAndroid Build Coastguard Worker method protected void onError(int, java.lang.CharSequence); 3324*344a7f5eSAndroid Build Coastguard Worker method protected void onVideoSizeChanged(int, int); 3325*344a7f5eSAndroid Build Coastguard Worker method public void setAdapter(android.support.v17.leanback.widget.ObjectAdapter); 3326*344a7f5eSAndroid Build Coastguard Worker method public void setBackgroundType(int); 3327*344a7f5eSAndroid Build Coastguard Worker method public void setControlsOverlayAutoHideEnabled(boolean); 3328*344a7f5eSAndroid Build Coastguard Worker method public deprecated void setFadingEnabled(boolean); 3329*344a7f5eSAndroid Build Coastguard Worker method public void setHostCallback(android.support.v17.leanback.media.PlaybackGlueHost.HostCallback); 3330*344a7f5eSAndroid Build Coastguard Worker method public void setOnItemViewClickedListener(android.support.v17.leanback.widget.BaseOnItemViewClickedListener); 3331*344a7f5eSAndroid Build Coastguard Worker method public void setOnItemViewSelectedListener(android.support.v17.leanback.widget.BaseOnItemViewSelectedListener); 3332*344a7f5eSAndroid Build Coastguard Worker method public final void setOnKeyInterceptListener(android.view.View.OnKeyListener); 3333*344a7f5eSAndroid Build Coastguard Worker method public void setOnPlaybackItemViewClickedListener(android.support.v17.leanback.widget.BaseOnItemViewClickedListener); 3334*344a7f5eSAndroid Build Coastguard Worker method public void setPlaybackRow(android.support.v17.leanback.widget.Row); 3335*344a7f5eSAndroid Build Coastguard Worker method public void setPlaybackRowPresenter(android.support.v17.leanback.widget.PlaybackRowPresenter); 3336*344a7f5eSAndroid Build Coastguard Worker method public void setPlaybackSeekUiClient(android.support.v17.leanback.widget.PlaybackSeekUi.Client); 3337*344a7f5eSAndroid Build Coastguard Worker method public void setSelectedPosition(int); 3338*344a7f5eSAndroid Build Coastguard Worker method public void setSelectedPosition(int, boolean); 3339*344a7f5eSAndroid Build Coastguard Worker method public void showControlsOverlay(boolean); 3340*344a7f5eSAndroid Build Coastguard Worker method public void tickle(); 3341*344a7f5eSAndroid Build Coastguard Worker field public static final int BG_DARK = 1; // 0x1 3342*344a7f5eSAndroid Build Coastguard Worker field public static final int BG_LIGHT = 2; // 0x2 3343*344a7f5eSAndroid Build Coastguard Worker field public static final int BG_NONE = 0; // 0x0 3344*344a7f5eSAndroid Build Coastguard Worker } 3345*344a7f5eSAndroid Build Coastguard Worker 3346*344a7f5eSAndroid Build Coastguard Worker public class PlaybackSupportFragmentGlueHost extends android.support.v17.leanback.media.PlaybackGlueHost implements android.support.v17.leanback.widget.PlaybackSeekUi { 3347*344a7f5eSAndroid Build Coastguard Worker ctor public PlaybackSupportFragmentGlueHost(android.support.v17.leanback.app.PlaybackSupportFragment); 3348*344a7f5eSAndroid Build Coastguard Worker method public void setPlaybackSeekUiClient(android.support.v17.leanback.widget.PlaybackSeekUi.Client); 3349*344a7f5eSAndroid Build Coastguard Worker } 3350*344a7f5eSAndroid Build Coastguard Worker 3351*344a7f5eSAndroid Build Coastguard Worker public final class ProgressBarManager { 3352*344a7f5eSAndroid Build Coastguard Worker ctor public ProgressBarManager(); 3353*344a7f5eSAndroid Build Coastguard Worker method public void disableProgressBar(); 3354*344a7f5eSAndroid Build Coastguard Worker method public void enableProgressBar(); 3355*344a7f5eSAndroid Build Coastguard Worker method public long getInitialDelay(); 3356*344a7f5eSAndroid Build Coastguard Worker method public void hide(); 3357*344a7f5eSAndroid Build Coastguard Worker method public void setInitialDelay(long); 3358*344a7f5eSAndroid Build Coastguard Worker method public void setProgressBarView(android.view.View); 3359*344a7f5eSAndroid Build Coastguard Worker method public void setRootView(android.view.ViewGroup); 3360*344a7f5eSAndroid Build Coastguard Worker method public void show(); 3361*344a7f5eSAndroid Build Coastguard Worker } 3362*344a7f5eSAndroid Build Coastguard Worker 3363*344a7f5eSAndroid Build Coastguard Worker public class RowsFragment extends android.support.v17.leanback.app.BaseRowFragment implements android.support.v17.leanback.app.BrowseFragment.MainFragmentAdapterProvider android.support.v17.leanback.app.BrowseFragment.MainFragmentRowsAdapterProvider { 3364*344a7f5eSAndroid Build Coastguard Worker ctor public RowsFragment(); 3365*344a7f5eSAndroid Build Coastguard Worker method public deprecated void enableRowScaling(boolean); 3366*344a7f5eSAndroid Build Coastguard Worker method protected android.support.v17.leanback.widget.VerticalGridView findGridViewFromRoot(android.view.View); 3367*344a7f5eSAndroid Build Coastguard Worker method public android.support.v17.leanback.widget.RowPresenter.ViewHolder findRowViewHolderByPosition(int); 3368*344a7f5eSAndroid Build Coastguard Worker method public android.support.v17.leanback.app.BrowseFragment.MainFragmentAdapter getMainFragmentAdapter(); 3369*344a7f5eSAndroid Build Coastguard Worker method public android.support.v17.leanback.app.BrowseFragment.MainFragmentRowsAdapter getMainFragmentRowsAdapter(); 3370*344a7f5eSAndroid Build Coastguard Worker method public android.support.v17.leanback.widget.BaseOnItemViewClickedListener getOnItemViewClickedListener(); 3371*344a7f5eSAndroid Build Coastguard Worker method public android.support.v17.leanback.widget.BaseOnItemViewSelectedListener getOnItemViewSelectedListener(); 3372*344a7f5eSAndroid Build Coastguard Worker method public android.support.v17.leanback.widget.RowPresenter.ViewHolder getRowViewHolder(int); 3373*344a7f5eSAndroid Build Coastguard Worker method public boolean isScrolling(); 3374*344a7f5eSAndroid Build Coastguard Worker method public void setEntranceTransitionState(boolean); 3375*344a7f5eSAndroid Build Coastguard Worker method public void setExpand(boolean); 3376*344a7f5eSAndroid Build Coastguard Worker method public void setOnItemViewClickedListener(android.support.v17.leanback.widget.BaseOnItemViewClickedListener); 3377*344a7f5eSAndroid Build Coastguard Worker method public void setOnItemViewSelectedListener(android.support.v17.leanback.widget.BaseOnItemViewSelectedListener); 3378*344a7f5eSAndroid Build Coastguard Worker method public void setSelectedPosition(int, boolean, android.support.v17.leanback.widget.Presenter.ViewHolderTask); 3379*344a7f5eSAndroid Build Coastguard Worker } 3380*344a7f5eSAndroid Build Coastguard Worker 3381*344a7f5eSAndroid Build Coastguard Worker public static class RowsFragment.MainFragmentAdapter extends android.support.v17.leanback.app.BrowseFragment.MainFragmentAdapter { 3382*344a7f5eSAndroid Build Coastguard Worker ctor public RowsFragment.MainFragmentAdapter(android.support.v17.leanback.app.RowsFragment); 3383*344a7f5eSAndroid Build Coastguard Worker } 3384*344a7f5eSAndroid Build Coastguard Worker 3385*344a7f5eSAndroid Build Coastguard Worker public static class RowsFragment.MainFragmentRowsAdapter extends android.support.v17.leanback.app.BrowseFragment.MainFragmentRowsAdapter { 3386*344a7f5eSAndroid Build Coastguard Worker ctor public RowsFragment.MainFragmentRowsAdapter(android.support.v17.leanback.app.RowsFragment); 3387*344a7f5eSAndroid Build Coastguard Worker } 3388*344a7f5eSAndroid Build Coastguard Worker 3389*344a7f5eSAndroid Build Coastguard Worker public class RowsSupportFragment extends android.support.v17.leanback.app.BaseRowSupportFragment implements android.support.v17.leanback.app.BrowseSupportFragment.MainFragmentAdapterProvider android.support.v17.leanback.app.BrowseSupportFragment.MainFragmentRowsAdapterProvider { 3390*344a7f5eSAndroid Build Coastguard Worker ctor public RowsSupportFragment(); 3391*344a7f5eSAndroid Build Coastguard Worker method public deprecated void enableRowScaling(boolean); 3392*344a7f5eSAndroid Build Coastguard Worker method protected android.support.v17.leanback.widget.VerticalGridView findGridViewFromRoot(android.view.View); 3393*344a7f5eSAndroid Build Coastguard Worker method public android.support.v17.leanback.widget.RowPresenter.ViewHolder findRowViewHolderByPosition(int); 3394*344a7f5eSAndroid Build Coastguard Worker method public android.support.v17.leanback.app.BrowseSupportFragment.MainFragmentAdapter getMainFragmentAdapter(); 3395*344a7f5eSAndroid Build Coastguard Worker method public android.support.v17.leanback.app.BrowseSupportFragment.MainFragmentRowsAdapter getMainFragmentRowsAdapter(); 3396*344a7f5eSAndroid Build Coastguard Worker method public android.support.v17.leanback.widget.BaseOnItemViewClickedListener getOnItemViewClickedListener(); 3397*344a7f5eSAndroid Build Coastguard Worker method public android.support.v17.leanback.widget.BaseOnItemViewSelectedListener getOnItemViewSelectedListener(); 3398*344a7f5eSAndroid Build Coastguard Worker method public android.support.v17.leanback.widget.RowPresenter.ViewHolder getRowViewHolder(int); 3399*344a7f5eSAndroid Build Coastguard Worker method public boolean isScrolling(); 3400*344a7f5eSAndroid Build Coastguard Worker method public void setEntranceTransitionState(boolean); 3401*344a7f5eSAndroid Build Coastguard Worker method public void setExpand(boolean); 3402*344a7f5eSAndroid Build Coastguard Worker method public void setOnItemViewClickedListener(android.support.v17.leanback.widget.BaseOnItemViewClickedListener); 3403*344a7f5eSAndroid Build Coastguard Worker method public void setOnItemViewSelectedListener(android.support.v17.leanback.widget.BaseOnItemViewSelectedListener); 3404*344a7f5eSAndroid Build Coastguard Worker method public void setSelectedPosition(int, boolean, android.support.v17.leanback.widget.Presenter.ViewHolderTask); 3405*344a7f5eSAndroid Build Coastguard Worker } 3406*344a7f5eSAndroid Build Coastguard Worker 3407*344a7f5eSAndroid Build Coastguard Worker public static class RowsSupportFragment.MainFragmentAdapter extends android.support.v17.leanback.app.BrowseSupportFragment.MainFragmentAdapter { 3408*344a7f5eSAndroid Build Coastguard Worker ctor public RowsSupportFragment.MainFragmentAdapter(android.support.v17.leanback.app.RowsSupportFragment); 3409*344a7f5eSAndroid Build Coastguard Worker } 3410*344a7f5eSAndroid Build Coastguard Worker 3411*344a7f5eSAndroid Build Coastguard Worker public static class RowsSupportFragment.MainFragmentRowsAdapter extends android.support.v17.leanback.app.BrowseSupportFragment.MainFragmentRowsAdapter { 3412*344a7f5eSAndroid Build Coastguard Worker ctor public RowsSupportFragment.MainFragmentRowsAdapter(android.support.v17.leanback.app.RowsSupportFragment); 3413*344a7f5eSAndroid Build Coastguard Worker } 3414*344a7f5eSAndroid Build Coastguard Worker 3415*344a7f5eSAndroid Build Coastguard Worker public class SearchFragment extends android.app.Fragment { 3416*344a7f5eSAndroid Build Coastguard Worker ctor public SearchFragment(); 3417*344a7f5eSAndroid Build Coastguard Worker method public static android.os.Bundle createArgs(android.os.Bundle, java.lang.String); 3418*344a7f5eSAndroid Build Coastguard Worker method public static android.os.Bundle createArgs(android.os.Bundle, java.lang.String, java.lang.String); 3419*344a7f5eSAndroid Build Coastguard Worker method public void displayCompletions(java.util.List<java.lang.String>); 3420*344a7f5eSAndroid Build Coastguard Worker method public void displayCompletions(android.view.inputmethod.CompletionInfo[]); 3421*344a7f5eSAndroid Build Coastguard Worker method public android.graphics.drawable.Drawable getBadgeDrawable(); 3422*344a7f5eSAndroid Build Coastguard Worker method public android.content.Intent getRecognizerIntent(); 3423*344a7f5eSAndroid Build Coastguard Worker method public android.support.v17.leanback.app.RowsFragment getRowsFragment(); 3424*344a7f5eSAndroid Build Coastguard Worker method public java.lang.String getTitle(); 3425*344a7f5eSAndroid Build Coastguard Worker method public static android.support.v17.leanback.app.SearchFragment newInstance(java.lang.String); 3426*344a7f5eSAndroid Build Coastguard Worker method public void setBadgeDrawable(android.graphics.drawable.Drawable); 3427*344a7f5eSAndroid Build Coastguard Worker method public void setOnItemViewClickedListener(android.support.v17.leanback.widget.OnItemViewClickedListener); 3428*344a7f5eSAndroid Build Coastguard Worker method public void setOnItemViewSelectedListener(android.support.v17.leanback.widget.OnItemViewSelectedListener); 3429*344a7f5eSAndroid Build Coastguard Worker method public void setSearchAffordanceColors(android.support.v17.leanback.widget.SearchOrbView.Colors); 3430*344a7f5eSAndroid Build Coastguard Worker method public void setSearchAffordanceColorsInListening(android.support.v17.leanback.widget.SearchOrbView.Colors); 3431*344a7f5eSAndroid Build Coastguard Worker method public void setSearchQuery(java.lang.String, boolean); 3432*344a7f5eSAndroid Build Coastguard Worker method public void setSearchQuery(android.content.Intent, boolean); 3433*344a7f5eSAndroid Build Coastguard Worker method public void setSearchResultProvider(android.support.v17.leanback.app.SearchFragment.SearchResultProvider); 3434*344a7f5eSAndroid Build Coastguard Worker method public void setSpeechRecognitionCallback(android.support.v17.leanback.widget.SpeechRecognitionCallback); 3435*344a7f5eSAndroid Build Coastguard Worker method public void setTitle(java.lang.String); 3436*344a7f5eSAndroid Build Coastguard Worker method public void startRecognition(); 3437*344a7f5eSAndroid Build Coastguard Worker } 3438*344a7f5eSAndroid Build Coastguard Worker 3439*344a7f5eSAndroid Build Coastguard Worker public static abstract interface SearchFragment.SearchResultProvider { 3440*344a7f5eSAndroid Build Coastguard Worker method public abstract android.support.v17.leanback.widget.ObjectAdapter getResultsAdapter(); 3441*344a7f5eSAndroid Build Coastguard Worker method public abstract boolean onQueryTextChange(java.lang.String); 3442*344a7f5eSAndroid Build Coastguard Worker method public abstract boolean onQueryTextSubmit(java.lang.String); 3443*344a7f5eSAndroid Build Coastguard Worker } 3444*344a7f5eSAndroid Build Coastguard Worker 3445*344a7f5eSAndroid Build Coastguard Worker public class SearchSupportFragment extends android.support.v4.app.Fragment { 3446*344a7f5eSAndroid Build Coastguard Worker ctor public SearchSupportFragment(); 3447*344a7f5eSAndroid Build Coastguard Worker method public static android.os.Bundle createArgs(android.os.Bundle, java.lang.String); 3448*344a7f5eSAndroid Build Coastguard Worker method public static android.os.Bundle createArgs(android.os.Bundle, java.lang.String, java.lang.String); 3449*344a7f5eSAndroid Build Coastguard Worker method public void displayCompletions(java.util.List<java.lang.String>); 3450*344a7f5eSAndroid Build Coastguard Worker method public void displayCompletions(android.view.inputmethod.CompletionInfo[]); 3451*344a7f5eSAndroid Build Coastguard Worker method public android.graphics.drawable.Drawable getBadgeDrawable(); 3452*344a7f5eSAndroid Build Coastguard Worker method public android.content.Intent getRecognizerIntent(); 3453*344a7f5eSAndroid Build Coastguard Worker method public android.support.v17.leanback.app.RowsSupportFragment getRowsSupportFragment(); 3454*344a7f5eSAndroid Build Coastguard Worker method public java.lang.String getTitle(); 3455*344a7f5eSAndroid Build Coastguard Worker method public static android.support.v17.leanback.app.SearchSupportFragment newInstance(java.lang.String); 3456*344a7f5eSAndroid Build Coastguard Worker method public void setBadgeDrawable(android.graphics.drawable.Drawable); 3457*344a7f5eSAndroid Build Coastguard Worker method public void setOnItemViewClickedListener(android.support.v17.leanback.widget.OnItemViewClickedListener); 3458*344a7f5eSAndroid Build Coastguard Worker method public void setOnItemViewSelectedListener(android.support.v17.leanback.widget.OnItemViewSelectedListener); 3459*344a7f5eSAndroid Build Coastguard Worker method public void setSearchAffordanceColors(android.support.v17.leanback.widget.SearchOrbView.Colors); 3460*344a7f5eSAndroid Build Coastguard Worker method public void setSearchAffordanceColorsInListening(android.support.v17.leanback.widget.SearchOrbView.Colors); 3461*344a7f5eSAndroid Build Coastguard Worker method public void setSearchQuery(java.lang.String, boolean); 3462*344a7f5eSAndroid Build Coastguard Worker method public void setSearchQuery(android.content.Intent, boolean); 3463*344a7f5eSAndroid Build Coastguard Worker method public void setSearchResultProvider(android.support.v17.leanback.app.SearchSupportFragment.SearchResultProvider); 3464*344a7f5eSAndroid Build Coastguard Worker method public void setSpeechRecognitionCallback(android.support.v17.leanback.widget.SpeechRecognitionCallback); 3465*344a7f5eSAndroid Build Coastguard Worker method public void setTitle(java.lang.String); 3466*344a7f5eSAndroid Build Coastguard Worker method public void startRecognition(); 3467*344a7f5eSAndroid Build Coastguard Worker } 3468*344a7f5eSAndroid Build Coastguard Worker 3469*344a7f5eSAndroid Build Coastguard Worker public static abstract interface SearchSupportFragment.SearchResultProvider { 3470*344a7f5eSAndroid Build Coastguard Worker method public abstract android.support.v17.leanback.widget.ObjectAdapter getResultsAdapter(); 3471*344a7f5eSAndroid Build Coastguard Worker method public abstract boolean onQueryTextChange(java.lang.String); 3472*344a7f5eSAndroid Build Coastguard Worker method public abstract boolean onQueryTextSubmit(java.lang.String); 3473*344a7f5eSAndroid Build Coastguard Worker } 3474*344a7f5eSAndroid Build Coastguard Worker 3475*344a7f5eSAndroid Build Coastguard Worker public class VerticalGridFragment extends android.support.v17.leanback.app.BaseFragment { 3476*344a7f5eSAndroid Build Coastguard Worker ctor public VerticalGridFragment(); 3477*344a7f5eSAndroid Build Coastguard Worker method public android.support.v17.leanback.widget.ObjectAdapter getAdapter(); 3478*344a7f5eSAndroid Build Coastguard Worker method public android.support.v17.leanback.widget.VerticalGridPresenter getGridPresenter(); 3479*344a7f5eSAndroid Build Coastguard Worker method public android.support.v17.leanback.widget.OnItemViewClickedListener getOnItemViewClickedListener(); 3480*344a7f5eSAndroid Build Coastguard Worker method public void setAdapter(android.support.v17.leanback.widget.ObjectAdapter); 3481*344a7f5eSAndroid Build Coastguard Worker method public void setGridPresenter(android.support.v17.leanback.widget.VerticalGridPresenter); 3482*344a7f5eSAndroid Build Coastguard Worker method public void setOnItemViewClickedListener(android.support.v17.leanback.widget.OnItemViewClickedListener); 3483*344a7f5eSAndroid Build Coastguard Worker method public void setOnItemViewSelectedListener(android.support.v17.leanback.widget.OnItemViewSelectedListener); 3484*344a7f5eSAndroid Build Coastguard Worker method public void setSelectedPosition(int); 3485*344a7f5eSAndroid Build Coastguard Worker } 3486*344a7f5eSAndroid Build Coastguard Worker 3487*344a7f5eSAndroid Build Coastguard Worker public class VerticalGridSupportFragment extends android.support.v17.leanback.app.BaseSupportFragment { 3488*344a7f5eSAndroid Build Coastguard Worker ctor public VerticalGridSupportFragment(); 3489*344a7f5eSAndroid Build Coastguard Worker method public android.support.v17.leanback.widget.ObjectAdapter getAdapter(); 3490*344a7f5eSAndroid Build Coastguard Worker method public android.support.v17.leanback.widget.VerticalGridPresenter getGridPresenter(); 3491*344a7f5eSAndroid Build Coastguard Worker method public android.support.v17.leanback.widget.OnItemViewClickedListener getOnItemViewClickedListener(); 3492*344a7f5eSAndroid Build Coastguard Worker method public void setAdapter(android.support.v17.leanback.widget.ObjectAdapter); 3493*344a7f5eSAndroid Build Coastguard Worker method public void setGridPresenter(android.support.v17.leanback.widget.VerticalGridPresenter); 3494*344a7f5eSAndroid Build Coastguard Worker method public void setOnItemViewClickedListener(android.support.v17.leanback.widget.OnItemViewClickedListener); 3495*344a7f5eSAndroid Build Coastguard Worker method public void setOnItemViewSelectedListener(android.support.v17.leanback.widget.OnItemViewSelectedListener); 3496*344a7f5eSAndroid Build Coastguard Worker method public void setSelectedPosition(int); 3497*344a7f5eSAndroid Build Coastguard Worker } 3498*344a7f5eSAndroid Build Coastguard Worker 3499*344a7f5eSAndroid Build Coastguard Worker public class VideoFragment extends android.support.v17.leanback.app.PlaybackFragment { 3500*344a7f5eSAndroid Build Coastguard Worker ctor public VideoFragment(); 3501*344a7f5eSAndroid Build Coastguard Worker method public android.view.SurfaceView getSurfaceView(); 3502*344a7f5eSAndroid Build Coastguard Worker method public void setSurfaceHolderCallback(android.view.SurfaceHolder.Callback); 3503*344a7f5eSAndroid Build Coastguard Worker } 3504*344a7f5eSAndroid Build Coastguard Worker 3505*344a7f5eSAndroid Build Coastguard Worker public class VideoFragmentGlueHost extends android.support.v17.leanback.app.PlaybackFragmentGlueHost implements android.support.v17.leanback.media.SurfaceHolderGlueHost { 3506*344a7f5eSAndroid Build Coastguard Worker ctor public VideoFragmentGlueHost(android.support.v17.leanback.app.VideoFragment); 3507*344a7f5eSAndroid Build Coastguard Worker method public void setSurfaceHolderCallback(android.view.SurfaceHolder.Callback); 3508*344a7f5eSAndroid Build Coastguard Worker } 3509*344a7f5eSAndroid Build Coastguard Worker 3510*344a7f5eSAndroid Build Coastguard Worker public class VideoSupportFragment extends android.support.v17.leanback.app.PlaybackSupportFragment { 3511*344a7f5eSAndroid Build Coastguard Worker ctor public VideoSupportFragment(); 3512*344a7f5eSAndroid Build Coastguard Worker method public android.view.SurfaceView getSurfaceView(); 3513*344a7f5eSAndroid Build Coastguard Worker method public void setSurfaceHolderCallback(android.view.SurfaceHolder.Callback); 3514*344a7f5eSAndroid Build Coastguard Worker } 3515*344a7f5eSAndroid Build Coastguard Worker 3516*344a7f5eSAndroid Build Coastguard Worker public class VideoSupportFragmentGlueHost extends android.support.v17.leanback.app.PlaybackSupportFragmentGlueHost implements android.support.v17.leanback.media.SurfaceHolderGlueHost { 3517*344a7f5eSAndroid Build Coastguard Worker ctor public VideoSupportFragmentGlueHost(android.support.v17.leanback.app.VideoSupportFragment); 3518*344a7f5eSAndroid Build Coastguard Worker method public void setSurfaceHolderCallback(android.view.SurfaceHolder.Callback); 3519*344a7f5eSAndroid Build Coastguard Worker } 3520*344a7f5eSAndroid Build Coastguard Worker 3521*344a7f5eSAndroid Build Coastguard Worker} 3522*344a7f5eSAndroid Build Coastguard Worker 3523*344a7f5eSAndroid Build Coastguard Workerpackage android.support.v17.leanback.database { 3524*344a7f5eSAndroid Build Coastguard Worker 3525*344a7f5eSAndroid Build Coastguard Worker public abstract class CursorMapper { 3526*344a7f5eSAndroid Build Coastguard Worker ctor public CursorMapper(); 3527*344a7f5eSAndroid Build Coastguard Worker method protected abstract java.lang.Object bind(android.database.Cursor); 3528*344a7f5eSAndroid Build Coastguard Worker method protected abstract void bindColumns(android.database.Cursor); 3529*344a7f5eSAndroid Build Coastguard Worker method public java.lang.Object convert(android.database.Cursor); 3530*344a7f5eSAndroid Build Coastguard Worker } 3531*344a7f5eSAndroid Build Coastguard Worker 3532*344a7f5eSAndroid Build Coastguard Worker} 3533*344a7f5eSAndroid Build Coastguard Worker 3534*344a7f5eSAndroid Build Coastguard Workerpackage android.support.v17.leanback.graphics { 3535*344a7f5eSAndroid Build Coastguard Worker 3536*344a7f5eSAndroid Build Coastguard Worker public class BoundsRule { 3537*344a7f5eSAndroid Build Coastguard Worker ctor public BoundsRule(); 3538*344a7f5eSAndroid Build Coastguard Worker ctor public BoundsRule(android.support.v17.leanback.graphics.BoundsRule); 3539*344a7f5eSAndroid Build Coastguard Worker method public void calculateBounds(android.graphics.Rect, android.graphics.Rect); 3540*344a7f5eSAndroid Build Coastguard Worker field public android.support.v17.leanback.graphics.BoundsRule.ValueRule bottom; 3541*344a7f5eSAndroid Build Coastguard Worker field public android.support.v17.leanback.graphics.BoundsRule.ValueRule left; 3542*344a7f5eSAndroid Build Coastguard Worker field public android.support.v17.leanback.graphics.BoundsRule.ValueRule right; 3543*344a7f5eSAndroid Build Coastguard Worker field public android.support.v17.leanback.graphics.BoundsRule.ValueRule top; 3544*344a7f5eSAndroid Build Coastguard Worker } 3545*344a7f5eSAndroid Build Coastguard Worker 3546*344a7f5eSAndroid Build Coastguard Worker public static final class BoundsRule.ValueRule { 3547*344a7f5eSAndroid Build Coastguard Worker method public static android.support.v17.leanback.graphics.BoundsRule.ValueRule absoluteValue(int); 3548*344a7f5eSAndroid Build Coastguard Worker method public int getAbsoluteValue(); 3549*344a7f5eSAndroid Build Coastguard Worker method public float getFraction(); 3550*344a7f5eSAndroid Build Coastguard Worker method public static android.support.v17.leanback.graphics.BoundsRule.ValueRule inheritFromParent(float); 3551*344a7f5eSAndroid Build Coastguard Worker method public static android.support.v17.leanback.graphics.BoundsRule.ValueRule inheritFromParentWithOffset(float, int); 3552*344a7f5eSAndroid Build Coastguard Worker method public void setAbsoluteValue(int); 3553*344a7f5eSAndroid Build Coastguard Worker method public void setFraction(float); 3554*344a7f5eSAndroid Build Coastguard Worker } 3555*344a7f5eSAndroid Build Coastguard Worker 3556*344a7f5eSAndroid Build Coastguard Worker public final class ColorFilterCache { 3557*344a7f5eSAndroid Build Coastguard Worker method public static android.support.v17.leanback.graphics.ColorFilterCache getColorFilterCache(int); 3558*344a7f5eSAndroid Build Coastguard Worker method public android.graphics.ColorFilter getFilterForLevel(float); 3559*344a7f5eSAndroid Build Coastguard Worker } 3560*344a7f5eSAndroid Build Coastguard Worker 3561*344a7f5eSAndroid Build Coastguard Worker public final class ColorFilterDimmer { 3562*344a7f5eSAndroid Build Coastguard Worker method public void applyFilterToView(android.view.View); 3563*344a7f5eSAndroid Build Coastguard Worker method public static android.support.v17.leanback.graphics.ColorFilterDimmer create(android.support.v17.leanback.graphics.ColorFilterCache, float, float); 3564*344a7f5eSAndroid Build Coastguard Worker method public static android.support.v17.leanback.graphics.ColorFilterDimmer createDefault(android.content.Context); 3565*344a7f5eSAndroid Build Coastguard Worker method public android.graphics.ColorFilter getColorFilter(); 3566*344a7f5eSAndroid Build Coastguard Worker method public android.graphics.Paint getPaint(); 3567*344a7f5eSAndroid Build Coastguard Worker method public void setActiveLevel(float); 3568*344a7f5eSAndroid Build Coastguard Worker } 3569*344a7f5eSAndroid Build Coastguard Worker 3570*344a7f5eSAndroid Build Coastguard Worker public final class ColorOverlayDimmer { 3571*344a7f5eSAndroid Build Coastguard Worker method public int applyToColor(int); 3572*344a7f5eSAndroid Build Coastguard Worker method public static android.support.v17.leanback.graphics.ColorOverlayDimmer createColorOverlayDimmer(int, float, float); 3573*344a7f5eSAndroid Build Coastguard Worker method public static android.support.v17.leanback.graphics.ColorOverlayDimmer createDefault(android.content.Context); 3574*344a7f5eSAndroid Build Coastguard Worker method public void drawColorOverlay(android.graphics.Canvas, android.view.View, boolean); 3575*344a7f5eSAndroid Build Coastguard Worker method public int getAlpha(); 3576*344a7f5eSAndroid Build Coastguard Worker method public float getAlphaFloat(); 3577*344a7f5eSAndroid Build Coastguard Worker method public android.graphics.Paint getPaint(); 3578*344a7f5eSAndroid Build Coastguard Worker method public boolean needsDraw(); 3579*344a7f5eSAndroid Build Coastguard Worker method public void setActiveLevel(float); 3580*344a7f5eSAndroid Build Coastguard Worker } 3581*344a7f5eSAndroid Build Coastguard Worker 3582*344a7f5eSAndroid Build Coastguard Worker public class CompositeDrawable extends android.graphics.drawable.Drawable implements android.graphics.drawable.Drawable.Callback { 3583*344a7f5eSAndroid Build Coastguard Worker ctor public CompositeDrawable(); 3584*344a7f5eSAndroid Build Coastguard Worker method public void addChildDrawable(android.graphics.drawable.Drawable); 3585*344a7f5eSAndroid Build Coastguard Worker method public void draw(android.graphics.Canvas); 3586*344a7f5eSAndroid Build Coastguard Worker method public android.support.v17.leanback.graphics.CompositeDrawable.ChildDrawable getChildAt(int); 3587*344a7f5eSAndroid Build Coastguard Worker method public int getChildCount(); 3588*344a7f5eSAndroid Build Coastguard Worker method public android.graphics.drawable.Drawable getDrawable(int); 3589*344a7f5eSAndroid Build Coastguard Worker method public int getOpacity(); 3590*344a7f5eSAndroid Build Coastguard Worker method public void invalidateDrawable(android.graphics.drawable.Drawable); 3591*344a7f5eSAndroid Build Coastguard Worker method public void removeChild(int); 3592*344a7f5eSAndroid Build Coastguard Worker method public void removeDrawable(android.graphics.drawable.Drawable); 3593*344a7f5eSAndroid Build Coastguard Worker method public void scheduleDrawable(android.graphics.drawable.Drawable, java.lang.Runnable, long); 3594*344a7f5eSAndroid Build Coastguard Worker method public void setAlpha(int); 3595*344a7f5eSAndroid Build Coastguard Worker method public void setChildDrawableAt(int, android.graphics.drawable.Drawable); 3596*344a7f5eSAndroid Build Coastguard Worker method public void setColorFilter(android.graphics.ColorFilter); 3597*344a7f5eSAndroid Build Coastguard Worker method public void unscheduleDrawable(android.graphics.drawable.Drawable, java.lang.Runnable); 3598*344a7f5eSAndroid Build Coastguard Worker } 3599*344a7f5eSAndroid Build Coastguard Worker 3600*344a7f5eSAndroid Build Coastguard Worker public static final class CompositeDrawable.ChildDrawable { 3601*344a7f5eSAndroid Build Coastguard Worker ctor public CompositeDrawable.ChildDrawable(android.graphics.drawable.Drawable, android.support.v17.leanback.graphics.CompositeDrawable); 3602*344a7f5eSAndroid Build Coastguard Worker method public android.support.v17.leanback.graphics.BoundsRule getBoundsRule(); 3603*344a7f5eSAndroid Build Coastguard Worker method public android.graphics.drawable.Drawable getDrawable(); 3604*344a7f5eSAndroid Build Coastguard Worker method public void recomputeBounds(); 3605*344a7f5eSAndroid Build Coastguard Worker field public static final android.util.Property<android.support.v17.leanback.graphics.CompositeDrawable.ChildDrawable, java.lang.Integer> BOTTOM_ABSOLUTE; 3606*344a7f5eSAndroid Build Coastguard Worker field public static final android.util.Property<android.support.v17.leanback.graphics.CompositeDrawable.ChildDrawable, java.lang.Float> BOTTOM_FRACTION; 3607*344a7f5eSAndroid Build Coastguard Worker field public static final android.util.Property<android.support.v17.leanback.graphics.CompositeDrawable.ChildDrawable, java.lang.Integer> LEFT_ABSOLUTE; 3608*344a7f5eSAndroid Build Coastguard Worker field public static final android.util.Property<android.support.v17.leanback.graphics.CompositeDrawable.ChildDrawable, java.lang.Float> LEFT_FRACTION; 3609*344a7f5eSAndroid Build Coastguard Worker field public static final android.util.Property<android.support.v17.leanback.graphics.CompositeDrawable.ChildDrawable, java.lang.Integer> RIGHT_ABSOLUTE; 3610*344a7f5eSAndroid Build Coastguard Worker field public static final android.util.Property<android.support.v17.leanback.graphics.CompositeDrawable.ChildDrawable, java.lang.Float> RIGHT_FRACTION; 3611*344a7f5eSAndroid Build Coastguard Worker field public static final android.util.Property<android.support.v17.leanback.graphics.CompositeDrawable.ChildDrawable, java.lang.Integer> TOP_ABSOLUTE; 3612*344a7f5eSAndroid Build Coastguard Worker field public static final android.util.Property<android.support.v17.leanback.graphics.CompositeDrawable.ChildDrawable, java.lang.Float> TOP_FRACTION; 3613*344a7f5eSAndroid Build Coastguard Worker } 3614*344a7f5eSAndroid Build Coastguard Worker 3615*344a7f5eSAndroid Build Coastguard Worker public class FitWidthBitmapDrawable extends android.graphics.drawable.Drawable { 3616*344a7f5eSAndroid Build Coastguard Worker ctor public FitWidthBitmapDrawable(); 3617*344a7f5eSAndroid Build Coastguard Worker method public void draw(android.graphics.Canvas); 3618*344a7f5eSAndroid Build Coastguard Worker method public android.graphics.Bitmap getBitmap(); 3619*344a7f5eSAndroid Build Coastguard Worker method public int getOpacity(); 3620*344a7f5eSAndroid Build Coastguard Worker method public android.graphics.Rect getSource(); 3621*344a7f5eSAndroid Build Coastguard Worker method public int getVerticalOffset(); 3622*344a7f5eSAndroid Build Coastguard Worker method public void setAlpha(int); 3623*344a7f5eSAndroid Build Coastguard Worker method public void setBitmap(android.graphics.Bitmap); 3624*344a7f5eSAndroid Build Coastguard Worker method public void setColorFilter(android.graphics.ColorFilter); 3625*344a7f5eSAndroid Build Coastguard Worker method public void setSource(android.graphics.Rect); 3626*344a7f5eSAndroid Build Coastguard Worker method public void setVerticalOffset(int); 3627*344a7f5eSAndroid Build Coastguard Worker field public static final android.util.Property<android.support.v17.leanback.graphics.FitWidthBitmapDrawable, java.lang.Integer> PROPERTY_VERTICAL_OFFSET; 3628*344a7f5eSAndroid Build Coastguard Worker } 3629*344a7f5eSAndroid Build Coastguard Worker 3630*344a7f5eSAndroid Build Coastguard Worker} 3631*344a7f5eSAndroid Build Coastguard Worker 3632*344a7f5eSAndroid Build Coastguard Workerpackage android.support.v17.leanback.media { 3633*344a7f5eSAndroid Build Coastguard Worker 3634*344a7f5eSAndroid Build Coastguard Worker public abstract class MediaControllerGlue extends android.support.v17.leanback.media.PlaybackControlGlue { 3635*344a7f5eSAndroid Build Coastguard Worker ctor public MediaControllerGlue(android.content.Context, int[], int[]); 3636*344a7f5eSAndroid Build Coastguard Worker method public void attachToMediaController(android.support.v4.media.session.MediaControllerCompat); 3637*344a7f5eSAndroid Build Coastguard Worker method public void detach(); 3638*344a7f5eSAndroid Build Coastguard Worker method public int getCurrentPosition(); 3639*344a7f5eSAndroid Build Coastguard Worker method public int getCurrentSpeedId(); 3640*344a7f5eSAndroid Build Coastguard Worker method public android.graphics.drawable.Drawable getMediaArt(); 3641*344a7f5eSAndroid Build Coastguard Worker method public final android.support.v4.media.session.MediaControllerCompat getMediaController(); 3642*344a7f5eSAndroid Build Coastguard Worker method public int getMediaDuration(); 3643*344a7f5eSAndroid Build Coastguard Worker method public java.lang.CharSequence getMediaSubtitle(); 3644*344a7f5eSAndroid Build Coastguard Worker method public java.lang.CharSequence getMediaTitle(); 3645*344a7f5eSAndroid Build Coastguard Worker method public long getSupportedActions(); 3646*344a7f5eSAndroid Build Coastguard Worker method public boolean hasValidMedia(); 3647*344a7f5eSAndroid Build Coastguard Worker method public boolean isMediaPlaying(); 3648*344a7f5eSAndroid Build Coastguard Worker } 3649*344a7f5eSAndroid Build Coastguard Worker 3650*344a7f5eSAndroid Build Coastguard Worker public class MediaPlayerAdapter extends android.support.v17.leanback.media.PlayerAdapter { 3651*344a7f5eSAndroid Build Coastguard Worker ctor public MediaPlayerAdapter(android.content.Context); 3652*344a7f5eSAndroid Build Coastguard Worker method protected boolean onError(int, int); 3653*344a7f5eSAndroid Build Coastguard Worker method protected boolean onInfo(int, int); 3654*344a7f5eSAndroid Build Coastguard Worker method protected void onSeekComplete(); 3655*344a7f5eSAndroid Build Coastguard Worker method public void pause(); 3656*344a7f5eSAndroid Build Coastguard Worker method public void play(); 3657*344a7f5eSAndroid Build Coastguard Worker method public void release(); 3658*344a7f5eSAndroid Build Coastguard Worker method public void reset(); 3659*344a7f5eSAndroid Build Coastguard Worker method public boolean setDataSource(android.net.Uri); 3660*344a7f5eSAndroid Build Coastguard Worker } 3661*344a7f5eSAndroid Build Coastguard Worker 3662*344a7f5eSAndroid Build Coastguard Worker public class PlaybackBannerControlGlue<T extends android.support.v17.leanback.media.PlayerAdapter> extends android.support.v17.leanback.media.PlaybackBaseControlGlue { 3663*344a7f5eSAndroid Build Coastguard Worker ctor public PlaybackBannerControlGlue(android.content.Context, int[], T); 3664*344a7f5eSAndroid Build Coastguard Worker ctor public PlaybackBannerControlGlue(android.content.Context, int[], int[], T); 3665*344a7f5eSAndroid Build Coastguard Worker method public int[] getFastForwardSpeeds(); 3666*344a7f5eSAndroid Build Coastguard Worker method public int[] getRewindSpeeds(); 3667*344a7f5eSAndroid Build Coastguard Worker method public long getSupportedActions(); 3668*344a7f5eSAndroid Build Coastguard Worker method public void onActionClicked(android.support.v17.leanback.widget.Action); 3669*344a7f5eSAndroid Build Coastguard Worker method protected android.support.v17.leanback.widget.PlaybackRowPresenter onCreateRowPresenter(); 3670*344a7f5eSAndroid Build Coastguard Worker method public boolean onKey(android.view.View, int, android.view.KeyEvent); 3671*344a7f5eSAndroid Build Coastguard Worker field public static final int ACTION_CUSTOM_LEFT_FIRST = 1; // 0x1 3672*344a7f5eSAndroid Build Coastguard Worker field public static final int ACTION_CUSTOM_RIGHT_FIRST = 4096; // 0x1000 3673*344a7f5eSAndroid Build Coastguard Worker field public static final int ACTION_FAST_FORWARD = 128; // 0x80 3674*344a7f5eSAndroid Build Coastguard Worker field public static final int ACTION_PLAY_PAUSE = 64; // 0x40 3675*344a7f5eSAndroid Build Coastguard Worker field public static final int ACTION_REWIND = 32; // 0x20 3676*344a7f5eSAndroid Build Coastguard Worker field public static final int ACTION_SKIP_TO_NEXT = 256; // 0x100 3677*344a7f5eSAndroid Build Coastguard Worker field public static final int ACTION_SKIP_TO_PREVIOUS = 16; // 0x10 3678*344a7f5eSAndroid Build Coastguard Worker field public static final int PLAYBACK_SPEED_FAST_L0 = 10; // 0xa 3679*344a7f5eSAndroid Build Coastguard Worker field public static final int PLAYBACK_SPEED_FAST_L1 = 11; // 0xb 3680*344a7f5eSAndroid Build Coastguard Worker field public static final int PLAYBACK_SPEED_FAST_L2 = 12; // 0xc 3681*344a7f5eSAndroid Build Coastguard Worker field public static final int PLAYBACK_SPEED_FAST_L3 = 13; // 0xd 3682*344a7f5eSAndroid Build Coastguard Worker field public static final int PLAYBACK_SPEED_FAST_L4 = 14; // 0xe 3683*344a7f5eSAndroid Build Coastguard Worker field public static final int PLAYBACK_SPEED_INVALID = -1; // 0xffffffff 3684*344a7f5eSAndroid Build Coastguard Worker field public static final int PLAYBACK_SPEED_NORMAL = 1; // 0x1 3685*344a7f5eSAndroid Build Coastguard Worker field public static final int PLAYBACK_SPEED_PAUSED = 0; // 0x0 3686*344a7f5eSAndroid Build Coastguard Worker } 3687*344a7f5eSAndroid Build Coastguard Worker 3688*344a7f5eSAndroid Build Coastguard Worker public abstract class PlaybackBaseControlGlue<T extends android.support.v17.leanback.media.PlayerAdapter> extends android.support.v17.leanback.media.PlaybackGlue implements android.support.v17.leanback.widget.OnActionClickedListener android.view.View.OnKeyListener { 3689*344a7f5eSAndroid Build Coastguard Worker ctor public PlaybackBaseControlGlue(android.content.Context, T); 3690*344a7f5eSAndroid Build Coastguard Worker method public android.graphics.drawable.Drawable getArt(); 3691*344a7f5eSAndroid Build Coastguard Worker method public final long getBufferedPosition(); 3692*344a7f5eSAndroid Build Coastguard Worker method public android.support.v17.leanback.widget.PlaybackControlsRow getControlsRow(); 3693*344a7f5eSAndroid Build Coastguard Worker method public long getCurrentPosition(); 3694*344a7f5eSAndroid Build Coastguard Worker method public final long getDuration(); 3695*344a7f5eSAndroid Build Coastguard Worker method public android.support.v17.leanback.widget.PlaybackRowPresenter getPlaybackRowPresenter(); 3696*344a7f5eSAndroid Build Coastguard Worker method public final T getPlayerAdapter(); 3697*344a7f5eSAndroid Build Coastguard Worker method public java.lang.CharSequence getSubtitle(); 3698*344a7f5eSAndroid Build Coastguard Worker method public java.lang.CharSequence getTitle(); 3699*344a7f5eSAndroid Build Coastguard Worker method public boolean isControlsOverlayAutoHideEnabled(); 3700*344a7f5eSAndroid Build Coastguard Worker method public final boolean isPlaying(); 3701*344a7f5eSAndroid Build Coastguard Worker method public final boolean isPrepared(); 3702*344a7f5eSAndroid Build Coastguard Worker method protected static void notifyItemChanged(android.support.v17.leanback.widget.ArrayObjectAdapter, java.lang.Object); 3703*344a7f5eSAndroid Build Coastguard Worker method public abstract void onActionClicked(android.support.v17.leanback.widget.Action); 3704*344a7f5eSAndroid Build Coastguard Worker method protected void onCreatePrimaryActions(android.support.v17.leanback.widget.ArrayObjectAdapter); 3705*344a7f5eSAndroid Build Coastguard Worker method protected abstract android.support.v17.leanback.widget.PlaybackRowPresenter onCreateRowPresenter(); 3706*344a7f5eSAndroid Build Coastguard Worker method protected void onCreateSecondaryActions(android.support.v17.leanback.widget.ArrayObjectAdapter); 3707*344a7f5eSAndroid Build Coastguard Worker method public abstract boolean onKey(android.view.View, int, android.view.KeyEvent); 3708*344a7f5eSAndroid Build Coastguard Worker method protected void onPlayCompleted(); 3709*344a7f5eSAndroid Build Coastguard Worker method protected void onPlayStateChanged(); 3710*344a7f5eSAndroid Build Coastguard Worker method protected void onPreparedStateChanged(); 3711*344a7f5eSAndroid Build Coastguard Worker method public final void seekTo(long); 3712*344a7f5eSAndroid Build Coastguard Worker method public void setArt(android.graphics.drawable.Drawable); 3713*344a7f5eSAndroid Build Coastguard Worker method public void setControlsOverlayAutoHideEnabled(boolean); 3714*344a7f5eSAndroid Build Coastguard Worker method public void setControlsRow(android.support.v17.leanback.widget.PlaybackControlsRow); 3715*344a7f5eSAndroid Build Coastguard Worker method public void setPlaybackRowPresenter(android.support.v17.leanback.widget.PlaybackRowPresenter); 3716*344a7f5eSAndroid Build Coastguard Worker method public void setSubtitle(java.lang.CharSequence); 3717*344a7f5eSAndroid Build Coastguard Worker method public void setTitle(java.lang.CharSequence); 3718*344a7f5eSAndroid Build Coastguard Worker } 3719*344a7f5eSAndroid Build Coastguard Worker 3720*344a7f5eSAndroid Build Coastguard Worker public abstract class PlaybackControlGlue extends android.support.v17.leanback.media.PlaybackGlue implements android.support.v17.leanback.widget.OnActionClickedListener android.view.View.OnKeyListener { 3721*344a7f5eSAndroid Build Coastguard Worker ctor public PlaybackControlGlue(android.content.Context, int[]); 3722*344a7f5eSAndroid Build Coastguard Worker ctor public PlaybackControlGlue(android.content.Context, int[], int[]); 3723*344a7f5eSAndroid Build Coastguard Worker method public void enableProgressUpdating(boolean); 3724*344a7f5eSAndroid Build Coastguard Worker method public android.support.v17.leanback.widget.PlaybackControlsRow getControlsRow(); 3725*344a7f5eSAndroid Build Coastguard Worker method public deprecated android.support.v17.leanback.widget.PlaybackControlsRowPresenter getControlsRowPresenter(); 3726*344a7f5eSAndroid Build Coastguard Worker method public abstract int getCurrentPosition(); 3727*344a7f5eSAndroid Build Coastguard Worker method public abstract int getCurrentSpeedId(); 3728*344a7f5eSAndroid Build Coastguard Worker method public int[] getFastForwardSpeeds(); 3729*344a7f5eSAndroid Build Coastguard Worker method public abstract android.graphics.drawable.Drawable getMediaArt(); 3730*344a7f5eSAndroid Build Coastguard Worker method public abstract int getMediaDuration(); 3731*344a7f5eSAndroid Build Coastguard Worker method public abstract java.lang.CharSequence getMediaSubtitle(); 3732*344a7f5eSAndroid Build Coastguard Worker method public abstract java.lang.CharSequence getMediaTitle(); 3733*344a7f5eSAndroid Build Coastguard Worker method public android.support.v17.leanback.widget.PlaybackRowPresenter getPlaybackRowPresenter(); 3734*344a7f5eSAndroid Build Coastguard Worker method public int[] getRewindSpeeds(); 3735*344a7f5eSAndroid Build Coastguard Worker method public abstract long getSupportedActions(); 3736*344a7f5eSAndroid Build Coastguard Worker method public int getUpdatePeriod(); 3737*344a7f5eSAndroid Build Coastguard Worker method public abstract boolean hasValidMedia(); 3738*344a7f5eSAndroid Build Coastguard Worker method public boolean isFadingEnabled(); 3739*344a7f5eSAndroid Build Coastguard Worker method public abstract boolean isMediaPlaying(); 3740*344a7f5eSAndroid Build Coastguard Worker method public void onActionClicked(android.support.v17.leanback.widget.Action); 3741*344a7f5eSAndroid Build Coastguard Worker method protected void onCreateControlsRowAndPresenter(); 3742*344a7f5eSAndroid Build Coastguard Worker method protected void onCreatePrimaryActions(android.support.v17.leanback.widget.SparseArrayObjectAdapter); 3743*344a7f5eSAndroid Build Coastguard Worker method protected void onCreateSecondaryActions(android.support.v17.leanback.widget.ArrayObjectAdapter); 3744*344a7f5eSAndroid Build Coastguard Worker method public boolean onKey(android.view.View, int, android.view.KeyEvent); 3745*344a7f5eSAndroid Build Coastguard Worker method protected void onMetadataChanged(); 3746*344a7f5eSAndroid Build Coastguard Worker method protected void onStateChanged(); 3747*344a7f5eSAndroid Build Coastguard Worker method public void play(int); 3748*344a7f5eSAndroid Build Coastguard Worker method public final void play(); 3749*344a7f5eSAndroid Build Coastguard Worker method public void setControlsRow(android.support.v17.leanback.widget.PlaybackControlsRow); 3750*344a7f5eSAndroid Build Coastguard Worker method public deprecated void setControlsRowPresenter(android.support.v17.leanback.widget.PlaybackControlsRowPresenter); 3751*344a7f5eSAndroid Build Coastguard Worker method public void setFadingEnabled(boolean); 3752*344a7f5eSAndroid Build Coastguard Worker method public void setPlaybackRowPresenter(android.support.v17.leanback.widget.PlaybackRowPresenter); 3753*344a7f5eSAndroid Build Coastguard Worker method public void updateProgress(); 3754*344a7f5eSAndroid Build Coastguard Worker field public static final int ACTION_CUSTOM_LEFT_FIRST = 1; // 0x1 3755*344a7f5eSAndroid Build Coastguard Worker field public static final int ACTION_CUSTOM_RIGHT_FIRST = 4096; // 0x1000 3756*344a7f5eSAndroid Build Coastguard Worker field public static final int ACTION_FAST_FORWARD = 128; // 0x80 3757*344a7f5eSAndroid Build Coastguard Worker field public static final int ACTION_PLAY_PAUSE = 64; // 0x40 3758*344a7f5eSAndroid Build Coastguard Worker field public static final int ACTION_REWIND = 32; // 0x20 3759*344a7f5eSAndroid Build Coastguard Worker field public static final int ACTION_SKIP_TO_NEXT = 256; // 0x100 3760*344a7f5eSAndroid Build Coastguard Worker field public static final int ACTION_SKIP_TO_PREVIOUS = 16; // 0x10 3761*344a7f5eSAndroid Build Coastguard Worker field public static final int PLAYBACK_SPEED_FAST_L0 = 10; // 0xa 3762*344a7f5eSAndroid Build Coastguard Worker field public static final int PLAYBACK_SPEED_FAST_L1 = 11; // 0xb 3763*344a7f5eSAndroid Build Coastguard Worker field public static final int PLAYBACK_SPEED_FAST_L2 = 12; // 0xc 3764*344a7f5eSAndroid Build Coastguard Worker field public static final int PLAYBACK_SPEED_FAST_L3 = 13; // 0xd 3765*344a7f5eSAndroid Build Coastguard Worker field public static final int PLAYBACK_SPEED_FAST_L4 = 14; // 0xe 3766*344a7f5eSAndroid Build Coastguard Worker field public static final int PLAYBACK_SPEED_INVALID = -1; // 0xffffffff 3767*344a7f5eSAndroid Build Coastguard Worker field public static final int PLAYBACK_SPEED_NORMAL = 1; // 0x1 3768*344a7f5eSAndroid Build Coastguard Worker field public static final int PLAYBACK_SPEED_PAUSED = 0; // 0x0 3769*344a7f5eSAndroid Build Coastguard Worker } 3770*344a7f5eSAndroid Build Coastguard Worker 3771*344a7f5eSAndroid Build Coastguard Worker public abstract class PlaybackGlue { 3772*344a7f5eSAndroid Build Coastguard Worker ctor public PlaybackGlue(android.content.Context); 3773*344a7f5eSAndroid Build Coastguard Worker method public void addPlayerCallback(android.support.v17.leanback.media.PlaybackGlue.PlayerCallback); 3774*344a7f5eSAndroid Build Coastguard Worker method public android.content.Context getContext(); 3775*344a7f5eSAndroid Build Coastguard Worker method public android.support.v17.leanback.media.PlaybackGlueHost getHost(); 3776*344a7f5eSAndroid Build Coastguard Worker method protected java.util.List<android.support.v17.leanback.media.PlaybackGlue.PlayerCallback> getPlayerCallbacks(); 3777*344a7f5eSAndroid Build Coastguard Worker method public boolean isPlaying(); 3778*344a7f5eSAndroid Build Coastguard Worker method public boolean isPrepared(); 3779*344a7f5eSAndroid Build Coastguard Worker method public deprecated boolean isReadyForPlayback(); 3780*344a7f5eSAndroid Build Coastguard Worker method public void next(); 3781*344a7f5eSAndroid Build Coastguard Worker method protected void onAttachedToHost(android.support.v17.leanback.media.PlaybackGlueHost); 3782*344a7f5eSAndroid Build Coastguard Worker method protected void onDetachedFromHost(); 3783*344a7f5eSAndroid Build Coastguard Worker method protected void onHostPause(); 3784*344a7f5eSAndroid Build Coastguard Worker method protected void onHostResume(); 3785*344a7f5eSAndroid Build Coastguard Worker method protected void onHostStart(); 3786*344a7f5eSAndroid Build Coastguard Worker method protected void onHostStop(); 3787*344a7f5eSAndroid Build Coastguard Worker method public void pause(); 3788*344a7f5eSAndroid Build Coastguard Worker method public void play(); 3789*344a7f5eSAndroid Build Coastguard Worker method public void previous(); 3790*344a7f5eSAndroid Build Coastguard Worker method public void removePlayerCallback(android.support.v17.leanback.media.PlaybackGlue.PlayerCallback); 3791*344a7f5eSAndroid Build Coastguard Worker method public final void setHost(android.support.v17.leanback.media.PlaybackGlueHost); 3792*344a7f5eSAndroid Build Coastguard Worker method public deprecated void setPlayerCallback(android.support.v17.leanback.media.PlaybackGlue.PlayerCallback); 3793*344a7f5eSAndroid Build Coastguard Worker } 3794*344a7f5eSAndroid Build Coastguard Worker 3795*344a7f5eSAndroid Build Coastguard Worker public static abstract class PlaybackGlue.PlayerCallback { 3796*344a7f5eSAndroid Build Coastguard Worker ctor public PlaybackGlue.PlayerCallback(); 3797*344a7f5eSAndroid Build Coastguard Worker method public void onPlayCompleted(android.support.v17.leanback.media.PlaybackGlue); 3798*344a7f5eSAndroid Build Coastguard Worker method public void onPlayStateChanged(android.support.v17.leanback.media.PlaybackGlue); 3799*344a7f5eSAndroid Build Coastguard Worker method public void onPreparedStateChanged(android.support.v17.leanback.media.PlaybackGlue); 3800*344a7f5eSAndroid Build Coastguard Worker method public deprecated void onReadyForPlayback(); 3801*344a7f5eSAndroid Build Coastguard Worker } 3802*344a7f5eSAndroid Build Coastguard Worker 3803*344a7f5eSAndroid Build Coastguard Worker public abstract class PlaybackGlueHost { 3804*344a7f5eSAndroid Build Coastguard Worker ctor public PlaybackGlueHost(); 3805*344a7f5eSAndroid Build Coastguard Worker method public deprecated void fadeOut(); 3806*344a7f5eSAndroid Build Coastguard Worker method public android.support.v17.leanback.media.PlaybackGlueHost.PlayerCallback getPlayerCallback(); 3807*344a7f5eSAndroid Build Coastguard Worker method public void hideControlsOverlay(boolean); 3808*344a7f5eSAndroid Build Coastguard Worker method public boolean isControlsOverlayAutoHideEnabled(); 3809*344a7f5eSAndroid Build Coastguard Worker method public boolean isControlsOverlayVisible(); 3810*344a7f5eSAndroid Build Coastguard Worker method public void notifyPlaybackRowChanged(); 3811*344a7f5eSAndroid Build Coastguard Worker method public void setControlsOverlayAutoHideEnabled(boolean); 3812*344a7f5eSAndroid Build Coastguard Worker method public deprecated void setFadingEnabled(boolean); 3813*344a7f5eSAndroid Build Coastguard Worker method public void setHostCallback(android.support.v17.leanback.media.PlaybackGlueHost.HostCallback); 3814*344a7f5eSAndroid Build Coastguard Worker method public void setOnActionClickedListener(android.support.v17.leanback.widget.OnActionClickedListener); 3815*344a7f5eSAndroid Build Coastguard Worker method public void setOnKeyInterceptListener(android.view.View.OnKeyListener); 3816*344a7f5eSAndroid Build Coastguard Worker method public void setPlaybackRow(android.support.v17.leanback.widget.Row); 3817*344a7f5eSAndroid Build Coastguard Worker method public void setPlaybackRowPresenter(android.support.v17.leanback.widget.PlaybackRowPresenter); 3818*344a7f5eSAndroid Build Coastguard Worker method public void showControlsOverlay(boolean); 3819*344a7f5eSAndroid Build Coastguard Worker } 3820*344a7f5eSAndroid Build Coastguard Worker 3821*344a7f5eSAndroid Build Coastguard Worker public static abstract class PlaybackGlueHost.HostCallback { 3822*344a7f5eSAndroid Build Coastguard Worker ctor public PlaybackGlueHost.HostCallback(); 3823*344a7f5eSAndroid Build Coastguard Worker method public void onHostDestroy(); 3824*344a7f5eSAndroid Build Coastguard Worker method public void onHostPause(); 3825*344a7f5eSAndroid Build Coastguard Worker method public void onHostResume(); 3826*344a7f5eSAndroid Build Coastguard Worker method public void onHostStart(); 3827*344a7f5eSAndroid Build Coastguard Worker method public void onHostStop(); 3828*344a7f5eSAndroid Build Coastguard Worker } 3829*344a7f5eSAndroid Build Coastguard Worker 3830*344a7f5eSAndroid Build Coastguard Worker public static class PlaybackGlueHost.PlayerCallback { 3831*344a7f5eSAndroid Build Coastguard Worker ctor public PlaybackGlueHost.PlayerCallback(); 3832*344a7f5eSAndroid Build Coastguard Worker method public void onBufferingStateChanged(boolean); 3833*344a7f5eSAndroid Build Coastguard Worker method public void onError(int, java.lang.CharSequence); 3834*344a7f5eSAndroid Build Coastguard Worker method public void onVideoSizeChanged(int, int); 3835*344a7f5eSAndroid Build Coastguard Worker } 3836*344a7f5eSAndroid Build Coastguard Worker 3837*344a7f5eSAndroid Build Coastguard Worker public class PlaybackTransportControlGlue<T extends android.support.v17.leanback.media.PlayerAdapter> extends android.support.v17.leanback.media.PlaybackBaseControlGlue { 3838*344a7f5eSAndroid Build Coastguard Worker ctor public PlaybackTransportControlGlue(android.content.Context, T); 3839*344a7f5eSAndroid Build Coastguard Worker method public final android.support.v17.leanback.widget.PlaybackSeekDataProvider getSeekProvider(); 3840*344a7f5eSAndroid Build Coastguard Worker method public final boolean isSeekEnabled(); 3841*344a7f5eSAndroid Build Coastguard Worker method public void onActionClicked(android.support.v17.leanback.widget.Action); 3842*344a7f5eSAndroid Build Coastguard Worker method protected android.support.v17.leanback.widget.PlaybackRowPresenter onCreateRowPresenter(); 3843*344a7f5eSAndroid Build Coastguard Worker method public boolean onKey(android.view.View, int, android.view.KeyEvent); 3844*344a7f5eSAndroid Build Coastguard Worker method public final void setSeekEnabled(boolean); 3845*344a7f5eSAndroid Build Coastguard Worker method public final void setSeekProvider(android.support.v17.leanback.widget.PlaybackSeekDataProvider); 3846*344a7f5eSAndroid Build Coastguard Worker } 3847*344a7f5eSAndroid Build Coastguard Worker 3848*344a7f5eSAndroid Build Coastguard Worker public abstract class PlayerAdapter { 3849*344a7f5eSAndroid Build Coastguard Worker ctor public PlayerAdapter(); 3850*344a7f5eSAndroid Build Coastguard Worker method public long getBufferedPosition(); 3851*344a7f5eSAndroid Build Coastguard Worker method public final android.support.v17.leanback.media.PlayerAdapter.Callback getCallback(); 3852*344a7f5eSAndroid Build Coastguard Worker method public long getCurrentPosition(); 3853*344a7f5eSAndroid Build Coastguard Worker method public long getDuration(); 3854*344a7f5eSAndroid Build Coastguard Worker method public boolean isPlaying(); 3855*344a7f5eSAndroid Build Coastguard Worker method public boolean isPrepared(); 3856*344a7f5eSAndroid Build Coastguard Worker method public void onAttachedToHost(android.support.v17.leanback.media.PlaybackGlueHost); 3857*344a7f5eSAndroid Build Coastguard Worker method public void onDetachedFromHost(); 3858*344a7f5eSAndroid Build Coastguard Worker method public abstract void pause(); 3859*344a7f5eSAndroid Build Coastguard Worker method public abstract void play(); 3860*344a7f5eSAndroid Build Coastguard Worker method public void seekTo(long); 3861*344a7f5eSAndroid Build Coastguard Worker method public final void setCallback(android.support.v17.leanback.media.PlayerAdapter.Callback); 3862*344a7f5eSAndroid Build Coastguard Worker method public void setProgressUpdatingEnabled(boolean); 3863*344a7f5eSAndroid Build Coastguard Worker } 3864*344a7f5eSAndroid Build Coastguard Worker 3865*344a7f5eSAndroid Build Coastguard Worker public static class PlayerAdapter.Callback { 3866*344a7f5eSAndroid Build Coastguard Worker ctor public PlayerAdapter.Callback(); 3867*344a7f5eSAndroid Build Coastguard Worker method public void onBufferedPositionChanged(android.support.v17.leanback.media.PlayerAdapter); 3868*344a7f5eSAndroid Build Coastguard Worker method public void onBufferingStateChanged(android.support.v17.leanback.media.PlayerAdapter, boolean); 3869*344a7f5eSAndroid Build Coastguard Worker method public void onCurrentPositionChanged(android.support.v17.leanback.media.PlayerAdapter); 3870*344a7f5eSAndroid Build Coastguard Worker method public void onDurationChanged(android.support.v17.leanback.media.PlayerAdapter); 3871*344a7f5eSAndroid Build Coastguard Worker method public void onError(android.support.v17.leanback.media.PlayerAdapter, int, java.lang.String); 3872*344a7f5eSAndroid Build Coastguard Worker method public void onPlayCompleted(android.support.v17.leanback.media.PlayerAdapter); 3873*344a7f5eSAndroid Build Coastguard Worker method public void onPlayStateChanged(android.support.v17.leanback.media.PlayerAdapter); 3874*344a7f5eSAndroid Build Coastguard Worker method public void onPreparedStateChanged(android.support.v17.leanback.media.PlayerAdapter); 3875*344a7f5eSAndroid Build Coastguard Worker method public void onVideoSizeChanged(android.support.v17.leanback.media.PlayerAdapter, int, int); 3876*344a7f5eSAndroid Build Coastguard Worker } 3877*344a7f5eSAndroid Build Coastguard Worker 3878*344a7f5eSAndroid Build Coastguard Worker public abstract interface SurfaceHolderGlueHost { 3879*344a7f5eSAndroid Build Coastguard Worker method public abstract void setSurfaceHolderCallback(android.view.SurfaceHolder.Callback); 3880*344a7f5eSAndroid Build Coastguard Worker } 3881*344a7f5eSAndroid Build Coastguard Worker 3882*344a7f5eSAndroid Build Coastguard Worker} 3883*344a7f5eSAndroid Build Coastguard Worker 3884*344a7f5eSAndroid Build Coastguard Workerpackage android.support.v17.leanback.system { 3885*344a7f5eSAndroid Build Coastguard Worker 3886*344a7f5eSAndroid Build Coastguard Worker public class Settings { 3887*344a7f5eSAndroid Build Coastguard Worker method public boolean getBoolean(java.lang.String); 3888*344a7f5eSAndroid Build Coastguard Worker method public static android.support.v17.leanback.system.Settings getInstance(android.content.Context); 3889*344a7f5eSAndroid Build Coastguard Worker method public void setBoolean(java.lang.String, boolean); 3890*344a7f5eSAndroid Build Coastguard Worker field public static final java.lang.String PREFER_STATIC_SHADOWS = "PREFER_STATIC_SHADOWS"; 3891*344a7f5eSAndroid Build Coastguard Worker } 3892*344a7f5eSAndroid Build Coastguard Worker 3893*344a7f5eSAndroid Build Coastguard Worker} 3894*344a7f5eSAndroid Build Coastguard Worker 3895*344a7f5eSAndroid Build Coastguard Workerpackage android.support.v17.leanback.widget { 3896*344a7f5eSAndroid Build Coastguard Worker 3897*344a7f5eSAndroid Build Coastguard Worker public abstract class AbstractDetailsDescriptionPresenter extends android.support.v17.leanback.widget.Presenter { 3898*344a7f5eSAndroid Build Coastguard Worker ctor public AbstractDetailsDescriptionPresenter(); 3899*344a7f5eSAndroid Build Coastguard Worker method protected abstract void onBindDescription(android.support.v17.leanback.widget.AbstractDetailsDescriptionPresenter.ViewHolder, java.lang.Object); 3900*344a7f5eSAndroid Build Coastguard Worker method public final void onBindViewHolder(android.support.v17.leanback.widget.Presenter.ViewHolder, java.lang.Object); 3901*344a7f5eSAndroid Build Coastguard Worker method public final android.support.v17.leanback.widget.AbstractDetailsDescriptionPresenter.ViewHolder onCreateViewHolder(android.view.ViewGroup); 3902*344a7f5eSAndroid Build Coastguard Worker method public void onUnbindViewHolder(android.support.v17.leanback.widget.Presenter.ViewHolder); 3903*344a7f5eSAndroid Build Coastguard Worker } 3904*344a7f5eSAndroid Build Coastguard Worker 3905*344a7f5eSAndroid Build Coastguard Worker public static class AbstractDetailsDescriptionPresenter.ViewHolder extends android.support.v17.leanback.widget.Presenter.ViewHolder { 3906*344a7f5eSAndroid Build Coastguard Worker ctor public AbstractDetailsDescriptionPresenter.ViewHolder(android.view.View); 3907*344a7f5eSAndroid Build Coastguard Worker method public android.widget.TextView getBody(); 3908*344a7f5eSAndroid Build Coastguard Worker method public android.widget.TextView getSubtitle(); 3909*344a7f5eSAndroid Build Coastguard Worker method public android.widget.TextView getTitle(); 3910*344a7f5eSAndroid Build Coastguard Worker } 3911*344a7f5eSAndroid Build Coastguard Worker 3912*344a7f5eSAndroid Build Coastguard Worker public abstract class AbstractMediaItemPresenter extends android.support.v17.leanback.widget.RowPresenter { 3913*344a7f5eSAndroid Build Coastguard Worker ctor public AbstractMediaItemPresenter(); 3914*344a7f5eSAndroid Build Coastguard Worker ctor public AbstractMediaItemPresenter(int); 3915*344a7f5eSAndroid Build Coastguard Worker method protected android.support.v17.leanback.widget.RowPresenter.ViewHolder createRowViewHolder(android.view.ViewGroup); 3916*344a7f5eSAndroid Build Coastguard Worker method public android.support.v17.leanback.widget.Presenter getActionPresenter(); 3917*344a7f5eSAndroid Build Coastguard Worker method protected int getMediaPlayState(java.lang.Object); 3918*344a7f5eSAndroid Build Coastguard Worker method public int getThemeId(); 3919*344a7f5eSAndroid Build Coastguard Worker method public boolean hasMediaRowSeparator(); 3920*344a7f5eSAndroid Build Coastguard Worker method protected abstract void onBindMediaDetails(android.support.v17.leanback.widget.AbstractMediaItemPresenter.ViewHolder, java.lang.Object); 3921*344a7f5eSAndroid Build Coastguard Worker method public void onBindMediaPlayState(android.support.v17.leanback.widget.AbstractMediaItemPresenter.ViewHolder); 3922*344a7f5eSAndroid Build Coastguard Worker method protected void onBindRowActions(android.support.v17.leanback.widget.AbstractMediaItemPresenter.ViewHolder); 3923*344a7f5eSAndroid Build Coastguard Worker method protected void onUnbindMediaDetails(android.support.v17.leanback.widget.AbstractMediaItemPresenter.ViewHolder); 3924*344a7f5eSAndroid Build Coastguard Worker method public void onUnbindMediaPlayState(android.support.v17.leanback.widget.AbstractMediaItemPresenter.ViewHolder); 3925*344a7f5eSAndroid Build Coastguard Worker method public void setActionPresenter(android.support.v17.leanback.widget.Presenter); 3926*344a7f5eSAndroid Build Coastguard Worker method public void setBackgroundColor(int); 3927*344a7f5eSAndroid Build Coastguard Worker method public void setHasMediaRowSeparator(boolean); 3928*344a7f5eSAndroid Build Coastguard Worker method public void setThemeId(int); 3929*344a7f5eSAndroid Build Coastguard Worker field public static final int PLAY_STATE_INITIAL = 0; // 0x0 3930*344a7f5eSAndroid Build Coastguard Worker field public static final int PLAY_STATE_PAUSED = 1; // 0x1 3931*344a7f5eSAndroid Build Coastguard Worker field public static final int PLAY_STATE_PLAYING = 2; // 0x2 3932*344a7f5eSAndroid Build Coastguard Worker } 3933*344a7f5eSAndroid Build Coastguard Worker 3934*344a7f5eSAndroid Build Coastguard Worker public static class AbstractMediaItemPresenter.ViewHolder extends android.support.v17.leanback.widget.RowPresenter.ViewHolder { 3935*344a7f5eSAndroid Build Coastguard Worker ctor public AbstractMediaItemPresenter.ViewHolder(android.view.View); 3936*344a7f5eSAndroid Build Coastguard Worker method public android.view.ViewGroup getMediaItemActionsContainer(); 3937*344a7f5eSAndroid Build Coastguard Worker method public android.view.View getMediaItemDetailsView(); 3938*344a7f5eSAndroid Build Coastguard Worker method public android.widget.TextView getMediaItemDurationView(); 3939*344a7f5eSAndroid Build Coastguard Worker method public android.widget.TextView getMediaItemNameView(); 3940*344a7f5eSAndroid Build Coastguard Worker method public android.widget.TextView getMediaItemNumberView(); 3941*344a7f5eSAndroid Build Coastguard Worker method public android.widget.ViewFlipper getMediaItemNumberViewFlipper(); 3942*344a7f5eSAndroid Build Coastguard Worker method public android.view.View getMediaItemPausedView(); 3943*344a7f5eSAndroid Build Coastguard Worker method public android.view.View getMediaItemPlayingView(); 3944*344a7f5eSAndroid Build Coastguard Worker method public android.support.v17.leanback.widget.MultiActionsProvider.MultiAction[] getMediaItemRowActions(); 3945*344a7f5eSAndroid Build Coastguard Worker method public android.view.View getMediaItemRowSeparator(); 3946*344a7f5eSAndroid Build Coastguard Worker method public android.view.View getSelectorView(); 3947*344a7f5eSAndroid Build Coastguard Worker method public void notifyActionChanged(android.support.v17.leanback.widget.MultiActionsProvider.MultiAction); 3948*344a7f5eSAndroid Build Coastguard Worker method public void notifyDetailsChanged(); 3949*344a7f5eSAndroid Build Coastguard Worker method public void notifyPlayStateChanged(); 3950*344a7f5eSAndroid Build Coastguard Worker method public void onBindRowActions(); 3951*344a7f5eSAndroid Build Coastguard Worker method public void setSelectedMediaItemNumberView(int); 3952*344a7f5eSAndroid Build Coastguard Worker } 3953*344a7f5eSAndroid Build Coastguard Worker 3954*344a7f5eSAndroid Build Coastguard Worker public abstract class AbstractMediaListHeaderPresenter extends android.support.v17.leanback.widget.RowPresenter { 3955*344a7f5eSAndroid Build Coastguard Worker ctor public AbstractMediaListHeaderPresenter(android.content.Context, int); 3956*344a7f5eSAndroid Build Coastguard Worker ctor public AbstractMediaListHeaderPresenter(); 3957*344a7f5eSAndroid Build Coastguard Worker method protected android.support.v17.leanback.widget.RowPresenter.ViewHolder createRowViewHolder(android.view.ViewGroup); 3958*344a7f5eSAndroid Build Coastguard Worker method protected abstract void onBindMediaListHeaderViewHolder(android.support.v17.leanback.widget.AbstractMediaListHeaderPresenter.ViewHolder, java.lang.Object); 3959*344a7f5eSAndroid Build Coastguard Worker method public void setBackgroundColor(int); 3960*344a7f5eSAndroid Build Coastguard Worker } 3961*344a7f5eSAndroid Build Coastguard Worker 3962*344a7f5eSAndroid Build Coastguard Worker public static class AbstractMediaListHeaderPresenter.ViewHolder extends android.support.v17.leanback.widget.RowPresenter.ViewHolder { 3963*344a7f5eSAndroid Build Coastguard Worker ctor public AbstractMediaListHeaderPresenter.ViewHolder(android.view.View); 3964*344a7f5eSAndroid Build Coastguard Worker method public android.widget.TextView getHeaderView(); 3965*344a7f5eSAndroid Build Coastguard Worker } 3966*344a7f5eSAndroid Build Coastguard Worker 3967*344a7f5eSAndroid Build Coastguard Worker public class Action { 3968*344a7f5eSAndroid Build Coastguard Worker ctor public Action(long); 3969*344a7f5eSAndroid Build Coastguard Worker ctor public Action(long, java.lang.CharSequence); 3970*344a7f5eSAndroid Build Coastguard Worker ctor public Action(long, java.lang.CharSequence, java.lang.CharSequence); 3971*344a7f5eSAndroid Build Coastguard Worker ctor public Action(long, java.lang.CharSequence, java.lang.CharSequence, android.graphics.drawable.Drawable); 3972*344a7f5eSAndroid Build Coastguard Worker method public final void addKeyCode(int); 3973*344a7f5eSAndroid Build Coastguard Worker method public final android.graphics.drawable.Drawable getIcon(); 3974*344a7f5eSAndroid Build Coastguard Worker method public final long getId(); 3975*344a7f5eSAndroid Build Coastguard Worker method public final java.lang.CharSequence getLabel1(); 3976*344a7f5eSAndroid Build Coastguard Worker method public final java.lang.CharSequence getLabel2(); 3977*344a7f5eSAndroid Build Coastguard Worker method public final void removeKeyCode(int); 3978*344a7f5eSAndroid Build Coastguard Worker method public final boolean respondsToKeyCode(int); 3979*344a7f5eSAndroid Build Coastguard Worker method public final void setIcon(android.graphics.drawable.Drawable); 3980*344a7f5eSAndroid Build Coastguard Worker method public final void setId(long); 3981*344a7f5eSAndroid Build Coastguard Worker method public final void setLabel1(java.lang.CharSequence); 3982*344a7f5eSAndroid Build Coastguard Worker method public final void setLabel2(java.lang.CharSequence); 3983*344a7f5eSAndroid Build Coastguard Worker field public static final long NO_ID = -1L; // 0xffffffffffffffffL 3984*344a7f5eSAndroid Build Coastguard Worker } 3985*344a7f5eSAndroid Build Coastguard Worker 3986*344a7f5eSAndroid Build Coastguard Worker public class ArrayObjectAdapter extends android.support.v17.leanback.widget.ObjectAdapter { 3987*344a7f5eSAndroid Build Coastguard Worker ctor public ArrayObjectAdapter(android.support.v17.leanback.widget.PresenterSelector); 3988*344a7f5eSAndroid Build Coastguard Worker ctor public ArrayObjectAdapter(android.support.v17.leanback.widget.Presenter); 3989*344a7f5eSAndroid Build Coastguard Worker ctor public ArrayObjectAdapter(); 3990*344a7f5eSAndroid Build Coastguard Worker method public void add(java.lang.Object); 3991*344a7f5eSAndroid Build Coastguard Worker method public void add(int, java.lang.Object); 3992*344a7f5eSAndroid Build Coastguard Worker method public void addAll(int, java.util.Collection); 3993*344a7f5eSAndroid Build Coastguard Worker method public void clear(); 3994*344a7f5eSAndroid Build Coastguard Worker method public java.lang.Object get(int); 3995*344a7f5eSAndroid Build Coastguard Worker method public int indexOf(java.lang.Object); 3996*344a7f5eSAndroid Build Coastguard Worker method public void notifyArrayItemRangeChanged(int, int); 3997*344a7f5eSAndroid Build Coastguard Worker method public boolean remove(java.lang.Object); 3998*344a7f5eSAndroid Build Coastguard Worker method public int removeItems(int, int); 3999*344a7f5eSAndroid Build Coastguard Worker method public void replace(int, java.lang.Object); 4000*344a7f5eSAndroid Build Coastguard Worker method public int size(); 4001*344a7f5eSAndroid Build Coastguard Worker method public <E> java.util.List<E> unmodifiableList(); 4002*344a7f5eSAndroid Build Coastguard Worker } 4003*344a7f5eSAndroid Build Coastguard Worker 4004*344a7f5eSAndroid Build Coastguard Worker public class BaseCardView extends android.widget.FrameLayout { 4005*344a7f5eSAndroid Build Coastguard Worker ctor public BaseCardView(android.content.Context); 4006*344a7f5eSAndroid Build Coastguard Worker ctor public BaseCardView(android.content.Context, android.util.AttributeSet); 4007*344a7f5eSAndroid Build Coastguard Worker ctor public BaseCardView(android.content.Context, android.util.AttributeSet, int); 4008*344a7f5eSAndroid Build Coastguard Worker method public int getCardType(); 4009*344a7f5eSAndroid Build Coastguard Worker method public deprecated int getExtraVisibility(); 4010*344a7f5eSAndroid Build Coastguard Worker method public int getInfoVisibility(); 4011*344a7f5eSAndroid Build Coastguard Worker method public boolean isSelectedAnimationDelayed(); 4012*344a7f5eSAndroid Build Coastguard Worker method public void setCardType(int); 4013*344a7f5eSAndroid Build Coastguard Worker method public deprecated void setExtraVisibility(int); 4014*344a7f5eSAndroid Build Coastguard Worker method public void setInfoVisibility(int); 4015*344a7f5eSAndroid Build Coastguard Worker method public void setSelectedAnimationDelayed(boolean); 4016*344a7f5eSAndroid Build Coastguard Worker field public static final int CARD_REGION_VISIBLE_ACTIVATED = 1; // 0x1 4017*344a7f5eSAndroid Build Coastguard Worker field public static final int CARD_REGION_VISIBLE_ALWAYS = 0; // 0x0 4018*344a7f5eSAndroid Build Coastguard Worker field public static final int CARD_REGION_VISIBLE_SELECTED = 2; // 0x2 4019*344a7f5eSAndroid Build Coastguard Worker field public static final int CARD_TYPE_INFO_OVER = 1; // 0x1 4020*344a7f5eSAndroid Build Coastguard Worker field public static final int CARD_TYPE_INFO_UNDER = 2; // 0x2 4021*344a7f5eSAndroid Build Coastguard Worker field public static final int CARD_TYPE_INFO_UNDER_WITH_EXTRA = 3; // 0x3 4022*344a7f5eSAndroid Build Coastguard Worker field public static final int CARD_TYPE_MAIN_ONLY = 0; // 0x0 4023*344a7f5eSAndroid Build Coastguard Worker } 4024*344a7f5eSAndroid Build Coastguard Worker 4025*344a7f5eSAndroid Build Coastguard Worker public static class BaseCardView.LayoutParams extends android.widget.FrameLayout.LayoutParams { 4026*344a7f5eSAndroid Build Coastguard Worker ctor public BaseCardView.LayoutParams(android.content.Context, android.util.AttributeSet); 4027*344a7f5eSAndroid Build Coastguard Worker ctor public BaseCardView.LayoutParams(int, int); 4028*344a7f5eSAndroid Build Coastguard Worker ctor public BaseCardView.LayoutParams(android.view.ViewGroup.LayoutParams); 4029*344a7f5eSAndroid Build Coastguard Worker ctor public BaseCardView.LayoutParams(android.support.v17.leanback.widget.BaseCardView.LayoutParams); 4030*344a7f5eSAndroid Build Coastguard Worker field public static final int VIEW_TYPE_EXTRA = 2; // 0x2 4031*344a7f5eSAndroid Build Coastguard Worker field public static final int VIEW_TYPE_INFO = 1; // 0x1 4032*344a7f5eSAndroid Build Coastguard Worker field public static final int VIEW_TYPE_MAIN = 0; // 0x0 4033*344a7f5eSAndroid Build Coastguard Worker field public int viewType; 4034*344a7f5eSAndroid Build Coastguard Worker } 4035*344a7f5eSAndroid Build Coastguard Worker 4036*344a7f5eSAndroid Build Coastguard Worker public abstract class BaseGridView extends android.support.v7.widget.RecyclerView { 4037*344a7f5eSAndroid Build Coastguard Worker method public void addOnChildViewHolderSelectedListener(android.support.v17.leanback.widget.OnChildViewHolderSelectedListener); 4038*344a7f5eSAndroid Build Coastguard Worker method public void animateIn(); 4039*344a7f5eSAndroid Build Coastguard Worker method public void animateOut(); 4040*344a7f5eSAndroid Build Coastguard Worker method public int getChildDrawingOrder(int, int); 4041*344a7f5eSAndroid Build Coastguard Worker method public deprecated int getHorizontalMargin(); 4042*344a7f5eSAndroid Build Coastguard Worker method public int getHorizontalSpacing(); 4043*344a7f5eSAndroid Build Coastguard Worker method public int getInitialPrefetchItemCount(); 4044*344a7f5eSAndroid Build Coastguard Worker method public int getItemAlignmentOffset(); 4045*344a7f5eSAndroid Build Coastguard Worker method public float getItemAlignmentOffsetPercent(); 4046*344a7f5eSAndroid Build Coastguard Worker method public int getItemAlignmentViewId(); 4047*344a7f5eSAndroid Build Coastguard Worker method public android.support.v17.leanback.widget.BaseGridView.OnUnhandledKeyListener getOnUnhandledKeyListener(); 4048*344a7f5eSAndroid Build Coastguard Worker method public final int getSaveChildrenLimitNumber(); 4049*344a7f5eSAndroid Build Coastguard Worker method public final int getSaveChildrenPolicy(); 4050*344a7f5eSAndroid Build Coastguard Worker method public int getSelectedPosition(); 4051*344a7f5eSAndroid Build Coastguard Worker method public deprecated int getVerticalMargin(); 4052*344a7f5eSAndroid Build Coastguard Worker method public int getVerticalSpacing(); 4053*344a7f5eSAndroid Build Coastguard Worker method public void getViewSelectedOffsets(android.view.View, int[]); 4054*344a7f5eSAndroid Build Coastguard Worker method public int getWindowAlignment(); 4055*344a7f5eSAndroid Build Coastguard Worker method public int getWindowAlignmentOffset(); 4056*344a7f5eSAndroid Build Coastguard Worker method public float getWindowAlignmentOffsetPercent(); 4057*344a7f5eSAndroid Build Coastguard Worker method public boolean hasPreviousViewInSameRow(int); 4058*344a7f5eSAndroid Build Coastguard Worker method public boolean isChildLayoutAnimated(); 4059*344a7f5eSAndroid Build Coastguard Worker method public boolean isFocusDrawingOrderEnabled(); 4060*344a7f5eSAndroid Build Coastguard Worker method public final boolean isFocusSearchDisabled(); 4061*344a7f5eSAndroid Build Coastguard Worker method public boolean isItemAlignmentOffsetWithPadding(); 4062*344a7f5eSAndroid Build Coastguard Worker method public boolean isScrollEnabled(); 4063*344a7f5eSAndroid Build Coastguard Worker method public boolean isWindowAlignmentPreferKeyLineOverHighEdge(); 4064*344a7f5eSAndroid Build Coastguard Worker method public boolean isWindowAlignmentPreferKeyLineOverLowEdge(); 4065*344a7f5eSAndroid Build Coastguard Worker method public boolean onRequestFocusInDescendants(int, android.graphics.Rect); 4066*344a7f5eSAndroid Build Coastguard Worker method public void removeOnChildViewHolderSelectedListener(android.support.v17.leanback.widget.OnChildViewHolderSelectedListener); 4067*344a7f5eSAndroid Build Coastguard Worker method public void setAnimateChildLayout(boolean); 4068*344a7f5eSAndroid Build Coastguard Worker method public void setChildrenVisibility(int); 4069*344a7f5eSAndroid Build Coastguard Worker method public void setFocusDrawingOrderEnabled(boolean); 4070*344a7f5eSAndroid Build Coastguard Worker method public final void setFocusSearchDisabled(boolean); 4071*344a7f5eSAndroid Build Coastguard Worker method public void setGravity(int); 4072*344a7f5eSAndroid Build Coastguard Worker method public void setHasOverlappingRendering(boolean); 4073*344a7f5eSAndroid Build Coastguard Worker method public deprecated void setHorizontalMargin(int); 4074*344a7f5eSAndroid Build Coastguard Worker method public void setHorizontalSpacing(int); 4075*344a7f5eSAndroid Build Coastguard Worker method public void setInitialPrefetchItemCount(int); 4076*344a7f5eSAndroid Build Coastguard Worker method public void setItemAlignmentOffset(int); 4077*344a7f5eSAndroid Build Coastguard Worker method public void setItemAlignmentOffsetPercent(float); 4078*344a7f5eSAndroid Build Coastguard Worker method public void setItemAlignmentOffsetWithPadding(boolean); 4079*344a7f5eSAndroid Build Coastguard Worker method public void setItemAlignmentViewId(int); 4080*344a7f5eSAndroid Build Coastguard Worker method public deprecated void setItemMargin(int); 4081*344a7f5eSAndroid Build Coastguard Worker method public void setItemSpacing(int); 4082*344a7f5eSAndroid Build Coastguard Worker method public void setLayoutEnabled(boolean); 4083*344a7f5eSAndroid Build Coastguard Worker method public void setOnChildLaidOutListener(android.support.v17.leanback.widget.OnChildLaidOutListener); 4084*344a7f5eSAndroid Build Coastguard Worker method public void setOnChildSelectedListener(android.support.v17.leanback.widget.OnChildSelectedListener); 4085*344a7f5eSAndroid Build Coastguard Worker method public void setOnChildViewHolderSelectedListener(android.support.v17.leanback.widget.OnChildViewHolderSelectedListener); 4086*344a7f5eSAndroid Build Coastguard Worker method public void setOnKeyInterceptListener(android.support.v17.leanback.widget.BaseGridView.OnKeyInterceptListener); 4087*344a7f5eSAndroid Build Coastguard Worker method public void setOnMotionInterceptListener(android.support.v17.leanback.widget.BaseGridView.OnMotionInterceptListener); 4088*344a7f5eSAndroid Build Coastguard Worker method public void setOnTouchInterceptListener(android.support.v17.leanback.widget.BaseGridView.OnTouchInterceptListener); 4089*344a7f5eSAndroid Build Coastguard Worker method public void setOnUnhandledKeyListener(android.support.v17.leanback.widget.BaseGridView.OnUnhandledKeyListener); 4090*344a7f5eSAndroid Build Coastguard Worker method public void setPruneChild(boolean); 4091*344a7f5eSAndroid Build Coastguard Worker method public final void setSaveChildrenLimitNumber(int); 4092*344a7f5eSAndroid Build Coastguard Worker method public final void setSaveChildrenPolicy(int); 4093*344a7f5eSAndroid Build Coastguard Worker method public void setScrollEnabled(boolean); 4094*344a7f5eSAndroid Build Coastguard Worker method public void setSelectedPosition(int); 4095*344a7f5eSAndroid Build Coastguard Worker method public void setSelectedPosition(int, int); 4096*344a7f5eSAndroid Build Coastguard Worker method public void setSelectedPosition(int, android.support.v17.leanback.widget.ViewHolderTask); 4097*344a7f5eSAndroid Build Coastguard Worker method public void setSelectedPositionSmooth(int); 4098*344a7f5eSAndroid Build Coastguard Worker method public void setSelectedPositionSmooth(int, android.support.v17.leanback.widget.ViewHolderTask); 4099*344a7f5eSAndroid Build Coastguard Worker method public deprecated void setVerticalMargin(int); 4100*344a7f5eSAndroid Build Coastguard Worker method public void setVerticalSpacing(int); 4101*344a7f5eSAndroid Build Coastguard Worker method public void setWindowAlignment(int); 4102*344a7f5eSAndroid Build Coastguard Worker method public void setWindowAlignmentOffset(int); 4103*344a7f5eSAndroid Build Coastguard Worker method public void setWindowAlignmentOffsetPercent(float); 4104*344a7f5eSAndroid Build Coastguard Worker method public void setWindowAlignmentPreferKeyLineOverHighEdge(boolean); 4105*344a7f5eSAndroid Build Coastguard Worker method public void setWindowAlignmentPreferKeyLineOverLowEdge(boolean); 4106*344a7f5eSAndroid Build Coastguard Worker field public static final float ITEM_ALIGN_OFFSET_PERCENT_DISABLED = -1.0f; 4107*344a7f5eSAndroid Build Coastguard Worker field public static final int SAVE_ALL_CHILD = 3; // 0x3 4108*344a7f5eSAndroid Build Coastguard Worker field public static final int SAVE_LIMITED_CHILD = 2; // 0x2 4109*344a7f5eSAndroid Build Coastguard Worker field public static final int SAVE_NO_CHILD = 0; // 0x0 4110*344a7f5eSAndroid Build Coastguard Worker field public static final int SAVE_ON_SCREEN_CHILD = 1; // 0x1 4111*344a7f5eSAndroid Build Coastguard Worker field public static final int WINDOW_ALIGN_BOTH_EDGE = 3; // 0x3 4112*344a7f5eSAndroid Build Coastguard Worker field public static final int WINDOW_ALIGN_HIGH_EDGE = 2; // 0x2 4113*344a7f5eSAndroid Build Coastguard Worker field public static final int WINDOW_ALIGN_LOW_EDGE = 1; // 0x1 4114*344a7f5eSAndroid Build Coastguard Worker field public static final int WINDOW_ALIGN_NO_EDGE = 0; // 0x0 4115*344a7f5eSAndroid Build Coastguard Worker field public static final float WINDOW_ALIGN_OFFSET_PERCENT_DISABLED = -1.0f; 4116*344a7f5eSAndroid Build Coastguard Worker } 4117*344a7f5eSAndroid Build Coastguard Worker 4118*344a7f5eSAndroid Build Coastguard Worker public static abstract interface BaseGridView.OnKeyInterceptListener { 4119*344a7f5eSAndroid Build Coastguard Worker method public abstract boolean onInterceptKeyEvent(android.view.KeyEvent); 4120*344a7f5eSAndroid Build Coastguard Worker } 4121*344a7f5eSAndroid Build Coastguard Worker 4122*344a7f5eSAndroid Build Coastguard Worker public static abstract interface BaseGridView.OnMotionInterceptListener { 4123*344a7f5eSAndroid Build Coastguard Worker method public abstract boolean onInterceptMotionEvent(android.view.MotionEvent); 4124*344a7f5eSAndroid Build Coastguard Worker } 4125*344a7f5eSAndroid Build Coastguard Worker 4126*344a7f5eSAndroid Build Coastguard Worker public static abstract interface BaseGridView.OnTouchInterceptListener { 4127*344a7f5eSAndroid Build Coastguard Worker method public abstract boolean onInterceptTouchEvent(android.view.MotionEvent); 4128*344a7f5eSAndroid Build Coastguard Worker } 4129*344a7f5eSAndroid Build Coastguard Worker 4130*344a7f5eSAndroid Build Coastguard Worker public static abstract interface BaseGridView.OnUnhandledKeyListener { 4131*344a7f5eSAndroid Build Coastguard Worker method public abstract boolean onUnhandledKey(android.view.KeyEvent); 4132*344a7f5eSAndroid Build Coastguard Worker } 4133*344a7f5eSAndroid Build Coastguard Worker 4134*344a7f5eSAndroid Build Coastguard Worker public abstract interface BaseOnItemViewClickedListener<T> { 4135*344a7f5eSAndroid Build Coastguard Worker method public abstract void onItemClicked(android.support.v17.leanback.widget.Presenter.ViewHolder, java.lang.Object, android.support.v17.leanback.widget.RowPresenter.ViewHolder, T); 4136*344a7f5eSAndroid Build Coastguard Worker } 4137*344a7f5eSAndroid Build Coastguard Worker 4138*344a7f5eSAndroid Build Coastguard Worker public abstract interface BaseOnItemViewSelectedListener<T> { 4139*344a7f5eSAndroid Build Coastguard Worker method public abstract void onItemSelected(android.support.v17.leanback.widget.Presenter.ViewHolder, java.lang.Object, android.support.v17.leanback.widget.RowPresenter.ViewHolder, T); 4140*344a7f5eSAndroid Build Coastguard Worker } 4141*344a7f5eSAndroid Build Coastguard Worker 4142*344a7f5eSAndroid Build Coastguard Worker public class BrowseFrameLayout extends android.widget.FrameLayout { 4143*344a7f5eSAndroid Build Coastguard Worker ctor public BrowseFrameLayout(android.content.Context); 4144*344a7f5eSAndroid Build Coastguard Worker ctor public BrowseFrameLayout(android.content.Context, android.util.AttributeSet); 4145*344a7f5eSAndroid Build Coastguard Worker ctor public BrowseFrameLayout(android.content.Context, android.util.AttributeSet, int); 4146*344a7f5eSAndroid Build Coastguard Worker method public android.support.v17.leanback.widget.BrowseFrameLayout.OnChildFocusListener getOnChildFocusListener(); 4147*344a7f5eSAndroid Build Coastguard Worker method public android.support.v17.leanback.widget.BrowseFrameLayout.OnFocusSearchListener getOnFocusSearchListener(); 4148*344a7f5eSAndroid Build Coastguard Worker method public void setOnChildFocusListener(android.support.v17.leanback.widget.BrowseFrameLayout.OnChildFocusListener); 4149*344a7f5eSAndroid Build Coastguard Worker method public void setOnDispatchKeyListener(android.view.View.OnKeyListener); 4150*344a7f5eSAndroid Build Coastguard Worker method public void setOnFocusSearchListener(android.support.v17.leanback.widget.BrowseFrameLayout.OnFocusSearchListener); 4151*344a7f5eSAndroid Build Coastguard Worker } 4152*344a7f5eSAndroid Build Coastguard Worker 4153*344a7f5eSAndroid Build Coastguard Worker public static abstract interface BrowseFrameLayout.OnChildFocusListener { 4154*344a7f5eSAndroid Build Coastguard Worker method public abstract void onRequestChildFocus(android.view.View, android.view.View); 4155*344a7f5eSAndroid Build Coastguard Worker method public abstract boolean onRequestFocusInDescendants(int, android.graphics.Rect); 4156*344a7f5eSAndroid Build Coastguard Worker } 4157*344a7f5eSAndroid Build Coastguard Worker 4158*344a7f5eSAndroid Build Coastguard Worker public static abstract interface BrowseFrameLayout.OnFocusSearchListener { 4159*344a7f5eSAndroid Build Coastguard Worker method public abstract android.view.View onFocusSearch(android.view.View, int); 4160*344a7f5eSAndroid Build Coastguard Worker } 4161*344a7f5eSAndroid Build Coastguard Worker 4162*344a7f5eSAndroid Build Coastguard Worker public final class ClassPresenterSelector extends android.support.v17.leanback.widget.PresenterSelector { 4163*344a7f5eSAndroid Build Coastguard Worker ctor public ClassPresenterSelector(); 4164*344a7f5eSAndroid Build Coastguard Worker method public android.support.v17.leanback.widget.ClassPresenterSelector addClassPresenter(java.lang.Class<?>, android.support.v17.leanback.widget.Presenter); 4165*344a7f5eSAndroid Build Coastguard Worker method public android.support.v17.leanback.widget.ClassPresenterSelector addClassPresenterSelector(java.lang.Class<?>, android.support.v17.leanback.widget.PresenterSelector); 4166*344a7f5eSAndroid Build Coastguard Worker method public android.support.v17.leanback.widget.Presenter getPresenter(java.lang.Object); 4167*344a7f5eSAndroid Build Coastguard Worker } 4168*344a7f5eSAndroid Build Coastguard Worker 4169*344a7f5eSAndroid Build Coastguard Worker public class ControlButtonPresenterSelector extends android.support.v17.leanback.widget.PresenterSelector { 4170*344a7f5eSAndroid Build Coastguard Worker ctor public ControlButtonPresenterSelector(); 4171*344a7f5eSAndroid Build Coastguard Worker method public android.support.v17.leanback.widget.Presenter getPresenter(java.lang.Object); 4172*344a7f5eSAndroid Build Coastguard Worker method public android.support.v17.leanback.widget.Presenter getPrimaryPresenter(); 4173*344a7f5eSAndroid Build Coastguard Worker method public android.support.v17.leanback.widget.Presenter getSecondaryPresenter(); 4174*344a7f5eSAndroid Build Coastguard Worker } 4175*344a7f5eSAndroid Build Coastguard Worker 4176*344a7f5eSAndroid Build Coastguard Worker public class CursorObjectAdapter extends android.support.v17.leanback.widget.ObjectAdapter { 4177*344a7f5eSAndroid Build Coastguard Worker ctor public CursorObjectAdapter(android.support.v17.leanback.widget.PresenterSelector); 4178*344a7f5eSAndroid Build Coastguard Worker ctor public CursorObjectAdapter(android.support.v17.leanback.widget.Presenter); 4179*344a7f5eSAndroid Build Coastguard Worker ctor public CursorObjectAdapter(); 4180*344a7f5eSAndroid Build Coastguard Worker method public void changeCursor(android.database.Cursor); 4181*344a7f5eSAndroid Build Coastguard Worker method public void close(); 4182*344a7f5eSAndroid Build Coastguard Worker method public java.lang.Object get(int); 4183*344a7f5eSAndroid Build Coastguard Worker method public final android.database.Cursor getCursor(); 4184*344a7f5eSAndroid Build Coastguard Worker method public final android.support.v17.leanback.database.CursorMapper getMapper(); 4185*344a7f5eSAndroid Build Coastguard Worker method protected final void invalidateCache(int); 4186*344a7f5eSAndroid Build Coastguard Worker method protected final void invalidateCache(int, int); 4187*344a7f5eSAndroid Build Coastguard Worker method public boolean isClosed(); 4188*344a7f5eSAndroid Build Coastguard Worker method protected void onCursorChanged(); 4189*344a7f5eSAndroid Build Coastguard Worker method protected void onMapperChanged(); 4190*344a7f5eSAndroid Build Coastguard Worker method public final void setMapper(android.support.v17.leanback.database.CursorMapper); 4191*344a7f5eSAndroid Build Coastguard Worker method public int size(); 4192*344a7f5eSAndroid Build Coastguard Worker method public android.database.Cursor swapCursor(android.database.Cursor); 4193*344a7f5eSAndroid Build Coastguard Worker } 4194*344a7f5eSAndroid Build Coastguard Worker 4195*344a7f5eSAndroid Build Coastguard Worker public class DetailsOverviewLogoPresenter extends android.support.v17.leanback.widget.Presenter { 4196*344a7f5eSAndroid Build Coastguard Worker ctor public DetailsOverviewLogoPresenter(); 4197*344a7f5eSAndroid Build Coastguard Worker method public boolean isBoundToImage(android.support.v17.leanback.widget.DetailsOverviewLogoPresenter.ViewHolder, android.support.v17.leanback.widget.DetailsOverviewRow); 4198*344a7f5eSAndroid Build Coastguard Worker method public void onBindViewHolder(android.support.v17.leanback.widget.Presenter.ViewHolder, java.lang.Object); 4199*344a7f5eSAndroid Build Coastguard Worker method public android.view.View onCreateView(android.view.ViewGroup); 4200*344a7f5eSAndroid Build Coastguard Worker method public android.support.v17.leanback.widget.Presenter.ViewHolder onCreateViewHolder(android.view.ViewGroup); 4201*344a7f5eSAndroid Build Coastguard Worker method public void onUnbindViewHolder(android.support.v17.leanback.widget.Presenter.ViewHolder); 4202*344a7f5eSAndroid Build Coastguard Worker method public void setContext(android.support.v17.leanback.widget.DetailsOverviewLogoPresenter.ViewHolder, android.support.v17.leanback.widget.FullWidthDetailsOverviewRowPresenter.ViewHolder, android.support.v17.leanback.widget.FullWidthDetailsOverviewRowPresenter); 4203*344a7f5eSAndroid Build Coastguard Worker } 4204*344a7f5eSAndroid Build Coastguard Worker 4205*344a7f5eSAndroid Build Coastguard Worker public static class DetailsOverviewLogoPresenter.ViewHolder extends android.support.v17.leanback.widget.Presenter.ViewHolder { 4206*344a7f5eSAndroid Build Coastguard Worker ctor public DetailsOverviewLogoPresenter.ViewHolder(android.view.View); 4207*344a7f5eSAndroid Build Coastguard Worker method public android.support.v17.leanback.widget.FullWidthDetailsOverviewRowPresenter getParentPresenter(); 4208*344a7f5eSAndroid Build Coastguard Worker method public android.support.v17.leanback.widget.FullWidthDetailsOverviewRowPresenter.ViewHolder getParentViewHolder(); 4209*344a7f5eSAndroid Build Coastguard Worker method public boolean isSizeFromDrawableIntrinsic(); 4210*344a7f5eSAndroid Build Coastguard Worker method public void setSizeFromDrawableIntrinsic(boolean); 4211*344a7f5eSAndroid Build Coastguard Worker field protected android.support.v17.leanback.widget.FullWidthDetailsOverviewRowPresenter mParentPresenter; 4212*344a7f5eSAndroid Build Coastguard Worker field protected android.support.v17.leanback.widget.FullWidthDetailsOverviewRowPresenter.ViewHolder mParentViewHolder; 4213*344a7f5eSAndroid Build Coastguard Worker } 4214*344a7f5eSAndroid Build Coastguard Worker 4215*344a7f5eSAndroid Build Coastguard Worker public class DetailsOverviewRow extends android.support.v17.leanback.widget.Row { 4216*344a7f5eSAndroid Build Coastguard Worker ctor public DetailsOverviewRow(java.lang.Object); 4217*344a7f5eSAndroid Build Coastguard Worker method public final deprecated void addAction(android.support.v17.leanback.widget.Action); 4218*344a7f5eSAndroid Build Coastguard Worker method public final deprecated void addAction(int, android.support.v17.leanback.widget.Action); 4219*344a7f5eSAndroid Build Coastguard Worker method public android.support.v17.leanback.widget.Action getActionForKeyCode(int); 4220*344a7f5eSAndroid Build Coastguard Worker method public final deprecated java.util.List<android.support.v17.leanback.widget.Action> getActions(); 4221*344a7f5eSAndroid Build Coastguard Worker method public final android.support.v17.leanback.widget.ObjectAdapter getActionsAdapter(); 4222*344a7f5eSAndroid Build Coastguard Worker method public final android.graphics.drawable.Drawable getImageDrawable(); 4223*344a7f5eSAndroid Build Coastguard Worker method public final java.lang.Object getItem(); 4224*344a7f5eSAndroid Build Coastguard Worker method public boolean isImageScaleUpAllowed(); 4225*344a7f5eSAndroid Build Coastguard Worker method public final deprecated boolean removeAction(android.support.v17.leanback.widget.Action); 4226*344a7f5eSAndroid Build Coastguard Worker method public final void setActionsAdapter(android.support.v17.leanback.widget.ObjectAdapter); 4227*344a7f5eSAndroid Build Coastguard Worker method public final void setImageBitmap(android.content.Context, android.graphics.Bitmap); 4228*344a7f5eSAndroid Build Coastguard Worker method public final void setImageDrawable(android.graphics.drawable.Drawable); 4229*344a7f5eSAndroid Build Coastguard Worker method public void setImageScaleUpAllowed(boolean); 4230*344a7f5eSAndroid Build Coastguard Worker method public final void setItem(java.lang.Object); 4231*344a7f5eSAndroid Build Coastguard Worker } 4232*344a7f5eSAndroid Build Coastguard Worker 4233*344a7f5eSAndroid Build Coastguard Worker public static class DetailsOverviewRow.Listener { 4234*344a7f5eSAndroid Build Coastguard Worker ctor public DetailsOverviewRow.Listener(); 4235*344a7f5eSAndroid Build Coastguard Worker method public void onActionsAdapterChanged(android.support.v17.leanback.widget.DetailsOverviewRow); 4236*344a7f5eSAndroid Build Coastguard Worker method public void onImageDrawableChanged(android.support.v17.leanback.widget.DetailsOverviewRow); 4237*344a7f5eSAndroid Build Coastguard Worker method public void onItemChanged(android.support.v17.leanback.widget.DetailsOverviewRow); 4238*344a7f5eSAndroid Build Coastguard Worker } 4239*344a7f5eSAndroid Build Coastguard Worker 4240*344a7f5eSAndroid Build Coastguard Worker public deprecated class DetailsOverviewRowPresenter extends android.support.v17.leanback.widget.RowPresenter { 4241*344a7f5eSAndroid Build Coastguard Worker ctor public DetailsOverviewRowPresenter(android.support.v17.leanback.widget.Presenter); 4242*344a7f5eSAndroid Build Coastguard Worker method protected android.support.v17.leanback.widget.RowPresenter.ViewHolder createRowViewHolder(android.view.ViewGroup); 4243*344a7f5eSAndroid Build Coastguard Worker method public int getBackgroundColor(); 4244*344a7f5eSAndroid Build Coastguard Worker method public android.support.v17.leanback.widget.OnActionClickedListener getOnActionClickedListener(); 4245*344a7f5eSAndroid Build Coastguard Worker method public boolean isStyleLarge(); 4246*344a7f5eSAndroid Build Coastguard Worker method public final boolean isUsingDefaultSelectEffect(); 4247*344a7f5eSAndroid Build Coastguard Worker method public void setBackgroundColor(int); 4248*344a7f5eSAndroid Build Coastguard Worker method public void setOnActionClickedListener(android.support.v17.leanback.widget.OnActionClickedListener); 4249*344a7f5eSAndroid Build Coastguard Worker method public final void setSharedElementEnterTransition(android.app.Activity, java.lang.String, long); 4250*344a7f5eSAndroid Build Coastguard Worker method public final void setSharedElementEnterTransition(android.app.Activity, java.lang.String); 4251*344a7f5eSAndroid Build Coastguard Worker method public void setStyleLarge(boolean); 4252*344a7f5eSAndroid Build Coastguard Worker } 4253*344a7f5eSAndroid Build Coastguard Worker 4254*344a7f5eSAndroid Build Coastguard Worker public final class DetailsOverviewRowPresenter.ViewHolder extends android.support.v17.leanback.widget.RowPresenter.ViewHolder { 4255*344a7f5eSAndroid Build Coastguard Worker ctor public DetailsOverviewRowPresenter.ViewHolder(android.view.View, android.support.v17.leanback.widget.Presenter); 4256*344a7f5eSAndroid Build Coastguard Worker field public final android.support.v17.leanback.widget.Presenter.ViewHolder mDetailsDescriptionViewHolder; 4257*344a7f5eSAndroid Build Coastguard Worker } 4258*344a7f5eSAndroid Build Coastguard Worker 4259*344a7f5eSAndroid Build Coastguard Worker public class DetailsParallax extends android.support.v17.leanback.widget.RecyclerViewParallax { 4260*344a7f5eSAndroid Build Coastguard Worker ctor public DetailsParallax(); 4261*344a7f5eSAndroid Build Coastguard Worker method public android.support.v17.leanback.widget.Parallax.IntProperty getOverviewRowBottom(); 4262*344a7f5eSAndroid Build Coastguard Worker method public android.support.v17.leanback.widget.Parallax.IntProperty getOverviewRowTop(); 4263*344a7f5eSAndroid Build Coastguard Worker } 4264*344a7f5eSAndroid Build Coastguard Worker 4265*344a7f5eSAndroid Build Coastguard Worker public class DividerPresenter extends android.support.v17.leanback.widget.Presenter { 4266*344a7f5eSAndroid Build Coastguard Worker ctor public DividerPresenter(); 4267*344a7f5eSAndroid Build Coastguard Worker method public void onBindViewHolder(android.support.v17.leanback.widget.Presenter.ViewHolder, java.lang.Object); 4268*344a7f5eSAndroid Build Coastguard Worker method public android.support.v17.leanback.widget.Presenter.ViewHolder onCreateViewHolder(android.view.ViewGroup); 4269*344a7f5eSAndroid Build Coastguard Worker method public void onUnbindViewHolder(android.support.v17.leanback.widget.Presenter.ViewHolder); 4270*344a7f5eSAndroid Build Coastguard Worker } 4271*344a7f5eSAndroid Build Coastguard Worker 4272*344a7f5eSAndroid Build Coastguard Worker public class DividerRow extends android.support.v17.leanback.widget.Row { 4273*344a7f5eSAndroid Build Coastguard Worker ctor public DividerRow(); 4274*344a7f5eSAndroid Build Coastguard Worker method public final boolean isRenderedAsRowView(); 4275*344a7f5eSAndroid Build Coastguard Worker } 4276*344a7f5eSAndroid Build Coastguard Worker 4277*344a7f5eSAndroid Build Coastguard Worker public abstract interface FacetProvider { 4278*344a7f5eSAndroid Build Coastguard Worker method public abstract java.lang.Object getFacet(java.lang.Class<?>); 4279*344a7f5eSAndroid Build Coastguard Worker } 4280*344a7f5eSAndroid Build Coastguard Worker 4281*344a7f5eSAndroid Build Coastguard Worker public abstract interface FacetProviderAdapter { 4282*344a7f5eSAndroid Build Coastguard Worker method public abstract android.support.v17.leanback.widget.FacetProvider getFacetProvider(int); 4283*344a7f5eSAndroid Build Coastguard Worker } 4284*344a7f5eSAndroid Build Coastguard Worker 4285*344a7f5eSAndroid Build Coastguard Worker public abstract interface FocusHighlight { 4286*344a7f5eSAndroid Build Coastguard Worker field public static final int ZOOM_FACTOR_LARGE = 3; // 0x3 4287*344a7f5eSAndroid Build Coastguard Worker field public static final int ZOOM_FACTOR_MEDIUM = 2; // 0x2 4288*344a7f5eSAndroid Build Coastguard Worker field public static final int ZOOM_FACTOR_NONE = 0; // 0x0 4289*344a7f5eSAndroid Build Coastguard Worker field public static final int ZOOM_FACTOR_SMALL = 1; // 0x1 4290*344a7f5eSAndroid Build Coastguard Worker field public static final int ZOOM_FACTOR_XSMALL = 4; // 0x4 4291*344a7f5eSAndroid Build Coastguard Worker } 4292*344a7f5eSAndroid Build Coastguard Worker 4293*344a7f5eSAndroid Build Coastguard Worker public class FocusHighlightHelper { 4294*344a7f5eSAndroid Build Coastguard Worker ctor public FocusHighlightHelper(); 4295*344a7f5eSAndroid Build Coastguard Worker method public static void setupBrowseItemFocusHighlight(android.support.v17.leanback.widget.ItemBridgeAdapter, int, boolean); 4296*344a7f5eSAndroid Build Coastguard Worker method public static deprecated void setupHeaderItemFocusHighlight(android.support.v17.leanback.widget.VerticalGridView); 4297*344a7f5eSAndroid Build Coastguard Worker method public static deprecated void setupHeaderItemFocusHighlight(android.support.v17.leanback.widget.VerticalGridView, boolean); 4298*344a7f5eSAndroid Build Coastguard Worker method public static void setupHeaderItemFocusHighlight(android.support.v17.leanback.widget.ItemBridgeAdapter); 4299*344a7f5eSAndroid Build Coastguard Worker method public static void setupHeaderItemFocusHighlight(android.support.v17.leanback.widget.ItemBridgeAdapter, boolean); 4300*344a7f5eSAndroid Build Coastguard Worker } 4301*344a7f5eSAndroid Build Coastguard Worker 4302*344a7f5eSAndroid Build Coastguard Worker public abstract interface FragmentAnimationProvider { 4303*344a7f5eSAndroid Build Coastguard Worker method public abstract void onImeAppearing(java.util.List<android.animation.Animator>); 4304*344a7f5eSAndroid Build Coastguard Worker method public abstract void onImeDisappearing(java.util.List<android.animation.Animator>); 4305*344a7f5eSAndroid Build Coastguard Worker } 4306*344a7f5eSAndroid Build Coastguard Worker 4307*344a7f5eSAndroid Build Coastguard Worker public class FullWidthDetailsOverviewRowPresenter extends android.support.v17.leanback.widget.RowPresenter { 4308*344a7f5eSAndroid Build Coastguard Worker ctor public FullWidthDetailsOverviewRowPresenter(android.support.v17.leanback.widget.Presenter); 4309*344a7f5eSAndroid Build Coastguard Worker ctor public FullWidthDetailsOverviewRowPresenter(android.support.v17.leanback.widget.Presenter, android.support.v17.leanback.widget.DetailsOverviewLogoPresenter); 4310*344a7f5eSAndroid Build Coastguard Worker method protected android.support.v17.leanback.widget.RowPresenter.ViewHolder createRowViewHolder(android.view.ViewGroup); 4311*344a7f5eSAndroid Build Coastguard Worker method public final int getActionsBackgroundColor(); 4312*344a7f5eSAndroid Build Coastguard Worker method public final int getAlignmentMode(); 4313*344a7f5eSAndroid Build Coastguard Worker method public final int getBackgroundColor(); 4314*344a7f5eSAndroid Build Coastguard Worker method public final int getInitialState(); 4315*344a7f5eSAndroid Build Coastguard Worker method protected int getLayoutResourceId(); 4316*344a7f5eSAndroid Build Coastguard Worker method public android.support.v17.leanback.widget.OnActionClickedListener getOnActionClickedListener(); 4317*344a7f5eSAndroid Build Coastguard Worker method public final boolean isParticipatingEntranceTransition(); 4318*344a7f5eSAndroid Build Coastguard Worker method public final boolean isUsingDefaultSelectEffect(); 4319*344a7f5eSAndroid Build Coastguard Worker method public final void notifyOnBindLogo(android.support.v17.leanback.widget.FullWidthDetailsOverviewRowPresenter.ViewHolder); 4320*344a7f5eSAndroid Build Coastguard Worker method protected void onLayoutLogo(android.support.v17.leanback.widget.FullWidthDetailsOverviewRowPresenter.ViewHolder, int, boolean); 4321*344a7f5eSAndroid Build Coastguard Worker method protected void onLayoutOverviewFrame(android.support.v17.leanback.widget.FullWidthDetailsOverviewRowPresenter.ViewHolder, int, boolean); 4322*344a7f5eSAndroid Build Coastguard Worker method protected void onStateChanged(android.support.v17.leanback.widget.FullWidthDetailsOverviewRowPresenter.ViewHolder, int); 4323*344a7f5eSAndroid Build Coastguard Worker method public final void setActionsBackgroundColor(int); 4324*344a7f5eSAndroid Build Coastguard Worker method public final void setAlignmentMode(int); 4325*344a7f5eSAndroid Build Coastguard Worker method public final void setBackgroundColor(int); 4326*344a7f5eSAndroid Build Coastguard Worker method public final void setInitialState(int); 4327*344a7f5eSAndroid Build Coastguard Worker method public final void setListener(android.support.v17.leanback.widget.FullWidthDetailsOverviewRowPresenter.Listener); 4328*344a7f5eSAndroid Build Coastguard Worker method public void setOnActionClickedListener(android.support.v17.leanback.widget.OnActionClickedListener); 4329*344a7f5eSAndroid Build Coastguard Worker method public final void setParticipatingEntranceTransition(boolean); 4330*344a7f5eSAndroid Build Coastguard Worker method public final void setState(android.support.v17.leanback.widget.FullWidthDetailsOverviewRowPresenter.ViewHolder, int); 4331*344a7f5eSAndroid Build Coastguard Worker field public static final int ALIGN_MODE_MIDDLE = 1; // 0x1 4332*344a7f5eSAndroid Build Coastguard Worker field public static final int ALIGN_MODE_START = 0; // 0x0 4333*344a7f5eSAndroid Build Coastguard Worker field public static final int STATE_FULL = 1; // 0x1 4334*344a7f5eSAndroid Build Coastguard Worker field public static final int STATE_HALF = 0; // 0x0 4335*344a7f5eSAndroid Build Coastguard Worker field public static final int STATE_SMALL = 2; // 0x2 4336*344a7f5eSAndroid Build Coastguard Worker field protected int mInitialState; 4337*344a7f5eSAndroid Build Coastguard Worker } 4338*344a7f5eSAndroid Build Coastguard Worker 4339*344a7f5eSAndroid Build Coastguard Worker public static abstract class FullWidthDetailsOverviewRowPresenter.Listener { 4340*344a7f5eSAndroid Build Coastguard Worker ctor public FullWidthDetailsOverviewRowPresenter.Listener(); 4341*344a7f5eSAndroid Build Coastguard Worker method public void onBindLogo(android.support.v17.leanback.widget.FullWidthDetailsOverviewRowPresenter.ViewHolder); 4342*344a7f5eSAndroid Build Coastguard Worker } 4343*344a7f5eSAndroid Build Coastguard Worker 4344*344a7f5eSAndroid Build Coastguard Worker public class FullWidthDetailsOverviewRowPresenter.ViewHolder extends android.support.v17.leanback.widget.RowPresenter.ViewHolder { 4345*344a7f5eSAndroid Build Coastguard Worker ctor public FullWidthDetailsOverviewRowPresenter.ViewHolder(android.view.View, android.support.v17.leanback.widget.Presenter, android.support.v17.leanback.widget.DetailsOverviewLogoPresenter); 4346*344a7f5eSAndroid Build Coastguard Worker method protected android.support.v17.leanback.widget.DetailsOverviewRow.Listener createRowListener(); 4347*344a7f5eSAndroid Build Coastguard Worker method public final android.view.ViewGroup getActionsRow(); 4348*344a7f5eSAndroid Build Coastguard Worker method public final android.view.ViewGroup getDetailsDescriptionFrame(); 4349*344a7f5eSAndroid Build Coastguard Worker method public final android.support.v17.leanback.widget.Presenter.ViewHolder getDetailsDescriptionViewHolder(); 4350*344a7f5eSAndroid Build Coastguard Worker method public final android.support.v17.leanback.widget.DetailsOverviewLogoPresenter.ViewHolder getLogoViewHolder(); 4351*344a7f5eSAndroid Build Coastguard Worker method public final android.view.ViewGroup getOverviewView(); 4352*344a7f5eSAndroid Build Coastguard Worker method public final int getState(); 4353*344a7f5eSAndroid Build Coastguard Worker field protected final android.support.v17.leanback.widget.DetailsOverviewRow.Listener mRowListener; 4354*344a7f5eSAndroid Build Coastguard Worker } 4355*344a7f5eSAndroid Build Coastguard Worker 4356*344a7f5eSAndroid Build Coastguard Worker public class FullWidthDetailsOverviewRowPresenter.ViewHolder.DetailsOverviewRowListener extends android.support.v17.leanback.widget.DetailsOverviewRow.Listener { 4357*344a7f5eSAndroid Build Coastguard Worker ctor public FullWidthDetailsOverviewRowPresenter.ViewHolder.DetailsOverviewRowListener(); 4358*344a7f5eSAndroid Build Coastguard Worker } 4359*344a7f5eSAndroid Build Coastguard Worker 4360*344a7f5eSAndroid Build Coastguard Worker public class FullWidthDetailsOverviewSharedElementHelper extends android.support.v17.leanback.widget.FullWidthDetailsOverviewRowPresenter.Listener { 4361*344a7f5eSAndroid Build Coastguard Worker ctor public FullWidthDetailsOverviewSharedElementHelper(); 4362*344a7f5eSAndroid Build Coastguard Worker method public boolean getAutoStartSharedElementTransition(); 4363*344a7f5eSAndroid Build Coastguard Worker method public void setAutoStartSharedElementTransition(boolean); 4364*344a7f5eSAndroid Build Coastguard Worker method public void setSharedElementEnterTransition(android.app.Activity, java.lang.String); 4365*344a7f5eSAndroid Build Coastguard Worker method public void setSharedElementEnterTransition(android.app.Activity, java.lang.String, long); 4366*344a7f5eSAndroid Build Coastguard Worker method public void startPostponedEnterTransition(); 4367*344a7f5eSAndroid Build Coastguard Worker } 4368*344a7f5eSAndroid Build Coastguard Worker 4369*344a7f5eSAndroid Build Coastguard Worker public class GuidanceStylist implements android.support.v17.leanback.widget.FragmentAnimationProvider { 4370*344a7f5eSAndroid Build Coastguard Worker ctor public GuidanceStylist(); 4371*344a7f5eSAndroid Build Coastguard Worker method public android.widget.TextView getBreadcrumbView(); 4372*344a7f5eSAndroid Build Coastguard Worker method public android.widget.TextView getDescriptionView(); 4373*344a7f5eSAndroid Build Coastguard Worker method public android.widget.ImageView getIconView(); 4374*344a7f5eSAndroid Build Coastguard Worker method public android.widget.TextView getTitleView(); 4375*344a7f5eSAndroid Build Coastguard Worker method public android.view.View onCreateView(android.view.LayoutInflater, android.view.ViewGroup, android.support.v17.leanback.widget.GuidanceStylist.Guidance); 4376*344a7f5eSAndroid Build Coastguard Worker method public void onDestroyView(); 4377*344a7f5eSAndroid Build Coastguard Worker method public void onImeAppearing(java.util.List<android.animation.Animator>); 4378*344a7f5eSAndroid Build Coastguard Worker method public void onImeDisappearing(java.util.List<android.animation.Animator>); 4379*344a7f5eSAndroid Build Coastguard Worker method public int onProvideLayoutId(); 4380*344a7f5eSAndroid Build Coastguard Worker } 4381*344a7f5eSAndroid Build Coastguard Worker 4382*344a7f5eSAndroid Build Coastguard Worker public static class GuidanceStylist.Guidance { 4383*344a7f5eSAndroid Build Coastguard Worker ctor public GuidanceStylist.Guidance(java.lang.String, java.lang.String, java.lang.String, android.graphics.drawable.Drawable); 4384*344a7f5eSAndroid Build Coastguard Worker method public java.lang.String getBreadcrumb(); 4385*344a7f5eSAndroid Build Coastguard Worker method public java.lang.String getDescription(); 4386*344a7f5eSAndroid Build Coastguard Worker method public android.graphics.drawable.Drawable getIconDrawable(); 4387*344a7f5eSAndroid Build Coastguard Worker method public java.lang.String getTitle(); 4388*344a7f5eSAndroid Build Coastguard Worker } 4389*344a7f5eSAndroid Build Coastguard Worker 4390*344a7f5eSAndroid Build Coastguard Worker public class GuidedAction extends android.support.v17.leanback.widget.Action { 4391*344a7f5eSAndroid Build Coastguard Worker ctor protected GuidedAction(); 4392*344a7f5eSAndroid Build Coastguard Worker method public int getCheckSetId(); 4393*344a7f5eSAndroid Build Coastguard Worker method public java.lang.CharSequence getDescription(); 4394*344a7f5eSAndroid Build Coastguard Worker method public int getDescriptionEditInputType(); 4395*344a7f5eSAndroid Build Coastguard Worker method public int getDescriptionInputType(); 4396*344a7f5eSAndroid Build Coastguard Worker method public java.lang.CharSequence getEditDescription(); 4397*344a7f5eSAndroid Build Coastguard Worker method public int getEditInputType(); 4398*344a7f5eSAndroid Build Coastguard Worker method public java.lang.CharSequence getEditTitle(); 4399*344a7f5eSAndroid Build Coastguard Worker method public int getInputType(); 4400*344a7f5eSAndroid Build Coastguard Worker method public android.content.Intent getIntent(); 4401*344a7f5eSAndroid Build Coastguard Worker method public java.util.List<android.support.v17.leanback.widget.GuidedAction> getSubActions(); 4402*344a7f5eSAndroid Build Coastguard Worker method public java.lang.CharSequence getTitle(); 4403*344a7f5eSAndroid Build Coastguard Worker method public boolean hasEditableActivatorView(); 4404*344a7f5eSAndroid Build Coastguard Worker method public boolean hasMultilineDescription(); 4405*344a7f5eSAndroid Build Coastguard Worker method public boolean hasNext(); 4406*344a7f5eSAndroid Build Coastguard Worker method public boolean hasSubActions(); 4407*344a7f5eSAndroid Build Coastguard Worker method public boolean hasTextEditable(); 4408*344a7f5eSAndroid Build Coastguard Worker method public boolean infoOnly(); 4409*344a7f5eSAndroid Build Coastguard Worker method public final boolean isAutoSaveRestoreEnabled(); 4410*344a7f5eSAndroid Build Coastguard Worker method public boolean isChecked(); 4411*344a7f5eSAndroid Build Coastguard Worker method public boolean isDescriptionEditable(); 4412*344a7f5eSAndroid Build Coastguard Worker method public boolean isEditTitleUsed(); 4413*344a7f5eSAndroid Build Coastguard Worker method public boolean isEditable(); 4414*344a7f5eSAndroid Build Coastguard Worker method public boolean isEnabled(); 4415*344a7f5eSAndroid Build Coastguard Worker method public boolean isFocusable(); 4416*344a7f5eSAndroid Build Coastguard Worker method public void onRestoreInstanceState(android.os.Bundle, java.lang.String); 4417*344a7f5eSAndroid Build Coastguard Worker method public void onSaveInstanceState(android.os.Bundle, java.lang.String); 4418*344a7f5eSAndroid Build Coastguard Worker method public void setChecked(boolean); 4419*344a7f5eSAndroid Build Coastguard Worker method public void setDescription(java.lang.CharSequence); 4420*344a7f5eSAndroid Build Coastguard Worker method public void setEditDescription(java.lang.CharSequence); 4421*344a7f5eSAndroid Build Coastguard Worker method public void setEditTitle(java.lang.CharSequence); 4422*344a7f5eSAndroid Build Coastguard Worker method public void setEnabled(boolean); 4423*344a7f5eSAndroid Build Coastguard Worker method public void setFocusable(boolean); 4424*344a7f5eSAndroid Build Coastguard Worker method public void setIntent(android.content.Intent); 4425*344a7f5eSAndroid Build Coastguard Worker method public void setSubActions(java.util.List<android.support.v17.leanback.widget.GuidedAction>); 4426*344a7f5eSAndroid Build Coastguard Worker method public void setTitle(java.lang.CharSequence); 4427*344a7f5eSAndroid Build Coastguard Worker field public static final long ACTION_ID_CANCEL = -5L; // 0xfffffffffffffffbL 4428*344a7f5eSAndroid Build Coastguard Worker field public static final long ACTION_ID_CONTINUE = -7L; // 0xfffffffffffffff9L 4429*344a7f5eSAndroid Build Coastguard Worker field public static final long ACTION_ID_CURRENT = -3L; // 0xfffffffffffffffdL 4430*344a7f5eSAndroid Build Coastguard Worker field public static final long ACTION_ID_FINISH = -6L; // 0xfffffffffffffffaL 4431*344a7f5eSAndroid Build Coastguard Worker field public static final long ACTION_ID_NEXT = -2L; // 0xfffffffffffffffeL 4432*344a7f5eSAndroid Build Coastguard Worker field public static final long ACTION_ID_NO = -9L; // 0xfffffffffffffff7L 4433*344a7f5eSAndroid Build Coastguard Worker field public static final long ACTION_ID_OK = -4L; // 0xfffffffffffffffcL 4434*344a7f5eSAndroid Build Coastguard Worker field public static final long ACTION_ID_YES = -8L; // 0xfffffffffffffff8L 4435*344a7f5eSAndroid Build Coastguard Worker field public static final int CHECKBOX_CHECK_SET_ID = -1; // 0xffffffff 4436*344a7f5eSAndroid Build Coastguard Worker field public static final int DEFAULT_CHECK_SET_ID = 1; // 0x1 4437*344a7f5eSAndroid Build Coastguard Worker field public static final int NO_CHECK_SET = 0; // 0x0 4438*344a7f5eSAndroid Build Coastguard Worker } 4439*344a7f5eSAndroid Build Coastguard Worker 4440*344a7f5eSAndroid Build Coastguard Worker public static class GuidedAction.Builder extends android.support.v17.leanback.widget.GuidedAction.BuilderBase { 4441*344a7f5eSAndroid Build Coastguard Worker ctor public deprecated GuidedAction.Builder(); 4442*344a7f5eSAndroid Build Coastguard Worker ctor public GuidedAction.Builder(android.content.Context); 4443*344a7f5eSAndroid Build Coastguard Worker method public android.support.v17.leanback.widget.GuidedAction build(); 4444*344a7f5eSAndroid Build Coastguard Worker } 4445*344a7f5eSAndroid Build Coastguard Worker 4446*344a7f5eSAndroid Build Coastguard Worker public static abstract class GuidedAction.BuilderBase<B extends android.support.v17.leanback.widget.GuidedAction.BuilderBase> { 4447*344a7f5eSAndroid Build Coastguard Worker ctor public GuidedAction.BuilderBase(android.content.Context); 4448*344a7f5eSAndroid Build Coastguard Worker method protected final void applyValues(android.support.v17.leanback.widget.GuidedAction); 4449*344a7f5eSAndroid Build Coastguard Worker method public B autoSaveRestoreEnabled(boolean); 4450*344a7f5eSAndroid Build Coastguard Worker method public B checkSetId(int); 4451*344a7f5eSAndroid Build Coastguard Worker method public B checked(boolean); 4452*344a7f5eSAndroid Build Coastguard Worker method public B clickAction(long); 4453*344a7f5eSAndroid Build Coastguard Worker method public B description(java.lang.CharSequence); 4454*344a7f5eSAndroid Build Coastguard Worker method public B description(int); 4455*344a7f5eSAndroid Build Coastguard Worker method public B descriptionEditInputType(int); 4456*344a7f5eSAndroid Build Coastguard Worker method public B descriptionEditable(boolean); 4457*344a7f5eSAndroid Build Coastguard Worker method public B descriptionInputType(int); 4458*344a7f5eSAndroid Build Coastguard Worker method public B editDescription(java.lang.CharSequence); 4459*344a7f5eSAndroid Build Coastguard Worker method public B editDescription(int); 4460*344a7f5eSAndroid Build Coastguard Worker method public B editInputType(int); 4461*344a7f5eSAndroid Build Coastguard Worker method public B editTitle(java.lang.CharSequence); 4462*344a7f5eSAndroid Build Coastguard Worker method public B editTitle(int); 4463*344a7f5eSAndroid Build Coastguard Worker method public B editable(boolean); 4464*344a7f5eSAndroid Build Coastguard Worker method public B enabled(boolean); 4465*344a7f5eSAndroid Build Coastguard Worker method public B focusable(boolean); 4466*344a7f5eSAndroid Build Coastguard Worker method public android.content.Context getContext(); 4467*344a7f5eSAndroid Build Coastguard Worker method public B hasEditableActivatorView(boolean); 4468*344a7f5eSAndroid Build Coastguard Worker method public B hasNext(boolean); 4469*344a7f5eSAndroid Build Coastguard Worker method public B icon(android.graphics.drawable.Drawable); 4470*344a7f5eSAndroid Build Coastguard Worker method public B icon(int); 4471*344a7f5eSAndroid Build Coastguard Worker method public deprecated B iconResourceId(int, android.content.Context); 4472*344a7f5eSAndroid Build Coastguard Worker method public B id(long); 4473*344a7f5eSAndroid Build Coastguard Worker method public B infoOnly(boolean); 4474*344a7f5eSAndroid Build Coastguard Worker method public B inputType(int); 4475*344a7f5eSAndroid Build Coastguard Worker method public B intent(android.content.Intent); 4476*344a7f5eSAndroid Build Coastguard Worker method public B multilineDescription(boolean); 4477*344a7f5eSAndroid Build Coastguard Worker method public B subActions(java.util.List<android.support.v17.leanback.widget.GuidedAction>); 4478*344a7f5eSAndroid Build Coastguard Worker method public B title(java.lang.CharSequence); 4479*344a7f5eSAndroid Build Coastguard Worker method public B title(int); 4480*344a7f5eSAndroid Build Coastguard Worker } 4481*344a7f5eSAndroid Build Coastguard Worker 4482*344a7f5eSAndroid Build Coastguard Worker public class GuidedActionEditText extends android.widget.EditText implements android.support.v17.leanback.widget.ImeKeyMonitor { 4483*344a7f5eSAndroid Build Coastguard Worker ctor public GuidedActionEditText(android.content.Context); 4484*344a7f5eSAndroid Build Coastguard Worker ctor public GuidedActionEditText(android.content.Context, android.util.AttributeSet); 4485*344a7f5eSAndroid Build Coastguard Worker ctor public GuidedActionEditText(android.content.Context, android.util.AttributeSet, int); 4486*344a7f5eSAndroid Build Coastguard Worker method public void setImeKeyListener(android.support.v17.leanback.widget.ImeKeyMonitor.ImeKeyListener); 4487*344a7f5eSAndroid Build Coastguard Worker } 4488*344a7f5eSAndroid Build Coastguard Worker 4489*344a7f5eSAndroid Build Coastguard Worker public class GuidedActionsStylist implements android.support.v17.leanback.widget.FragmentAnimationProvider { 4490*344a7f5eSAndroid Build Coastguard Worker ctor public GuidedActionsStylist(); 4491*344a7f5eSAndroid Build Coastguard Worker method public void collapseAction(boolean); 4492*344a7f5eSAndroid Build Coastguard Worker method public void expandAction(android.support.v17.leanback.widget.GuidedAction, boolean); 4493*344a7f5eSAndroid Build Coastguard Worker method public android.support.v17.leanback.widget.VerticalGridView getActionsGridView(); 4494*344a7f5eSAndroid Build Coastguard Worker method public android.support.v17.leanback.widget.GuidedAction getExpandedAction(); 4495*344a7f5eSAndroid Build Coastguard Worker method public int getItemViewType(android.support.v17.leanback.widget.GuidedAction); 4496*344a7f5eSAndroid Build Coastguard Worker method public android.support.v17.leanback.widget.VerticalGridView getSubActionsGridView(); 4497*344a7f5eSAndroid Build Coastguard Worker method public final boolean isBackKeyToCollapseActivatorView(); 4498*344a7f5eSAndroid Build Coastguard Worker method public final boolean isBackKeyToCollapseSubActions(); 4499*344a7f5eSAndroid Build Coastguard Worker method public boolean isButtonActions(); 4500*344a7f5eSAndroid Build Coastguard Worker method public boolean isExpandTransitionSupported(); 4501*344a7f5eSAndroid Build Coastguard Worker method public boolean isExpanded(); 4502*344a7f5eSAndroid Build Coastguard Worker method public boolean isInExpandTransition(); 4503*344a7f5eSAndroid Build Coastguard Worker method public boolean isSubActionsExpanded(); 4504*344a7f5eSAndroid Build Coastguard Worker method public void onAnimateItemChecked(android.support.v17.leanback.widget.GuidedActionsStylist.ViewHolder, boolean); 4505*344a7f5eSAndroid Build Coastguard Worker method public void onAnimateItemFocused(android.support.v17.leanback.widget.GuidedActionsStylist.ViewHolder, boolean); 4506*344a7f5eSAndroid Build Coastguard Worker method public void onAnimateItemPressed(android.support.v17.leanback.widget.GuidedActionsStylist.ViewHolder, boolean); 4507*344a7f5eSAndroid Build Coastguard Worker method public void onAnimateItemPressedCancelled(android.support.v17.leanback.widget.GuidedActionsStylist.ViewHolder); 4508*344a7f5eSAndroid Build Coastguard Worker method public void onBindActivatorView(android.support.v17.leanback.widget.GuidedActionsStylist.ViewHolder, android.support.v17.leanback.widget.GuidedAction); 4509*344a7f5eSAndroid Build Coastguard Worker method public void onBindCheckMarkView(android.support.v17.leanback.widget.GuidedActionsStylist.ViewHolder, android.support.v17.leanback.widget.GuidedAction); 4510*344a7f5eSAndroid Build Coastguard Worker method public void onBindChevronView(android.support.v17.leanback.widget.GuidedActionsStylist.ViewHolder, android.support.v17.leanback.widget.GuidedAction); 4511*344a7f5eSAndroid Build Coastguard Worker method public void onBindViewHolder(android.support.v17.leanback.widget.GuidedActionsStylist.ViewHolder, android.support.v17.leanback.widget.GuidedAction); 4512*344a7f5eSAndroid Build Coastguard Worker method public android.view.View onCreateView(android.view.LayoutInflater, android.view.ViewGroup); 4513*344a7f5eSAndroid Build Coastguard Worker method public android.support.v17.leanback.widget.GuidedActionsStylist.ViewHolder onCreateViewHolder(android.view.ViewGroup); 4514*344a7f5eSAndroid Build Coastguard Worker method public android.support.v17.leanback.widget.GuidedActionsStylist.ViewHolder onCreateViewHolder(android.view.ViewGroup, int); 4515*344a7f5eSAndroid Build Coastguard Worker method public void onDestroyView(); 4516*344a7f5eSAndroid Build Coastguard Worker method protected deprecated void onEditingModeChange(android.support.v17.leanback.widget.GuidedActionsStylist.ViewHolder, android.support.v17.leanback.widget.GuidedAction, boolean); 4517*344a7f5eSAndroid Build Coastguard Worker method protected void onEditingModeChange(android.support.v17.leanback.widget.GuidedActionsStylist.ViewHolder, boolean, boolean); 4518*344a7f5eSAndroid Build Coastguard Worker method public void onImeAppearing(java.util.List<android.animation.Animator>); 4519*344a7f5eSAndroid Build Coastguard Worker method public void onImeDisappearing(java.util.List<android.animation.Animator>); 4520*344a7f5eSAndroid Build Coastguard Worker method public int onProvideItemLayoutId(); 4521*344a7f5eSAndroid Build Coastguard Worker method public int onProvideItemLayoutId(int); 4522*344a7f5eSAndroid Build Coastguard Worker method public int onProvideLayoutId(); 4523*344a7f5eSAndroid Build Coastguard Worker method public boolean onUpdateActivatorView(android.support.v17.leanback.widget.GuidedActionsStylist.ViewHolder, android.support.v17.leanback.widget.GuidedAction); 4524*344a7f5eSAndroid Build Coastguard Worker method public void onUpdateExpandedViewHolder(android.support.v17.leanback.widget.GuidedActionsStylist.ViewHolder); 4525*344a7f5eSAndroid Build Coastguard Worker method public void openInEditMode(android.support.v17.leanback.widget.GuidedAction); 4526*344a7f5eSAndroid Build Coastguard Worker method public void setAsButtonActions(); 4527*344a7f5eSAndroid Build Coastguard Worker method public final void setBackKeyToCollapseActivatorView(boolean); 4528*344a7f5eSAndroid Build Coastguard Worker method public final void setBackKeyToCollapseSubActions(boolean); 4529*344a7f5eSAndroid Build Coastguard Worker method public deprecated void setEditingMode(android.support.v17.leanback.widget.GuidedActionsStylist.ViewHolder, android.support.v17.leanback.widget.GuidedAction, boolean); 4530*344a7f5eSAndroid Build Coastguard Worker method public deprecated void setExpandedViewHolder(android.support.v17.leanback.widget.GuidedActionsStylist.ViewHolder); 4531*344a7f5eSAndroid Build Coastguard Worker method protected void setupImeOptions(android.support.v17.leanback.widget.GuidedActionsStylist.ViewHolder, android.support.v17.leanback.widget.GuidedAction); 4532*344a7f5eSAndroid Build Coastguard Worker method public deprecated void startExpandedTransition(android.support.v17.leanback.widget.GuidedActionsStylist.ViewHolder); 4533*344a7f5eSAndroid Build Coastguard Worker field public static final int VIEW_TYPE_DATE_PICKER = 1; // 0x1 4534*344a7f5eSAndroid Build Coastguard Worker field public static final int VIEW_TYPE_DEFAULT = 0; // 0x0 4535*344a7f5eSAndroid Build Coastguard Worker } 4536*344a7f5eSAndroid Build Coastguard Worker 4537*344a7f5eSAndroid Build Coastguard Worker public static class GuidedActionsStylist.ViewHolder extends android.support.v7.widget.RecyclerView.ViewHolder implements android.support.v17.leanback.widget.FacetProvider { 4538*344a7f5eSAndroid Build Coastguard Worker ctor public GuidedActionsStylist.ViewHolder(android.view.View); 4539*344a7f5eSAndroid Build Coastguard Worker ctor public GuidedActionsStylist.ViewHolder(android.view.View, boolean); 4540*344a7f5eSAndroid Build Coastguard Worker method public android.support.v17.leanback.widget.GuidedAction getAction(); 4541*344a7f5eSAndroid Build Coastguard Worker method public android.widget.ImageView getCheckmarkView(); 4542*344a7f5eSAndroid Build Coastguard Worker method public android.widget.ImageView getChevronView(); 4543*344a7f5eSAndroid Build Coastguard Worker method public android.view.View getContentView(); 4544*344a7f5eSAndroid Build Coastguard Worker method public android.widget.TextView getDescriptionView(); 4545*344a7f5eSAndroid Build Coastguard Worker method public android.widget.EditText getEditableDescriptionView(); 4546*344a7f5eSAndroid Build Coastguard Worker method public android.widget.EditText getEditableTitleView(); 4547*344a7f5eSAndroid Build Coastguard Worker method public android.view.View getEditingView(); 4548*344a7f5eSAndroid Build Coastguard Worker method public java.lang.Object getFacet(java.lang.Class<?>); 4549*344a7f5eSAndroid Build Coastguard Worker method public android.widget.ImageView getIconView(); 4550*344a7f5eSAndroid Build Coastguard Worker method public android.widget.TextView getTitleView(); 4551*344a7f5eSAndroid Build Coastguard Worker method public boolean isInEditing(); 4552*344a7f5eSAndroid Build Coastguard Worker method public boolean isInEditingActivatorView(); 4553*344a7f5eSAndroid Build Coastguard Worker method public boolean isInEditingDescription(); 4554*344a7f5eSAndroid Build Coastguard Worker method public boolean isInEditingText(); 4555*344a7f5eSAndroid Build Coastguard Worker method public boolean isInEditingTitle(); 4556*344a7f5eSAndroid Build Coastguard Worker method public boolean isSubAction(); 4557*344a7f5eSAndroid Build Coastguard Worker } 4558*344a7f5eSAndroid Build Coastguard Worker 4559*344a7f5eSAndroid Build Coastguard Worker public class GuidedDatePickerAction extends android.support.v17.leanback.widget.GuidedAction { 4560*344a7f5eSAndroid Build Coastguard Worker ctor public GuidedDatePickerAction(); 4561*344a7f5eSAndroid Build Coastguard Worker method public long getDate(); 4562*344a7f5eSAndroid Build Coastguard Worker method public java.lang.String getDatePickerFormat(); 4563*344a7f5eSAndroid Build Coastguard Worker method public long getMaxDate(); 4564*344a7f5eSAndroid Build Coastguard Worker method public long getMinDate(); 4565*344a7f5eSAndroid Build Coastguard Worker method public void setDate(long); 4566*344a7f5eSAndroid Build Coastguard Worker } 4567*344a7f5eSAndroid Build Coastguard Worker 4568*344a7f5eSAndroid Build Coastguard Worker public static final class GuidedDatePickerAction.Builder extends android.support.v17.leanback.widget.GuidedDatePickerAction.BuilderBase { 4569*344a7f5eSAndroid Build Coastguard Worker ctor public GuidedDatePickerAction.Builder(android.content.Context); 4570*344a7f5eSAndroid Build Coastguard Worker method public android.support.v17.leanback.widget.GuidedDatePickerAction build(); 4571*344a7f5eSAndroid Build Coastguard Worker } 4572*344a7f5eSAndroid Build Coastguard Worker 4573*344a7f5eSAndroid Build Coastguard Worker public static abstract class GuidedDatePickerAction.BuilderBase<B extends android.support.v17.leanback.widget.GuidedDatePickerAction.BuilderBase> extends android.support.v17.leanback.widget.GuidedAction.BuilderBase { 4574*344a7f5eSAndroid Build Coastguard Worker ctor public GuidedDatePickerAction.BuilderBase(android.content.Context); 4575*344a7f5eSAndroid Build Coastguard Worker method protected final void applyDatePickerValues(android.support.v17.leanback.widget.GuidedDatePickerAction); 4576*344a7f5eSAndroid Build Coastguard Worker method public B date(long); 4577*344a7f5eSAndroid Build Coastguard Worker method public B datePickerFormat(java.lang.String); 4578*344a7f5eSAndroid Build Coastguard Worker method public B maxDate(long); 4579*344a7f5eSAndroid Build Coastguard Worker method public B minDate(long); 4580*344a7f5eSAndroid Build Coastguard Worker } 4581*344a7f5eSAndroid Build Coastguard Worker 4582*344a7f5eSAndroid Build Coastguard Worker public class HeaderItem { 4583*344a7f5eSAndroid Build Coastguard Worker ctor public HeaderItem(long, java.lang.String); 4584*344a7f5eSAndroid Build Coastguard Worker ctor public HeaderItem(java.lang.String); 4585*344a7f5eSAndroid Build Coastguard Worker method public java.lang.CharSequence getContentDescription(); 4586*344a7f5eSAndroid Build Coastguard Worker method public java.lang.CharSequence getDescription(); 4587*344a7f5eSAndroid Build Coastguard Worker method public final long getId(); 4588*344a7f5eSAndroid Build Coastguard Worker method public final java.lang.String getName(); 4589*344a7f5eSAndroid Build Coastguard Worker method public void setContentDescription(java.lang.CharSequence); 4590*344a7f5eSAndroid Build Coastguard Worker method public void setDescription(java.lang.CharSequence); 4591*344a7f5eSAndroid Build Coastguard Worker } 4592*344a7f5eSAndroid Build Coastguard Worker 4593*344a7f5eSAndroid Build Coastguard Worker public class HorizontalGridView extends android.support.v17.leanback.widget.BaseGridView { 4594*344a7f5eSAndroid Build Coastguard Worker ctor public HorizontalGridView(android.content.Context); 4595*344a7f5eSAndroid Build Coastguard Worker ctor public HorizontalGridView(android.content.Context, android.util.AttributeSet); 4596*344a7f5eSAndroid Build Coastguard Worker ctor public HorizontalGridView(android.content.Context, android.util.AttributeSet, int); 4597*344a7f5eSAndroid Build Coastguard Worker method public final boolean getFadingLeftEdge(); 4598*344a7f5eSAndroid Build Coastguard Worker method public final int getFadingLeftEdgeLength(); 4599*344a7f5eSAndroid Build Coastguard Worker method public final int getFadingLeftEdgeOffset(); 4600*344a7f5eSAndroid Build Coastguard Worker method public final boolean getFadingRightEdge(); 4601*344a7f5eSAndroid Build Coastguard Worker method public final int getFadingRightEdgeLength(); 4602*344a7f5eSAndroid Build Coastguard Worker method public final int getFadingRightEdgeOffset(); 4603*344a7f5eSAndroid Build Coastguard Worker method protected void initAttributes(android.content.Context, android.util.AttributeSet); 4604*344a7f5eSAndroid Build Coastguard Worker method public final void setFadingLeftEdge(boolean); 4605*344a7f5eSAndroid Build Coastguard Worker method public final void setFadingLeftEdgeLength(int); 4606*344a7f5eSAndroid Build Coastguard Worker method public final void setFadingLeftEdgeOffset(int); 4607*344a7f5eSAndroid Build Coastguard Worker method public final void setFadingRightEdge(boolean); 4608*344a7f5eSAndroid Build Coastguard Worker method public final void setFadingRightEdgeLength(int); 4609*344a7f5eSAndroid Build Coastguard Worker method public final void setFadingRightEdgeOffset(int); 4610*344a7f5eSAndroid Build Coastguard Worker method public void setNumRows(int); 4611*344a7f5eSAndroid Build Coastguard Worker method public void setRowHeight(int); 4612*344a7f5eSAndroid Build Coastguard Worker } 4613*344a7f5eSAndroid Build Coastguard Worker 4614*344a7f5eSAndroid Build Coastguard Worker public final class HorizontalHoverCardSwitcher extends android.support.v17.leanback.widget.PresenterSwitcher { 4615*344a7f5eSAndroid Build Coastguard Worker ctor public HorizontalHoverCardSwitcher(); 4616*344a7f5eSAndroid Build Coastguard Worker method protected void insertView(android.view.View); 4617*344a7f5eSAndroid Build Coastguard Worker method public void select(android.support.v17.leanback.widget.HorizontalGridView, android.view.View, java.lang.Object); 4618*344a7f5eSAndroid Build Coastguard Worker } 4619*344a7f5eSAndroid Build Coastguard Worker 4620*344a7f5eSAndroid Build Coastguard Worker public class ImageCardView extends android.support.v17.leanback.widget.BaseCardView { 4621*344a7f5eSAndroid Build Coastguard Worker ctor public deprecated ImageCardView(android.content.Context, int); 4622*344a7f5eSAndroid Build Coastguard Worker ctor public ImageCardView(android.content.Context, android.util.AttributeSet, int); 4623*344a7f5eSAndroid Build Coastguard Worker ctor public ImageCardView(android.content.Context); 4624*344a7f5eSAndroid Build Coastguard Worker ctor public ImageCardView(android.content.Context, android.util.AttributeSet); 4625*344a7f5eSAndroid Build Coastguard Worker method public android.graphics.drawable.Drawable getBadgeImage(); 4626*344a7f5eSAndroid Build Coastguard Worker method public java.lang.CharSequence getContentText(); 4627*344a7f5eSAndroid Build Coastguard Worker method public android.graphics.drawable.Drawable getInfoAreaBackground(); 4628*344a7f5eSAndroid Build Coastguard Worker method public android.graphics.drawable.Drawable getMainImage(); 4629*344a7f5eSAndroid Build Coastguard Worker method public final android.widget.ImageView getMainImageView(); 4630*344a7f5eSAndroid Build Coastguard Worker method public java.lang.CharSequence getTitleText(); 4631*344a7f5eSAndroid Build Coastguard Worker method public void setBadgeImage(android.graphics.drawable.Drawable); 4632*344a7f5eSAndroid Build Coastguard Worker method public void setContentText(java.lang.CharSequence); 4633*344a7f5eSAndroid Build Coastguard Worker method public void setInfoAreaBackground(android.graphics.drawable.Drawable); 4634*344a7f5eSAndroid Build Coastguard Worker method public void setInfoAreaBackgroundColor(int); 4635*344a7f5eSAndroid Build Coastguard Worker method public void setMainImage(android.graphics.drawable.Drawable); 4636*344a7f5eSAndroid Build Coastguard Worker method public void setMainImage(android.graphics.drawable.Drawable, boolean); 4637*344a7f5eSAndroid Build Coastguard Worker method public void setMainImageAdjustViewBounds(boolean); 4638*344a7f5eSAndroid Build Coastguard Worker method public void setMainImageDimensions(int, int); 4639*344a7f5eSAndroid Build Coastguard Worker method public void setMainImageScaleType(android.widget.ImageView.ScaleType); 4640*344a7f5eSAndroid Build Coastguard Worker method public void setTitleText(java.lang.CharSequence); 4641*344a7f5eSAndroid Build Coastguard Worker field public static final int CARD_TYPE_FLAG_CONTENT = 2; // 0x2 4642*344a7f5eSAndroid Build Coastguard Worker field public static final int CARD_TYPE_FLAG_ICON_LEFT = 8; // 0x8 4643*344a7f5eSAndroid Build Coastguard Worker field public static final int CARD_TYPE_FLAG_ICON_RIGHT = 4; // 0x4 4644*344a7f5eSAndroid Build Coastguard Worker field public static final int CARD_TYPE_FLAG_IMAGE_ONLY = 0; // 0x0 4645*344a7f5eSAndroid Build Coastguard Worker field public static final int CARD_TYPE_FLAG_TITLE = 1; // 0x1 4646*344a7f5eSAndroid Build Coastguard Worker } 4647*344a7f5eSAndroid Build Coastguard Worker 4648*344a7f5eSAndroid Build Coastguard Worker public abstract interface ImeKeyMonitor { 4649*344a7f5eSAndroid Build Coastguard Worker method public abstract void setImeKeyListener(android.support.v17.leanback.widget.ImeKeyMonitor.ImeKeyListener); 4650*344a7f5eSAndroid Build Coastguard Worker } 4651*344a7f5eSAndroid Build Coastguard Worker 4652*344a7f5eSAndroid Build Coastguard Worker public static abstract interface ImeKeyMonitor.ImeKeyListener { 4653*344a7f5eSAndroid Build Coastguard Worker method public abstract boolean onKeyPreIme(android.widget.EditText, int, android.view.KeyEvent); 4654*344a7f5eSAndroid Build Coastguard Worker } 4655*344a7f5eSAndroid Build Coastguard Worker 4656*344a7f5eSAndroid Build Coastguard Worker public final class ItemAlignmentFacet { 4657*344a7f5eSAndroid Build Coastguard Worker ctor public ItemAlignmentFacet(); 4658*344a7f5eSAndroid Build Coastguard Worker method public android.support.v17.leanback.widget.ItemAlignmentFacet.ItemAlignmentDef[] getAlignmentDefs(); 4659*344a7f5eSAndroid Build Coastguard Worker method public boolean isMultiAlignment(); 4660*344a7f5eSAndroid Build Coastguard Worker method public void setAlignmentDefs(android.support.v17.leanback.widget.ItemAlignmentFacet.ItemAlignmentDef[]); 4661*344a7f5eSAndroid Build Coastguard Worker field public static final float ITEM_ALIGN_OFFSET_PERCENT_DISABLED = -1.0f; 4662*344a7f5eSAndroid Build Coastguard Worker } 4663*344a7f5eSAndroid Build Coastguard Worker 4664*344a7f5eSAndroid Build Coastguard Worker public static class ItemAlignmentFacet.ItemAlignmentDef { 4665*344a7f5eSAndroid Build Coastguard Worker ctor public ItemAlignmentFacet.ItemAlignmentDef(); 4666*344a7f5eSAndroid Build Coastguard Worker method public final int getItemAlignmentFocusViewId(); 4667*344a7f5eSAndroid Build Coastguard Worker method public final int getItemAlignmentOffset(); 4668*344a7f5eSAndroid Build Coastguard Worker method public final float getItemAlignmentOffsetPercent(); 4669*344a7f5eSAndroid Build Coastguard Worker method public final int getItemAlignmentViewId(); 4670*344a7f5eSAndroid Build Coastguard Worker method public boolean isAlignedToTextViewBaseLine(); 4671*344a7f5eSAndroid Build Coastguard Worker method public final boolean isItemAlignmentOffsetWithPadding(); 4672*344a7f5eSAndroid Build Coastguard Worker method public final void setAlignedToTextViewBaseline(boolean); 4673*344a7f5eSAndroid Build Coastguard Worker method public final void setItemAlignmentFocusViewId(int); 4674*344a7f5eSAndroid Build Coastguard Worker method public final void setItemAlignmentOffset(int); 4675*344a7f5eSAndroid Build Coastguard Worker method public final void setItemAlignmentOffsetPercent(float); 4676*344a7f5eSAndroid Build Coastguard Worker method public final void setItemAlignmentOffsetWithPadding(boolean); 4677*344a7f5eSAndroid Build Coastguard Worker method public final void setItemAlignmentViewId(int); 4678*344a7f5eSAndroid Build Coastguard Worker } 4679*344a7f5eSAndroid Build Coastguard Worker 4680*344a7f5eSAndroid Build Coastguard Worker public class ItemBridgeAdapter extends android.support.v7.widget.RecyclerView.Adapter implements android.support.v17.leanback.widget.FacetProviderAdapter { 4681*344a7f5eSAndroid Build Coastguard Worker ctor public ItemBridgeAdapter(android.support.v17.leanback.widget.ObjectAdapter, android.support.v17.leanback.widget.PresenterSelector); 4682*344a7f5eSAndroid Build Coastguard Worker ctor public ItemBridgeAdapter(android.support.v17.leanback.widget.ObjectAdapter); 4683*344a7f5eSAndroid Build Coastguard Worker ctor public ItemBridgeAdapter(); 4684*344a7f5eSAndroid Build Coastguard Worker method public void clear(); 4685*344a7f5eSAndroid Build Coastguard Worker method public android.support.v17.leanback.widget.FacetProvider getFacetProvider(int); 4686*344a7f5eSAndroid Build Coastguard Worker method public int getItemCount(); 4687*344a7f5eSAndroid Build Coastguard Worker method public java.util.ArrayList<android.support.v17.leanback.widget.Presenter> getPresenterMapper(); 4688*344a7f5eSAndroid Build Coastguard Worker method public android.support.v17.leanback.widget.ItemBridgeAdapter.Wrapper getWrapper(); 4689*344a7f5eSAndroid Build Coastguard Worker method protected void onAddPresenter(android.support.v17.leanback.widget.Presenter, int); 4690*344a7f5eSAndroid Build Coastguard Worker method protected void onAttachedToWindow(android.support.v17.leanback.widget.ItemBridgeAdapter.ViewHolder); 4691*344a7f5eSAndroid Build Coastguard Worker method protected void onBind(android.support.v17.leanback.widget.ItemBridgeAdapter.ViewHolder); 4692*344a7f5eSAndroid Build Coastguard Worker method public final void onBindViewHolder(android.support.v7.widget.RecyclerView.ViewHolder, int); 4693*344a7f5eSAndroid Build Coastguard Worker method protected void onCreate(android.support.v17.leanback.widget.ItemBridgeAdapter.ViewHolder); 4694*344a7f5eSAndroid Build Coastguard Worker method public final android.support.v7.widget.RecyclerView.ViewHolder onCreateViewHolder(android.view.ViewGroup, int); 4695*344a7f5eSAndroid Build Coastguard Worker method protected void onDetachedFromWindow(android.support.v17.leanback.widget.ItemBridgeAdapter.ViewHolder); 4696*344a7f5eSAndroid Build Coastguard Worker method protected void onUnbind(android.support.v17.leanback.widget.ItemBridgeAdapter.ViewHolder); 4697*344a7f5eSAndroid Build Coastguard Worker method public final void onViewAttachedToWindow(android.support.v7.widget.RecyclerView.ViewHolder); 4698*344a7f5eSAndroid Build Coastguard Worker method public final void onViewDetachedFromWindow(android.support.v7.widget.RecyclerView.ViewHolder); 4699*344a7f5eSAndroid Build Coastguard Worker method public final void onViewRecycled(android.support.v7.widget.RecyclerView.ViewHolder); 4700*344a7f5eSAndroid Build Coastguard Worker method public void setAdapter(android.support.v17.leanback.widget.ObjectAdapter); 4701*344a7f5eSAndroid Build Coastguard Worker method public void setAdapterListener(android.support.v17.leanback.widget.ItemBridgeAdapter.AdapterListener); 4702*344a7f5eSAndroid Build Coastguard Worker method public void setPresenter(android.support.v17.leanback.widget.PresenterSelector); 4703*344a7f5eSAndroid Build Coastguard Worker method public void setPresenterMapper(java.util.ArrayList<android.support.v17.leanback.widget.Presenter>); 4704*344a7f5eSAndroid Build Coastguard Worker method public void setWrapper(android.support.v17.leanback.widget.ItemBridgeAdapter.Wrapper); 4705*344a7f5eSAndroid Build Coastguard Worker } 4706*344a7f5eSAndroid Build Coastguard Worker 4707*344a7f5eSAndroid Build Coastguard Worker public static class ItemBridgeAdapter.AdapterListener { 4708*344a7f5eSAndroid Build Coastguard Worker ctor public ItemBridgeAdapter.AdapterListener(); 4709*344a7f5eSAndroid Build Coastguard Worker method public void onAddPresenter(android.support.v17.leanback.widget.Presenter, int); 4710*344a7f5eSAndroid Build Coastguard Worker method public void onAttachedToWindow(android.support.v17.leanback.widget.ItemBridgeAdapter.ViewHolder); 4711*344a7f5eSAndroid Build Coastguard Worker method public void onBind(android.support.v17.leanback.widget.ItemBridgeAdapter.ViewHolder); 4712*344a7f5eSAndroid Build Coastguard Worker method public void onCreate(android.support.v17.leanback.widget.ItemBridgeAdapter.ViewHolder); 4713*344a7f5eSAndroid Build Coastguard Worker method public void onDetachedFromWindow(android.support.v17.leanback.widget.ItemBridgeAdapter.ViewHolder); 4714*344a7f5eSAndroid Build Coastguard Worker method public void onUnbind(android.support.v17.leanback.widget.ItemBridgeAdapter.ViewHolder); 4715*344a7f5eSAndroid Build Coastguard Worker } 4716*344a7f5eSAndroid Build Coastguard Worker 4717*344a7f5eSAndroid Build Coastguard Worker public class ItemBridgeAdapter.ViewHolder extends android.support.v7.widget.RecyclerView.ViewHolder implements android.support.v17.leanback.widget.FacetProvider { 4718*344a7f5eSAndroid Build Coastguard Worker method public final java.lang.Object getExtraObject(); 4719*344a7f5eSAndroid Build Coastguard Worker method public java.lang.Object getFacet(java.lang.Class<?>); 4720*344a7f5eSAndroid Build Coastguard Worker method public final java.lang.Object getItem(); 4721*344a7f5eSAndroid Build Coastguard Worker method public final android.support.v17.leanback.widget.Presenter getPresenter(); 4722*344a7f5eSAndroid Build Coastguard Worker method public final android.support.v17.leanback.widget.Presenter.ViewHolder getViewHolder(); 4723*344a7f5eSAndroid Build Coastguard Worker method public void setExtraObject(java.lang.Object); 4724*344a7f5eSAndroid Build Coastguard Worker } 4725*344a7f5eSAndroid Build Coastguard Worker 4726*344a7f5eSAndroid Build Coastguard Worker public static abstract class ItemBridgeAdapter.Wrapper { 4727*344a7f5eSAndroid Build Coastguard Worker ctor public ItemBridgeAdapter.Wrapper(); 4728*344a7f5eSAndroid Build Coastguard Worker method public abstract android.view.View createWrapper(android.view.View); 4729*344a7f5eSAndroid Build Coastguard Worker method public abstract void wrap(android.view.View, android.view.View); 4730*344a7f5eSAndroid Build Coastguard Worker } 4731*344a7f5eSAndroid Build Coastguard Worker 4732*344a7f5eSAndroid Build Coastguard Worker public class ItemBridgeAdapterShadowOverlayWrapper extends android.support.v17.leanback.widget.ItemBridgeAdapter.Wrapper { 4733*344a7f5eSAndroid Build Coastguard Worker ctor public ItemBridgeAdapterShadowOverlayWrapper(android.support.v17.leanback.widget.ShadowOverlayHelper); 4734*344a7f5eSAndroid Build Coastguard Worker method public android.view.View createWrapper(android.view.View); 4735*344a7f5eSAndroid Build Coastguard Worker method public void wrap(android.view.View, android.view.View); 4736*344a7f5eSAndroid Build Coastguard Worker } 4737*344a7f5eSAndroid Build Coastguard Worker 4738*344a7f5eSAndroid Build Coastguard Worker public class ListRow extends android.support.v17.leanback.widget.Row { 4739*344a7f5eSAndroid Build Coastguard Worker ctor public ListRow(android.support.v17.leanback.widget.HeaderItem, android.support.v17.leanback.widget.ObjectAdapter); 4740*344a7f5eSAndroid Build Coastguard Worker ctor public ListRow(long, android.support.v17.leanback.widget.HeaderItem, android.support.v17.leanback.widget.ObjectAdapter); 4741*344a7f5eSAndroid Build Coastguard Worker ctor public ListRow(android.support.v17.leanback.widget.ObjectAdapter); 4742*344a7f5eSAndroid Build Coastguard Worker method public final android.support.v17.leanback.widget.ObjectAdapter getAdapter(); 4743*344a7f5eSAndroid Build Coastguard Worker method public java.lang.CharSequence getContentDescription(); 4744*344a7f5eSAndroid Build Coastguard Worker method public void setContentDescription(java.lang.CharSequence); 4745*344a7f5eSAndroid Build Coastguard Worker } 4746*344a7f5eSAndroid Build Coastguard Worker 4747*344a7f5eSAndroid Build Coastguard Worker public final class ListRowHoverCardView extends android.widget.LinearLayout { 4748*344a7f5eSAndroid Build Coastguard Worker ctor public ListRowHoverCardView(android.content.Context); 4749*344a7f5eSAndroid Build Coastguard Worker ctor public ListRowHoverCardView(android.content.Context, android.util.AttributeSet); 4750*344a7f5eSAndroid Build Coastguard Worker ctor public ListRowHoverCardView(android.content.Context, android.util.AttributeSet, int); 4751*344a7f5eSAndroid Build Coastguard Worker method public final java.lang.CharSequence getDescription(); 4752*344a7f5eSAndroid Build Coastguard Worker method public final java.lang.CharSequence getTitle(); 4753*344a7f5eSAndroid Build Coastguard Worker method public final void setDescription(java.lang.CharSequence); 4754*344a7f5eSAndroid Build Coastguard Worker method public final void setTitle(java.lang.CharSequence); 4755*344a7f5eSAndroid Build Coastguard Worker } 4756*344a7f5eSAndroid Build Coastguard Worker 4757*344a7f5eSAndroid Build Coastguard Worker public class ListRowPresenter extends android.support.v17.leanback.widget.RowPresenter { 4758*344a7f5eSAndroid Build Coastguard Worker ctor public ListRowPresenter(); 4759*344a7f5eSAndroid Build Coastguard Worker ctor public ListRowPresenter(int); 4760*344a7f5eSAndroid Build Coastguard Worker ctor public ListRowPresenter(int, boolean); 4761*344a7f5eSAndroid Build Coastguard Worker method protected void applySelectLevelToChild(android.support.v17.leanback.widget.ListRowPresenter.ViewHolder, android.view.View); 4762*344a7f5eSAndroid Build Coastguard Worker method public final boolean areChildRoundedCornersEnabled(); 4763*344a7f5eSAndroid Build Coastguard Worker method protected android.support.v17.leanback.widget.RowPresenter.ViewHolder createRowViewHolder(android.view.ViewGroup); 4764*344a7f5eSAndroid Build Coastguard Worker method protected android.support.v17.leanback.widget.ShadowOverlayHelper.Options createShadowOverlayOptions(); 4765*344a7f5eSAndroid Build Coastguard Worker method public final void enableChildRoundedCorners(boolean); 4766*344a7f5eSAndroid Build Coastguard Worker method public int getExpandedRowHeight(); 4767*344a7f5eSAndroid Build Coastguard Worker method public final int getFocusZoomFactor(); 4768*344a7f5eSAndroid Build Coastguard Worker method public final android.support.v17.leanback.widget.PresenterSelector getHoverCardPresenterSelector(); 4769*344a7f5eSAndroid Build Coastguard Worker method public int getRecycledPoolSize(android.support.v17.leanback.widget.Presenter); 4770*344a7f5eSAndroid Build Coastguard Worker method public int getRowHeight(); 4771*344a7f5eSAndroid Build Coastguard Worker method public final boolean getShadowEnabled(); 4772*344a7f5eSAndroid Build Coastguard Worker method public final deprecated int getZoomFactor(); 4773*344a7f5eSAndroid Build Coastguard Worker method public final boolean isFocusDimmerUsed(); 4774*344a7f5eSAndroid Build Coastguard Worker method public final boolean isKeepChildForeground(); 4775*344a7f5eSAndroid Build Coastguard Worker method public boolean isUsingDefaultListSelectEffect(); 4776*344a7f5eSAndroid Build Coastguard Worker method public final boolean isUsingDefaultSelectEffect(); 4777*344a7f5eSAndroid Build Coastguard Worker method public boolean isUsingDefaultShadow(); 4778*344a7f5eSAndroid Build Coastguard Worker method public boolean isUsingZOrder(android.content.Context); 4779*344a7f5eSAndroid Build Coastguard Worker method public void setExpandedRowHeight(int); 4780*344a7f5eSAndroid Build Coastguard Worker method public final void setHoverCardPresenterSelector(android.support.v17.leanback.widget.PresenterSelector); 4781*344a7f5eSAndroid Build Coastguard Worker method public final void setKeepChildForeground(boolean); 4782*344a7f5eSAndroid Build Coastguard Worker method public void setNumRows(int); 4783*344a7f5eSAndroid Build Coastguard Worker method public void setRecycledPoolSize(android.support.v17.leanback.widget.Presenter, int); 4784*344a7f5eSAndroid Build Coastguard Worker method public void setRowHeight(int); 4785*344a7f5eSAndroid Build Coastguard Worker method public final void setShadowEnabled(boolean); 4786*344a7f5eSAndroid Build Coastguard Worker } 4787*344a7f5eSAndroid Build Coastguard Worker 4788*344a7f5eSAndroid Build Coastguard Worker public static class ListRowPresenter.SelectItemViewHolderTask extends android.support.v17.leanback.widget.Presenter.ViewHolderTask { 4789*344a7f5eSAndroid Build Coastguard Worker ctor public ListRowPresenter.SelectItemViewHolderTask(int); 4790*344a7f5eSAndroid Build Coastguard Worker method public int getItemPosition(); 4791*344a7f5eSAndroid Build Coastguard Worker method public android.support.v17.leanback.widget.Presenter.ViewHolderTask getItemTask(); 4792*344a7f5eSAndroid Build Coastguard Worker method public boolean isSmoothScroll(); 4793*344a7f5eSAndroid Build Coastguard Worker method public void setItemPosition(int); 4794*344a7f5eSAndroid Build Coastguard Worker method public void setItemTask(android.support.v17.leanback.widget.Presenter.ViewHolderTask); 4795*344a7f5eSAndroid Build Coastguard Worker method public void setSmoothScroll(boolean); 4796*344a7f5eSAndroid Build Coastguard Worker } 4797*344a7f5eSAndroid Build Coastguard Worker 4798*344a7f5eSAndroid Build Coastguard Worker public static class ListRowPresenter.ViewHolder extends android.support.v17.leanback.widget.RowPresenter.ViewHolder { 4799*344a7f5eSAndroid Build Coastguard Worker ctor public ListRowPresenter.ViewHolder(android.view.View, android.support.v17.leanback.widget.HorizontalGridView, android.support.v17.leanback.widget.ListRowPresenter); 4800*344a7f5eSAndroid Build Coastguard Worker method public final android.support.v17.leanback.widget.ItemBridgeAdapter getBridgeAdapter(); 4801*344a7f5eSAndroid Build Coastguard Worker method public final android.support.v17.leanback.widget.HorizontalGridView getGridView(); 4802*344a7f5eSAndroid Build Coastguard Worker method public android.support.v17.leanback.widget.Presenter.ViewHolder getItemViewHolder(int); 4803*344a7f5eSAndroid Build Coastguard Worker method public final android.support.v17.leanback.widget.ListRowPresenter getListRowPresenter(); 4804*344a7f5eSAndroid Build Coastguard Worker method public int getSelectedPosition(); 4805*344a7f5eSAndroid Build Coastguard Worker } 4806*344a7f5eSAndroid Build Coastguard Worker 4807*344a7f5eSAndroid Build Coastguard Worker public final class ListRowView extends android.widget.LinearLayout { 4808*344a7f5eSAndroid Build Coastguard Worker ctor public ListRowView(android.content.Context); 4809*344a7f5eSAndroid Build Coastguard Worker ctor public ListRowView(android.content.Context, android.util.AttributeSet); 4810*344a7f5eSAndroid Build Coastguard Worker ctor public ListRowView(android.content.Context, android.util.AttributeSet, int); 4811*344a7f5eSAndroid Build Coastguard Worker method public android.support.v17.leanback.widget.HorizontalGridView getGridView(); 4812*344a7f5eSAndroid Build Coastguard Worker } 4813*344a7f5eSAndroid Build Coastguard Worker 4814*344a7f5eSAndroid Build Coastguard Worker public abstract interface MultiActionsProvider { 4815*344a7f5eSAndroid Build Coastguard Worker method public abstract android.support.v17.leanback.widget.MultiActionsProvider.MultiAction[] getActions(); 4816*344a7f5eSAndroid Build Coastguard Worker } 4817*344a7f5eSAndroid Build Coastguard Worker 4818*344a7f5eSAndroid Build Coastguard Worker public static class MultiActionsProvider.MultiAction { 4819*344a7f5eSAndroid Build Coastguard Worker ctor public MultiActionsProvider.MultiAction(long); 4820*344a7f5eSAndroid Build Coastguard Worker method public android.graphics.drawable.Drawable getCurrentDrawable(); 4821*344a7f5eSAndroid Build Coastguard Worker method public android.graphics.drawable.Drawable[] getDrawables(); 4822*344a7f5eSAndroid Build Coastguard Worker method public long getId(); 4823*344a7f5eSAndroid Build Coastguard Worker method public int getIndex(); 4824*344a7f5eSAndroid Build Coastguard Worker method public void incrementIndex(); 4825*344a7f5eSAndroid Build Coastguard Worker method public void setDrawables(android.graphics.drawable.Drawable[]); 4826*344a7f5eSAndroid Build Coastguard Worker method public void setIndex(int); 4827*344a7f5eSAndroid Build Coastguard Worker } 4828*344a7f5eSAndroid Build Coastguard Worker 4829*344a7f5eSAndroid Build Coastguard Worker public abstract class ObjectAdapter { 4830*344a7f5eSAndroid Build Coastguard Worker ctor public ObjectAdapter(android.support.v17.leanback.widget.PresenterSelector); 4831*344a7f5eSAndroid Build Coastguard Worker ctor public ObjectAdapter(android.support.v17.leanback.widget.Presenter); 4832*344a7f5eSAndroid Build Coastguard Worker ctor public ObjectAdapter(); 4833*344a7f5eSAndroid Build Coastguard Worker method public abstract java.lang.Object get(int); 4834*344a7f5eSAndroid Build Coastguard Worker method public long getId(int); 4835*344a7f5eSAndroid Build Coastguard Worker method public final android.support.v17.leanback.widget.Presenter getPresenter(java.lang.Object); 4836*344a7f5eSAndroid Build Coastguard Worker method public final android.support.v17.leanback.widget.PresenterSelector getPresenterSelector(); 4837*344a7f5eSAndroid Build Coastguard Worker method public final boolean hasStableIds(); 4838*344a7f5eSAndroid Build Coastguard Worker method public boolean isImmediateNotifySupported(); 4839*344a7f5eSAndroid Build Coastguard Worker method protected final void notifyChanged(); 4840*344a7f5eSAndroid Build Coastguard Worker method public final void notifyItemRangeChanged(int, int); 4841*344a7f5eSAndroid Build Coastguard Worker method protected final void notifyItemRangeInserted(int, int); 4842*344a7f5eSAndroid Build Coastguard Worker method protected final void notifyItemRangeRemoved(int, int); 4843*344a7f5eSAndroid Build Coastguard Worker method protected void onHasStableIdsChanged(); 4844*344a7f5eSAndroid Build Coastguard Worker method protected void onPresenterSelectorChanged(); 4845*344a7f5eSAndroid Build Coastguard Worker method public final void registerObserver(android.support.v17.leanback.widget.ObjectAdapter.DataObserver); 4846*344a7f5eSAndroid Build Coastguard Worker method public final void setHasStableIds(boolean); 4847*344a7f5eSAndroid Build Coastguard Worker method public final void setPresenterSelector(android.support.v17.leanback.widget.PresenterSelector); 4848*344a7f5eSAndroid Build Coastguard Worker method public abstract int size(); 4849*344a7f5eSAndroid Build Coastguard Worker method public final void unregisterAllObservers(); 4850*344a7f5eSAndroid Build Coastguard Worker method public final void unregisterObserver(android.support.v17.leanback.widget.ObjectAdapter.DataObserver); 4851*344a7f5eSAndroid Build Coastguard Worker field public static final int NO_ID = -1; // 0xffffffff 4852*344a7f5eSAndroid Build Coastguard Worker } 4853*344a7f5eSAndroid Build Coastguard Worker 4854*344a7f5eSAndroid Build Coastguard Worker public static abstract class ObjectAdapter.DataObserver { 4855*344a7f5eSAndroid Build Coastguard Worker ctor public ObjectAdapter.DataObserver(); 4856*344a7f5eSAndroid Build Coastguard Worker method public void onChanged(); 4857*344a7f5eSAndroid Build Coastguard Worker method public void onItemRangeChanged(int, int); 4858*344a7f5eSAndroid Build Coastguard Worker method public void onItemRangeInserted(int, int); 4859*344a7f5eSAndroid Build Coastguard Worker method public void onItemRangeRemoved(int, int); 4860*344a7f5eSAndroid Build Coastguard Worker } 4861*344a7f5eSAndroid Build Coastguard Worker 4862*344a7f5eSAndroid Build Coastguard Worker public abstract interface OnActionClickedListener { 4863*344a7f5eSAndroid Build Coastguard Worker method public abstract void onActionClicked(android.support.v17.leanback.widget.Action); 4864*344a7f5eSAndroid Build Coastguard Worker } 4865*344a7f5eSAndroid Build Coastguard Worker 4866*344a7f5eSAndroid Build Coastguard Worker public abstract interface OnChildLaidOutListener { 4867*344a7f5eSAndroid Build Coastguard Worker method public abstract void onChildLaidOut(android.view.ViewGroup, android.view.View, int, long); 4868*344a7f5eSAndroid Build Coastguard Worker } 4869*344a7f5eSAndroid Build Coastguard Worker 4870*344a7f5eSAndroid Build Coastguard Worker public abstract deprecated interface OnChildSelectedListener { 4871*344a7f5eSAndroid Build Coastguard Worker method public abstract void onChildSelected(android.view.ViewGroup, android.view.View, int, long); 4872*344a7f5eSAndroid Build Coastguard Worker } 4873*344a7f5eSAndroid Build Coastguard Worker 4874*344a7f5eSAndroid Build Coastguard Worker public abstract class OnChildViewHolderSelectedListener { 4875*344a7f5eSAndroid Build Coastguard Worker ctor public OnChildViewHolderSelectedListener(); 4876*344a7f5eSAndroid Build Coastguard Worker method public void onChildViewHolderSelected(android.support.v7.widget.RecyclerView, android.support.v7.widget.RecyclerView.ViewHolder, int, int); 4877*344a7f5eSAndroid Build Coastguard Worker method public void onChildViewHolderSelectedAndPositioned(android.support.v7.widget.RecyclerView, android.support.v7.widget.RecyclerView.ViewHolder, int, int); 4878*344a7f5eSAndroid Build Coastguard Worker } 4879*344a7f5eSAndroid Build Coastguard Worker 4880*344a7f5eSAndroid Build Coastguard Worker public abstract interface OnItemViewClickedListener implements android.support.v17.leanback.widget.BaseOnItemViewClickedListener { 4881*344a7f5eSAndroid Build Coastguard Worker } 4882*344a7f5eSAndroid Build Coastguard Worker 4883*344a7f5eSAndroid Build Coastguard Worker public abstract interface OnItemViewSelectedListener implements android.support.v17.leanback.widget.BaseOnItemViewSelectedListener { 4884*344a7f5eSAndroid Build Coastguard Worker } 4885*344a7f5eSAndroid Build Coastguard Worker 4886*344a7f5eSAndroid Build Coastguard Worker public class PageRow extends android.support.v17.leanback.widget.Row { 4887*344a7f5eSAndroid Build Coastguard Worker ctor public PageRow(android.support.v17.leanback.widget.HeaderItem); 4888*344a7f5eSAndroid Build Coastguard Worker method public final boolean isRenderedAsRowView(); 4889*344a7f5eSAndroid Build Coastguard Worker } 4890*344a7f5eSAndroid Build Coastguard Worker 4891*344a7f5eSAndroid Build Coastguard Worker public abstract class Parallax<PropertyT extends android.util.Property> { 4892*344a7f5eSAndroid Build Coastguard Worker ctor public Parallax(); 4893*344a7f5eSAndroid Build Coastguard Worker method public android.support.v17.leanback.widget.ParallaxEffect addEffect(android.support.v17.leanback.widget.Parallax.PropertyMarkerValue...); 4894*344a7f5eSAndroid Build Coastguard Worker method public final PropertyT addProperty(java.lang.String); 4895*344a7f5eSAndroid Build Coastguard Worker method public abstract PropertyT createProperty(java.lang.String, int); 4896*344a7f5eSAndroid Build Coastguard Worker method public java.util.List<android.support.v17.leanback.widget.ParallaxEffect> getEffects(); 4897*344a7f5eSAndroid Build Coastguard Worker method public abstract float getMaxValue(); 4898*344a7f5eSAndroid Build Coastguard Worker method public final java.util.List<PropertyT> getProperties(); 4899*344a7f5eSAndroid Build Coastguard Worker method public void removeAllEffects(); 4900*344a7f5eSAndroid Build Coastguard Worker method public void removeEffect(android.support.v17.leanback.widget.ParallaxEffect); 4901*344a7f5eSAndroid Build Coastguard Worker method public void updateValues(); 4902*344a7f5eSAndroid Build Coastguard Worker } 4903*344a7f5eSAndroid Build Coastguard Worker 4904*344a7f5eSAndroid Build Coastguard Worker public static class Parallax.FloatProperty extends android.util.Property { 4905*344a7f5eSAndroid Build Coastguard Worker ctor public Parallax.FloatProperty(java.lang.String, int); 4906*344a7f5eSAndroid Build Coastguard Worker method public final android.support.v17.leanback.widget.Parallax.PropertyMarkerValue at(float, float); 4907*344a7f5eSAndroid Build Coastguard Worker method public final android.support.v17.leanback.widget.Parallax.PropertyMarkerValue atAbsolute(float); 4908*344a7f5eSAndroid Build Coastguard Worker method public final android.support.v17.leanback.widget.Parallax.PropertyMarkerValue atFraction(float); 4909*344a7f5eSAndroid Build Coastguard Worker method public final android.support.v17.leanback.widget.Parallax.PropertyMarkerValue atMax(); 4910*344a7f5eSAndroid Build Coastguard Worker method public final android.support.v17.leanback.widget.Parallax.PropertyMarkerValue atMin(); 4911*344a7f5eSAndroid Build Coastguard Worker method public final java.lang.Float get(android.support.v17.leanback.widget.Parallax); 4912*344a7f5eSAndroid Build Coastguard Worker method public final int getIndex(); 4913*344a7f5eSAndroid Build Coastguard Worker method public final float getValue(android.support.v17.leanback.widget.Parallax); 4914*344a7f5eSAndroid Build Coastguard Worker method public final void set(android.support.v17.leanback.widget.Parallax, java.lang.Float); 4915*344a7f5eSAndroid Build Coastguard Worker method public final void setValue(android.support.v17.leanback.widget.Parallax, float); 4916*344a7f5eSAndroid Build Coastguard Worker field public static final float UNKNOWN_AFTER = 3.4028235E38f; 4917*344a7f5eSAndroid Build Coastguard Worker field public static final float UNKNOWN_BEFORE = -3.4028235E38f; 4918*344a7f5eSAndroid Build Coastguard Worker } 4919*344a7f5eSAndroid Build Coastguard Worker 4920*344a7f5eSAndroid Build Coastguard Worker public static class Parallax.IntProperty extends android.util.Property { 4921*344a7f5eSAndroid Build Coastguard Worker ctor public Parallax.IntProperty(java.lang.String, int); 4922*344a7f5eSAndroid Build Coastguard Worker method public final android.support.v17.leanback.widget.Parallax.PropertyMarkerValue at(int, float); 4923*344a7f5eSAndroid Build Coastguard Worker method public final android.support.v17.leanback.widget.Parallax.PropertyMarkerValue atAbsolute(int); 4924*344a7f5eSAndroid Build Coastguard Worker method public final android.support.v17.leanback.widget.Parallax.PropertyMarkerValue atFraction(float); 4925*344a7f5eSAndroid Build Coastguard Worker method public final android.support.v17.leanback.widget.Parallax.PropertyMarkerValue atMax(); 4926*344a7f5eSAndroid Build Coastguard Worker method public final android.support.v17.leanback.widget.Parallax.PropertyMarkerValue atMin(); 4927*344a7f5eSAndroid Build Coastguard Worker method public final java.lang.Integer get(android.support.v17.leanback.widget.Parallax); 4928*344a7f5eSAndroid Build Coastguard Worker method public final int getIndex(); 4929*344a7f5eSAndroid Build Coastguard Worker method public final int getValue(android.support.v17.leanback.widget.Parallax); 4930*344a7f5eSAndroid Build Coastguard Worker method public final void set(android.support.v17.leanback.widget.Parallax, java.lang.Integer); 4931*344a7f5eSAndroid Build Coastguard Worker method public final void setValue(android.support.v17.leanback.widget.Parallax, int); 4932*344a7f5eSAndroid Build Coastguard Worker field public static final int UNKNOWN_AFTER = 2147483647; // 0x7fffffff 4933*344a7f5eSAndroid Build Coastguard Worker field public static final int UNKNOWN_BEFORE = -2147483648; // 0x80000000 4934*344a7f5eSAndroid Build Coastguard Worker } 4935*344a7f5eSAndroid Build Coastguard Worker 4936*344a7f5eSAndroid Build Coastguard Worker public static class Parallax.PropertyMarkerValue<PropertyT> { 4937*344a7f5eSAndroid Build Coastguard Worker ctor public Parallax.PropertyMarkerValue(PropertyT); 4938*344a7f5eSAndroid Build Coastguard Worker method public PropertyT getProperty(); 4939*344a7f5eSAndroid Build Coastguard Worker } 4940*344a7f5eSAndroid Build Coastguard Worker 4941*344a7f5eSAndroid Build Coastguard Worker public abstract class ParallaxEffect { 4942*344a7f5eSAndroid Build Coastguard Worker method public final void addTarget(android.support.v17.leanback.widget.ParallaxTarget); 4943*344a7f5eSAndroid Build Coastguard Worker method public final java.util.List<android.support.v17.leanback.widget.Parallax.PropertyMarkerValue> getPropertyRanges(); 4944*344a7f5eSAndroid Build Coastguard Worker method public final java.util.List<android.support.v17.leanback.widget.ParallaxTarget> getTargets(); 4945*344a7f5eSAndroid Build Coastguard Worker method public final void performMapping(android.support.v17.leanback.widget.Parallax); 4946*344a7f5eSAndroid Build Coastguard Worker method public final void removeTarget(android.support.v17.leanback.widget.ParallaxTarget); 4947*344a7f5eSAndroid Build Coastguard Worker method public final void setPropertyRanges(android.support.v17.leanback.widget.Parallax.PropertyMarkerValue...); 4948*344a7f5eSAndroid Build Coastguard Worker method public final android.support.v17.leanback.widget.ParallaxEffect target(android.support.v17.leanback.widget.ParallaxTarget); 4949*344a7f5eSAndroid Build Coastguard Worker method public final android.support.v17.leanback.widget.ParallaxEffect target(java.lang.Object, android.animation.PropertyValuesHolder); 4950*344a7f5eSAndroid Build Coastguard Worker method public final <T, V extends java.lang.Number> android.support.v17.leanback.widget.ParallaxEffect target(T, android.util.Property<T, V>); 4951*344a7f5eSAndroid Build Coastguard Worker } 4952*344a7f5eSAndroid Build Coastguard Worker 4953*344a7f5eSAndroid Build Coastguard Worker public abstract class ParallaxTarget { 4954*344a7f5eSAndroid Build Coastguard Worker ctor public ParallaxTarget(); 4955*344a7f5eSAndroid Build Coastguard Worker method public void directUpdate(java.lang.Number); 4956*344a7f5eSAndroid Build Coastguard Worker method public boolean isDirectMapping(); 4957*344a7f5eSAndroid Build Coastguard Worker method public void update(float); 4958*344a7f5eSAndroid Build Coastguard Worker } 4959*344a7f5eSAndroid Build Coastguard Worker 4960*344a7f5eSAndroid Build Coastguard Worker public static final class ParallaxTarget.DirectPropertyTarget<T, V extends java.lang.Number> extends android.support.v17.leanback.widget.ParallaxTarget { 4961*344a7f5eSAndroid Build Coastguard Worker ctor public ParallaxTarget.DirectPropertyTarget(java.lang.Object, android.util.Property<T, V>); 4962*344a7f5eSAndroid Build Coastguard Worker } 4963*344a7f5eSAndroid Build Coastguard Worker 4964*344a7f5eSAndroid Build Coastguard Worker public static final class ParallaxTarget.PropertyValuesHolderTarget extends android.support.v17.leanback.widget.ParallaxTarget { 4965*344a7f5eSAndroid Build Coastguard Worker ctor public ParallaxTarget.PropertyValuesHolderTarget(java.lang.Object, android.animation.PropertyValuesHolder); 4966*344a7f5eSAndroid Build Coastguard Worker } 4967*344a7f5eSAndroid Build Coastguard Worker 4968*344a7f5eSAndroid Build Coastguard Worker public class PlaybackControlsRow extends android.support.v17.leanback.widget.Row { 4969*344a7f5eSAndroid Build Coastguard Worker ctor public PlaybackControlsRow(java.lang.Object); 4970*344a7f5eSAndroid Build Coastguard Worker ctor public PlaybackControlsRow(); 4971*344a7f5eSAndroid Build Coastguard Worker method public android.support.v17.leanback.widget.Action getActionForKeyCode(int); 4972*344a7f5eSAndroid Build Coastguard Worker method public android.support.v17.leanback.widget.Action getActionForKeyCode(android.support.v17.leanback.widget.ObjectAdapter, int); 4973*344a7f5eSAndroid Build Coastguard Worker method public long getBufferedPosition(); 4974*344a7f5eSAndroid Build Coastguard Worker method public deprecated int getBufferedProgress(); 4975*344a7f5eSAndroid Build Coastguard Worker method public deprecated long getBufferedProgressLong(); 4976*344a7f5eSAndroid Build Coastguard Worker method public long getCurrentPosition(); 4977*344a7f5eSAndroid Build Coastguard Worker method public deprecated int getCurrentTime(); 4978*344a7f5eSAndroid Build Coastguard Worker method public deprecated long getCurrentTimeLong(); 4979*344a7f5eSAndroid Build Coastguard Worker method public long getDuration(); 4980*344a7f5eSAndroid Build Coastguard Worker method public final android.graphics.drawable.Drawable getImageDrawable(); 4981*344a7f5eSAndroid Build Coastguard Worker method public final java.lang.Object getItem(); 4982*344a7f5eSAndroid Build Coastguard Worker method public final android.support.v17.leanback.widget.ObjectAdapter getPrimaryActionsAdapter(); 4983*344a7f5eSAndroid Build Coastguard Worker method public final android.support.v17.leanback.widget.ObjectAdapter getSecondaryActionsAdapter(); 4984*344a7f5eSAndroid Build Coastguard Worker method public deprecated int getTotalTime(); 4985*344a7f5eSAndroid Build Coastguard Worker method public deprecated long getTotalTimeLong(); 4986*344a7f5eSAndroid Build Coastguard Worker method public void setBufferedPosition(long); 4987*344a7f5eSAndroid Build Coastguard Worker method public deprecated void setBufferedProgress(int); 4988*344a7f5eSAndroid Build Coastguard Worker method public deprecated void setBufferedProgressLong(long); 4989*344a7f5eSAndroid Build Coastguard Worker method public void setCurrentPosition(long); 4990*344a7f5eSAndroid Build Coastguard Worker method public deprecated void setCurrentTime(int); 4991*344a7f5eSAndroid Build Coastguard Worker method public deprecated void setCurrentTimeLong(long); 4992*344a7f5eSAndroid Build Coastguard Worker method public void setDuration(long); 4993*344a7f5eSAndroid Build Coastguard Worker method public final void setImageBitmap(android.content.Context, android.graphics.Bitmap); 4994*344a7f5eSAndroid Build Coastguard Worker method public final void setImageDrawable(android.graphics.drawable.Drawable); 4995*344a7f5eSAndroid Build Coastguard Worker method public void setOnPlaybackProgressChangedListener(android.support.v17.leanback.widget.PlaybackControlsRow.OnPlaybackProgressCallback); 4996*344a7f5eSAndroid Build Coastguard Worker method public final void setPrimaryActionsAdapter(android.support.v17.leanback.widget.ObjectAdapter); 4997*344a7f5eSAndroid Build Coastguard Worker method public final void setSecondaryActionsAdapter(android.support.v17.leanback.widget.ObjectAdapter); 4998*344a7f5eSAndroid Build Coastguard Worker method public deprecated void setTotalTime(int); 4999*344a7f5eSAndroid Build Coastguard Worker method public deprecated void setTotalTimeLong(long); 5000*344a7f5eSAndroid Build Coastguard Worker } 5001*344a7f5eSAndroid Build Coastguard Worker 5002*344a7f5eSAndroid Build Coastguard Worker public static class PlaybackControlsRow.ClosedCaptioningAction extends android.support.v17.leanback.widget.PlaybackControlsRow.MultiAction { 5003*344a7f5eSAndroid Build Coastguard Worker ctor public PlaybackControlsRow.ClosedCaptioningAction(android.content.Context); 5004*344a7f5eSAndroid Build Coastguard Worker ctor public PlaybackControlsRow.ClosedCaptioningAction(android.content.Context, int); 5005*344a7f5eSAndroid Build Coastguard Worker field public static final int INDEX_OFF = 0; // 0x0 5006*344a7f5eSAndroid Build Coastguard Worker field public static final int INDEX_ON = 1; // 0x1 5007*344a7f5eSAndroid Build Coastguard Worker field public static deprecated int OFF; 5008*344a7f5eSAndroid Build Coastguard Worker field public static deprecated int ON; 5009*344a7f5eSAndroid Build Coastguard Worker } 5010*344a7f5eSAndroid Build Coastguard Worker 5011*344a7f5eSAndroid Build Coastguard Worker public static class PlaybackControlsRow.FastForwardAction extends android.support.v17.leanback.widget.PlaybackControlsRow.MultiAction { 5012*344a7f5eSAndroid Build Coastguard Worker ctor public PlaybackControlsRow.FastForwardAction(android.content.Context); 5013*344a7f5eSAndroid Build Coastguard Worker ctor public PlaybackControlsRow.FastForwardAction(android.content.Context, int); 5014*344a7f5eSAndroid Build Coastguard Worker } 5015*344a7f5eSAndroid Build Coastguard Worker 5016*344a7f5eSAndroid Build Coastguard Worker public static class PlaybackControlsRow.HighQualityAction extends android.support.v17.leanback.widget.PlaybackControlsRow.MultiAction { 5017*344a7f5eSAndroid Build Coastguard Worker ctor public PlaybackControlsRow.HighQualityAction(android.content.Context); 5018*344a7f5eSAndroid Build Coastguard Worker ctor public PlaybackControlsRow.HighQualityAction(android.content.Context, int); 5019*344a7f5eSAndroid Build Coastguard Worker field public static final int INDEX_OFF = 0; // 0x0 5020*344a7f5eSAndroid Build Coastguard Worker field public static final int INDEX_ON = 1; // 0x1 5021*344a7f5eSAndroid Build Coastguard Worker field public static deprecated int OFF; 5022*344a7f5eSAndroid Build Coastguard Worker field public static deprecated int ON; 5023*344a7f5eSAndroid Build Coastguard Worker } 5024*344a7f5eSAndroid Build Coastguard Worker 5025*344a7f5eSAndroid Build Coastguard Worker public static class PlaybackControlsRow.MoreActions extends android.support.v17.leanback.widget.Action { 5026*344a7f5eSAndroid Build Coastguard Worker ctor public PlaybackControlsRow.MoreActions(android.content.Context); 5027*344a7f5eSAndroid Build Coastguard Worker } 5028*344a7f5eSAndroid Build Coastguard Worker 5029*344a7f5eSAndroid Build Coastguard Worker public static abstract class PlaybackControlsRow.MultiAction extends android.support.v17.leanback.widget.Action { 5030*344a7f5eSAndroid Build Coastguard Worker ctor public PlaybackControlsRow.MultiAction(int); 5031*344a7f5eSAndroid Build Coastguard Worker method public int getActionCount(); 5032*344a7f5eSAndroid Build Coastguard Worker method public android.graphics.drawable.Drawable getDrawable(int); 5033*344a7f5eSAndroid Build Coastguard Worker method public int getIndex(); 5034*344a7f5eSAndroid Build Coastguard Worker method public java.lang.String getLabel(int); 5035*344a7f5eSAndroid Build Coastguard Worker method public java.lang.String getSecondaryLabel(int); 5036*344a7f5eSAndroid Build Coastguard Worker method public void nextIndex(); 5037*344a7f5eSAndroid Build Coastguard Worker method public void setDrawables(android.graphics.drawable.Drawable[]); 5038*344a7f5eSAndroid Build Coastguard Worker method public void setIndex(int); 5039*344a7f5eSAndroid Build Coastguard Worker method public void setLabels(java.lang.String[]); 5040*344a7f5eSAndroid Build Coastguard Worker method public void setSecondaryLabels(java.lang.String[]); 5041*344a7f5eSAndroid Build Coastguard Worker } 5042*344a7f5eSAndroid Build Coastguard Worker 5043*344a7f5eSAndroid Build Coastguard Worker public static class PlaybackControlsRow.OnPlaybackProgressCallback { 5044*344a7f5eSAndroid Build Coastguard Worker ctor public PlaybackControlsRow.OnPlaybackProgressCallback(); 5045*344a7f5eSAndroid Build Coastguard Worker method public void onBufferedPositionChanged(android.support.v17.leanback.widget.PlaybackControlsRow, long); 5046*344a7f5eSAndroid Build Coastguard Worker method public void onCurrentPositionChanged(android.support.v17.leanback.widget.PlaybackControlsRow, long); 5047*344a7f5eSAndroid Build Coastguard Worker method public void onDurationChanged(android.support.v17.leanback.widget.PlaybackControlsRow, long); 5048*344a7f5eSAndroid Build Coastguard Worker } 5049*344a7f5eSAndroid Build Coastguard Worker 5050*344a7f5eSAndroid Build Coastguard Worker public static class PlaybackControlsRow.PictureInPictureAction extends android.support.v17.leanback.widget.Action { 5051*344a7f5eSAndroid Build Coastguard Worker ctor public PlaybackControlsRow.PictureInPictureAction(android.content.Context); 5052*344a7f5eSAndroid Build Coastguard Worker } 5053*344a7f5eSAndroid Build Coastguard Worker 5054*344a7f5eSAndroid Build Coastguard Worker public static class PlaybackControlsRow.PlayPauseAction extends android.support.v17.leanback.widget.PlaybackControlsRow.MultiAction { 5055*344a7f5eSAndroid Build Coastguard Worker ctor public PlaybackControlsRow.PlayPauseAction(android.content.Context); 5056*344a7f5eSAndroid Build Coastguard Worker field public static final int INDEX_PAUSE = 1; // 0x1 5057*344a7f5eSAndroid Build Coastguard Worker field public static final int INDEX_PLAY = 0; // 0x0 5058*344a7f5eSAndroid Build Coastguard Worker field public static deprecated int PAUSE; 5059*344a7f5eSAndroid Build Coastguard Worker field public static deprecated int PLAY; 5060*344a7f5eSAndroid Build Coastguard Worker } 5061*344a7f5eSAndroid Build Coastguard Worker 5062*344a7f5eSAndroid Build Coastguard Worker public static class PlaybackControlsRow.RepeatAction extends android.support.v17.leanback.widget.PlaybackControlsRow.MultiAction { 5063*344a7f5eSAndroid Build Coastguard Worker ctor public PlaybackControlsRow.RepeatAction(android.content.Context); 5064*344a7f5eSAndroid Build Coastguard Worker ctor public PlaybackControlsRow.RepeatAction(android.content.Context, int); 5065*344a7f5eSAndroid Build Coastguard Worker ctor public PlaybackControlsRow.RepeatAction(android.content.Context, int, int); 5066*344a7f5eSAndroid Build Coastguard Worker field public static deprecated int ALL; 5067*344a7f5eSAndroid Build Coastguard Worker field public static final int INDEX_ALL = 1; // 0x1 5068*344a7f5eSAndroid Build Coastguard Worker field public static final int INDEX_NONE = 0; // 0x0 5069*344a7f5eSAndroid Build Coastguard Worker field public static final int INDEX_ONE = 2; // 0x2 5070*344a7f5eSAndroid Build Coastguard Worker field public static deprecated int NONE; 5071*344a7f5eSAndroid Build Coastguard Worker field public static deprecated int ONE; 5072*344a7f5eSAndroid Build Coastguard Worker } 5073*344a7f5eSAndroid Build Coastguard Worker 5074*344a7f5eSAndroid Build Coastguard Worker public static class PlaybackControlsRow.RewindAction extends android.support.v17.leanback.widget.PlaybackControlsRow.MultiAction { 5075*344a7f5eSAndroid Build Coastguard Worker ctor public PlaybackControlsRow.RewindAction(android.content.Context); 5076*344a7f5eSAndroid Build Coastguard Worker ctor public PlaybackControlsRow.RewindAction(android.content.Context, int); 5077*344a7f5eSAndroid Build Coastguard Worker } 5078*344a7f5eSAndroid Build Coastguard Worker 5079*344a7f5eSAndroid Build Coastguard Worker public static class PlaybackControlsRow.ShuffleAction extends android.support.v17.leanback.widget.PlaybackControlsRow.MultiAction { 5080*344a7f5eSAndroid Build Coastguard Worker ctor public PlaybackControlsRow.ShuffleAction(android.content.Context); 5081*344a7f5eSAndroid Build Coastguard Worker ctor public PlaybackControlsRow.ShuffleAction(android.content.Context, int); 5082*344a7f5eSAndroid Build Coastguard Worker field public static final int INDEX_OFF = 0; // 0x0 5083*344a7f5eSAndroid Build Coastguard Worker field public static final int INDEX_ON = 1; // 0x1 5084*344a7f5eSAndroid Build Coastguard Worker field public static deprecated int OFF; 5085*344a7f5eSAndroid Build Coastguard Worker field public static deprecated int ON; 5086*344a7f5eSAndroid Build Coastguard Worker } 5087*344a7f5eSAndroid Build Coastguard Worker 5088*344a7f5eSAndroid Build Coastguard Worker public static class PlaybackControlsRow.SkipNextAction extends android.support.v17.leanback.widget.Action { 5089*344a7f5eSAndroid Build Coastguard Worker ctor public PlaybackControlsRow.SkipNextAction(android.content.Context); 5090*344a7f5eSAndroid Build Coastguard Worker } 5091*344a7f5eSAndroid Build Coastguard Worker 5092*344a7f5eSAndroid Build Coastguard Worker public static class PlaybackControlsRow.SkipPreviousAction extends android.support.v17.leanback.widget.Action { 5093*344a7f5eSAndroid Build Coastguard Worker ctor public PlaybackControlsRow.SkipPreviousAction(android.content.Context); 5094*344a7f5eSAndroid Build Coastguard Worker } 5095*344a7f5eSAndroid Build Coastguard Worker 5096*344a7f5eSAndroid Build Coastguard Worker public static abstract class PlaybackControlsRow.ThumbsAction extends android.support.v17.leanback.widget.PlaybackControlsRow.MultiAction { 5097*344a7f5eSAndroid Build Coastguard Worker ctor public PlaybackControlsRow.ThumbsAction(int, android.content.Context, int, int); 5098*344a7f5eSAndroid Build Coastguard Worker field public static final int INDEX_OUTLINE = 1; // 0x1 5099*344a7f5eSAndroid Build Coastguard Worker field public static final int INDEX_SOLID = 0; // 0x0 5100*344a7f5eSAndroid Build Coastguard Worker field public static deprecated int OUTLINE; 5101*344a7f5eSAndroid Build Coastguard Worker field public static deprecated int SOLID; 5102*344a7f5eSAndroid Build Coastguard Worker } 5103*344a7f5eSAndroid Build Coastguard Worker 5104*344a7f5eSAndroid Build Coastguard Worker public static class PlaybackControlsRow.ThumbsDownAction extends android.support.v17.leanback.widget.PlaybackControlsRow.ThumbsAction { 5105*344a7f5eSAndroid Build Coastguard Worker ctor public PlaybackControlsRow.ThumbsDownAction(android.content.Context); 5106*344a7f5eSAndroid Build Coastguard Worker } 5107*344a7f5eSAndroid Build Coastguard Worker 5108*344a7f5eSAndroid Build Coastguard Worker public static class PlaybackControlsRow.ThumbsUpAction extends android.support.v17.leanback.widget.PlaybackControlsRow.ThumbsAction { 5109*344a7f5eSAndroid Build Coastguard Worker ctor public PlaybackControlsRow.ThumbsUpAction(android.content.Context); 5110*344a7f5eSAndroid Build Coastguard Worker } 5111*344a7f5eSAndroid Build Coastguard Worker 5112*344a7f5eSAndroid Build Coastguard Worker public class PlaybackControlsRowPresenter extends android.support.v17.leanback.widget.PlaybackRowPresenter { 5113*344a7f5eSAndroid Build Coastguard Worker ctor public PlaybackControlsRowPresenter(android.support.v17.leanback.widget.Presenter); 5114*344a7f5eSAndroid Build Coastguard Worker ctor public PlaybackControlsRowPresenter(); 5115*344a7f5eSAndroid Build Coastguard Worker method public boolean areSecondaryActionsHidden(); 5116*344a7f5eSAndroid Build Coastguard Worker method protected android.support.v17.leanback.widget.RowPresenter.ViewHolder createRowViewHolder(android.view.ViewGroup); 5117*344a7f5eSAndroid Build Coastguard Worker method public int getBackgroundColor(); 5118*344a7f5eSAndroid Build Coastguard Worker method public android.support.v17.leanback.widget.OnActionClickedListener getOnActionClickedListener(); 5119*344a7f5eSAndroid Build Coastguard Worker method public int getProgressColor(); 5120*344a7f5eSAndroid Build Coastguard Worker method public void setBackgroundColor(int); 5121*344a7f5eSAndroid Build Coastguard Worker method public void setOnActionClickedListener(android.support.v17.leanback.widget.OnActionClickedListener); 5122*344a7f5eSAndroid Build Coastguard Worker method public void setProgressColor(int); 5123*344a7f5eSAndroid Build Coastguard Worker method public void setSecondaryActionsHidden(boolean); 5124*344a7f5eSAndroid Build Coastguard Worker method public void showBottomSpace(android.support.v17.leanback.widget.PlaybackControlsRowPresenter.ViewHolder, boolean); 5125*344a7f5eSAndroid Build Coastguard Worker method public void showPrimaryActions(android.support.v17.leanback.widget.PlaybackControlsRowPresenter.ViewHolder); 5126*344a7f5eSAndroid Build Coastguard Worker } 5127*344a7f5eSAndroid Build Coastguard Worker 5128*344a7f5eSAndroid Build Coastguard Worker public class PlaybackControlsRowPresenter.ViewHolder extends android.support.v17.leanback.widget.PlaybackRowPresenter.ViewHolder { 5129*344a7f5eSAndroid Build Coastguard Worker field public final android.support.v17.leanback.widget.Presenter.ViewHolder mDescriptionViewHolder; 5130*344a7f5eSAndroid Build Coastguard Worker } 5131*344a7f5eSAndroid Build Coastguard Worker 5132*344a7f5eSAndroid Build Coastguard Worker public abstract class PlaybackRowPresenter extends android.support.v17.leanback.widget.RowPresenter { 5133*344a7f5eSAndroid Build Coastguard Worker ctor public PlaybackRowPresenter(); 5134*344a7f5eSAndroid Build Coastguard Worker method public void onReappear(android.support.v17.leanback.widget.RowPresenter.ViewHolder); 5135*344a7f5eSAndroid Build Coastguard Worker } 5136*344a7f5eSAndroid Build Coastguard Worker 5137*344a7f5eSAndroid Build Coastguard Worker public static class PlaybackRowPresenter.ViewHolder extends android.support.v17.leanback.widget.RowPresenter.ViewHolder { 5138*344a7f5eSAndroid Build Coastguard Worker ctor public PlaybackRowPresenter.ViewHolder(android.view.View); 5139*344a7f5eSAndroid Build Coastguard Worker } 5140*344a7f5eSAndroid Build Coastguard Worker 5141*344a7f5eSAndroid Build Coastguard Worker public class PlaybackSeekDataProvider { 5142*344a7f5eSAndroid Build Coastguard Worker ctor public PlaybackSeekDataProvider(); 5143*344a7f5eSAndroid Build Coastguard Worker method public long[] getSeekPositions(); 5144*344a7f5eSAndroid Build Coastguard Worker method public void getThumbnail(int, android.support.v17.leanback.widget.PlaybackSeekDataProvider.ResultCallback); 5145*344a7f5eSAndroid Build Coastguard Worker method public void reset(); 5146*344a7f5eSAndroid Build Coastguard Worker } 5147*344a7f5eSAndroid Build Coastguard Worker 5148*344a7f5eSAndroid Build Coastguard Worker public static class PlaybackSeekDataProvider.ResultCallback { 5149*344a7f5eSAndroid Build Coastguard Worker ctor public PlaybackSeekDataProvider.ResultCallback(); 5150*344a7f5eSAndroid Build Coastguard Worker method public void onThumbnailLoaded(android.graphics.Bitmap, int); 5151*344a7f5eSAndroid Build Coastguard Worker } 5152*344a7f5eSAndroid Build Coastguard Worker 5153*344a7f5eSAndroid Build Coastguard Worker public abstract interface PlaybackSeekUi { 5154*344a7f5eSAndroid Build Coastguard Worker method public abstract void setPlaybackSeekUiClient(android.support.v17.leanback.widget.PlaybackSeekUi.Client); 5155*344a7f5eSAndroid Build Coastguard Worker } 5156*344a7f5eSAndroid Build Coastguard Worker 5157*344a7f5eSAndroid Build Coastguard Worker public static class PlaybackSeekUi.Client { 5158*344a7f5eSAndroid Build Coastguard Worker ctor public PlaybackSeekUi.Client(); 5159*344a7f5eSAndroid Build Coastguard Worker method public android.support.v17.leanback.widget.PlaybackSeekDataProvider getPlaybackSeekDataProvider(); 5160*344a7f5eSAndroid Build Coastguard Worker method public boolean isSeekEnabled(); 5161*344a7f5eSAndroid Build Coastguard Worker method public void onSeekFinished(boolean); 5162*344a7f5eSAndroid Build Coastguard Worker method public void onSeekPositionChanged(long); 5163*344a7f5eSAndroid Build Coastguard Worker method public void onSeekStarted(); 5164*344a7f5eSAndroid Build Coastguard Worker } 5165*344a7f5eSAndroid Build Coastguard Worker 5166*344a7f5eSAndroid Build Coastguard Worker public class PlaybackTransportRowPresenter extends android.support.v17.leanback.widget.PlaybackRowPresenter { 5167*344a7f5eSAndroid Build Coastguard Worker ctor public PlaybackTransportRowPresenter(); 5168*344a7f5eSAndroid Build Coastguard Worker method protected android.support.v17.leanback.widget.RowPresenter.ViewHolder createRowViewHolder(android.view.ViewGroup); 5169*344a7f5eSAndroid Build Coastguard Worker method public float getDefaultSeekIncrement(); 5170*344a7f5eSAndroid Build Coastguard Worker method public android.support.v17.leanback.widget.OnActionClickedListener getOnActionClickedListener(); 5171*344a7f5eSAndroid Build Coastguard Worker method public int getProgressColor(); 5172*344a7f5eSAndroid Build Coastguard Worker method protected void onProgressBarClicked(android.support.v17.leanback.widget.PlaybackTransportRowPresenter.ViewHolder); 5173*344a7f5eSAndroid Build Coastguard Worker method public void setDefaultSeekIncrement(float); 5174*344a7f5eSAndroid Build Coastguard Worker method public void setDescriptionPresenter(android.support.v17.leanback.widget.Presenter); 5175*344a7f5eSAndroid Build Coastguard Worker method public void setOnActionClickedListener(android.support.v17.leanback.widget.OnActionClickedListener); 5176*344a7f5eSAndroid Build Coastguard Worker method public void setProgressColor(int); 5177*344a7f5eSAndroid Build Coastguard Worker } 5178*344a7f5eSAndroid Build Coastguard Worker 5179*344a7f5eSAndroid Build Coastguard Worker public class PlaybackTransportRowPresenter.ViewHolder extends android.support.v17.leanback.widget.PlaybackRowPresenter.ViewHolder implements android.support.v17.leanback.widget.PlaybackSeekUi { 5180*344a7f5eSAndroid Build Coastguard Worker ctor public PlaybackTransportRowPresenter.ViewHolder(android.view.View, android.support.v17.leanback.widget.Presenter); 5181*344a7f5eSAndroid Build Coastguard Worker method public final android.widget.TextView getCurrentPositionView(); 5182*344a7f5eSAndroid Build Coastguard Worker method public final android.support.v17.leanback.widget.Presenter.ViewHolder getDescriptionViewHolder(); 5183*344a7f5eSAndroid Build Coastguard Worker method public final android.widget.TextView getDurationView(); 5184*344a7f5eSAndroid Build Coastguard Worker method protected void onSetCurrentPositionLabel(long); 5185*344a7f5eSAndroid Build Coastguard Worker method protected void onSetDurationLabel(long); 5186*344a7f5eSAndroid Build Coastguard Worker method public void setPlaybackSeekUiClient(android.support.v17.leanback.widget.PlaybackSeekUi.Client); 5187*344a7f5eSAndroid Build Coastguard Worker } 5188*344a7f5eSAndroid Build Coastguard Worker 5189*344a7f5eSAndroid Build Coastguard Worker public abstract class Presenter implements android.support.v17.leanback.widget.FacetProvider { 5190*344a7f5eSAndroid Build Coastguard Worker ctor public Presenter(); 5191*344a7f5eSAndroid Build Coastguard Worker method protected static void cancelAnimationsRecursive(android.view.View); 5192*344a7f5eSAndroid Build Coastguard Worker method public final java.lang.Object getFacet(java.lang.Class<?>); 5193*344a7f5eSAndroid Build Coastguard Worker method public abstract void onBindViewHolder(android.support.v17.leanback.widget.Presenter.ViewHolder, java.lang.Object); 5194*344a7f5eSAndroid Build Coastguard Worker method public abstract android.support.v17.leanback.widget.Presenter.ViewHolder onCreateViewHolder(android.view.ViewGroup); 5195*344a7f5eSAndroid Build Coastguard Worker method public abstract void onUnbindViewHolder(android.support.v17.leanback.widget.Presenter.ViewHolder); 5196*344a7f5eSAndroid Build Coastguard Worker method public void onViewAttachedToWindow(android.support.v17.leanback.widget.Presenter.ViewHolder); 5197*344a7f5eSAndroid Build Coastguard Worker method public void onViewDetachedFromWindow(android.support.v17.leanback.widget.Presenter.ViewHolder); 5198*344a7f5eSAndroid Build Coastguard Worker method public final void setFacet(java.lang.Class<?>, java.lang.Object); 5199*344a7f5eSAndroid Build Coastguard Worker method public void setOnClickListener(android.support.v17.leanback.widget.Presenter.ViewHolder, android.view.View.OnClickListener); 5200*344a7f5eSAndroid Build Coastguard Worker } 5201*344a7f5eSAndroid Build Coastguard Worker 5202*344a7f5eSAndroid Build Coastguard Worker public static class Presenter.ViewHolder implements android.support.v17.leanback.widget.FacetProvider { 5203*344a7f5eSAndroid Build Coastguard Worker ctor public Presenter.ViewHolder(android.view.View); 5204*344a7f5eSAndroid Build Coastguard Worker method public final java.lang.Object getFacet(java.lang.Class<?>); 5205*344a7f5eSAndroid Build Coastguard Worker method public final void setFacet(java.lang.Class<?>, java.lang.Object); 5206*344a7f5eSAndroid Build Coastguard Worker field public final android.view.View view; 5207*344a7f5eSAndroid Build Coastguard Worker } 5208*344a7f5eSAndroid Build Coastguard Worker 5209*344a7f5eSAndroid Build Coastguard Worker public static abstract class Presenter.ViewHolderTask { 5210*344a7f5eSAndroid Build Coastguard Worker ctor public Presenter.ViewHolderTask(); 5211*344a7f5eSAndroid Build Coastguard Worker method public void run(android.support.v17.leanback.widget.Presenter.ViewHolder); 5212*344a7f5eSAndroid Build Coastguard Worker } 5213*344a7f5eSAndroid Build Coastguard Worker 5214*344a7f5eSAndroid Build Coastguard Worker public abstract class PresenterSelector { 5215*344a7f5eSAndroid Build Coastguard Worker ctor public PresenterSelector(); 5216*344a7f5eSAndroid Build Coastguard Worker method public abstract android.support.v17.leanback.widget.Presenter getPresenter(java.lang.Object); 5217*344a7f5eSAndroid Build Coastguard Worker method public android.support.v17.leanback.widget.Presenter[] getPresenters(); 5218*344a7f5eSAndroid Build Coastguard Worker } 5219*344a7f5eSAndroid Build Coastguard Worker 5220*344a7f5eSAndroid Build Coastguard Worker public abstract class PresenterSwitcher { 5221*344a7f5eSAndroid Build Coastguard Worker ctor public PresenterSwitcher(); 5222*344a7f5eSAndroid Build Coastguard Worker method public void clear(); 5223*344a7f5eSAndroid Build Coastguard Worker method public final android.view.ViewGroup getParentViewGroup(); 5224*344a7f5eSAndroid Build Coastguard Worker method public void init(android.view.ViewGroup, android.support.v17.leanback.widget.PresenterSelector); 5225*344a7f5eSAndroid Build Coastguard Worker method protected abstract void insertView(android.view.View); 5226*344a7f5eSAndroid Build Coastguard Worker method protected void onViewSelected(android.view.View); 5227*344a7f5eSAndroid Build Coastguard Worker method public void select(java.lang.Object); 5228*344a7f5eSAndroid Build Coastguard Worker method protected void showView(android.view.View, boolean); 5229*344a7f5eSAndroid Build Coastguard Worker method public void unselect(); 5230*344a7f5eSAndroid Build Coastguard Worker } 5231*344a7f5eSAndroid Build Coastguard Worker 5232*344a7f5eSAndroid Build Coastguard Worker public class RecyclerViewParallax extends android.support.v17.leanback.widget.Parallax { 5233*344a7f5eSAndroid Build Coastguard Worker ctor public RecyclerViewParallax(); 5234*344a7f5eSAndroid Build Coastguard Worker method public android.support.v17.leanback.widget.RecyclerViewParallax.ChildPositionProperty createProperty(java.lang.String, int); 5235*344a7f5eSAndroid Build Coastguard Worker method public float getMaxValue(); 5236*344a7f5eSAndroid Build Coastguard Worker method public android.support.v7.widget.RecyclerView getRecyclerView(); 5237*344a7f5eSAndroid Build Coastguard Worker method public void setRecyclerView(android.support.v7.widget.RecyclerView); 5238*344a7f5eSAndroid Build Coastguard Worker } 5239*344a7f5eSAndroid Build Coastguard Worker 5240*344a7f5eSAndroid Build Coastguard Worker public static final class RecyclerViewParallax.ChildPositionProperty extends android.support.v17.leanback.widget.Parallax.IntProperty { 5241*344a7f5eSAndroid Build Coastguard Worker method public android.support.v17.leanback.widget.RecyclerViewParallax.ChildPositionProperty adapterPosition(int); 5242*344a7f5eSAndroid Build Coastguard Worker method public android.support.v17.leanback.widget.RecyclerViewParallax.ChildPositionProperty fraction(float); 5243*344a7f5eSAndroid Build Coastguard Worker method public int getAdapterPosition(); 5244*344a7f5eSAndroid Build Coastguard Worker method public float getFraction(); 5245*344a7f5eSAndroid Build Coastguard Worker method public int getOffset(); 5246*344a7f5eSAndroid Build Coastguard Worker method public int getViewId(); 5247*344a7f5eSAndroid Build Coastguard Worker method public android.support.v17.leanback.widget.RecyclerViewParallax.ChildPositionProperty offset(int); 5248*344a7f5eSAndroid Build Coastguard Worker method public android.support.v17.leanback.widget.RecyclerViewParallax.ChildPositionProperty viewId(int); 5249*344a7f5eSAndroid Build Coastguard Worker } 5250*344a7f5eSAndroid Build Coastguard Worker 5251*344a7f5eSAndroid Build Coastguard Worker public class Row { 5252*344a7f5eSAndroid Build Coastguard Worker ctor public Row(long, android.support.v17.leanback.widget.HeaderItem); 5253*344a7f5eSAndroid Build Coastguard Worker ctor public Row(android.support.v17.leanback.widget.HeaderItem); 5254*344a7f5eSAndroid Build Coastguard Worker ctor public Row(); 5255*344a7f5eSAndroid Build Coastguard Worker method public final android.support.v17.leanback.widget.HeaderItem getHeaderItem(); 5256*344a7f5eSAndroid Build Coastguard Worker method public final long getId(); 5257*344a7f5eSAndroid Build Coastguard Worker method public boolean isRenderedAsRowView(); 5258*344a7f5eSAndroid Build Coastguard Worker method public final void setHeaderItem(android.support.v17.leanback.widget.HeaderItem); 5259*344a7f5eSAndroid Build Coastguard Worker method public final void setId(long); 5260*344a7f5eSAndroid Build Coastguard Worker } 5261*344a7f5eSAndroid Build Coastguard Worker 5262*344a7f5eSAndroid Build Coastguard Worker public class RowHeaderPresenter extends android.support.v17.leanback.widget.Presenter { 5263*344a7f5eSAndroid Build Coastguard Worker ctor public RowHeaderPresenter(); 5264*344a7f5eSAndroid Build Coastguard Worker method protected static float getFontDescent(android.widget.TextView, android.graphics.Paint); 5265*344a7f5eSAndroid Build Coastguard Worker method public int getSpaceUnderBaseline(android.support.v17.leanback.widget.RowHeaderPresenter.ViewHolder); 5266*344a7f5eSAndroid Build Coastguard Worker method public boolean isNullItemVisibilityGone(); 5267*344a7f5eSAndroid Build Coastguard Worker method public void onBindViewHolder(android.support.v17.leanback.widget.Presenter.ViewHolder, java.lang.Object); 5268*344a7f5eSAndroid Build Coastguard Worker method public android.support.v17.leanback.widget.Presenter.ViewHolder onCreateViewHolder(android.view.ViewGroup); 5269*344a7f5eSAndroid Build Coastguard Worker method protected void onSelectLevelChanged(android.support.v17.leanback.widget.RowHeaderPresenter.ViewHolder); 5270*344a7f5eSAndroid Build Coastguard Worker method public void onUnbindViewHolder(android.support.v17.leanback.widget.Presenter.ViewHolder); 5271*344a7f5eSAndroid Build Coastguard Worker method public void setNullItemVisibilityGone(boolean); 5272*344a7f5eSAndroid Build Coastguard Worker method public final void setSelectLevel(android.support.v17.leanback.widget.RowHeaderPresenter.ViewHolder, float); 5273*344a7f5eSAndroid Build Coastguard Worker } 5274*344a7f5eSAndroid Build Coastguard Worker 5275*344a7f5eSAndroid Build Coastguard Worker public static class RowHeaderPresenter.ViewHolder extends android.support.v17.leanback.widget.Presenter.ViewHolder { 5276*344a7f5eSAndroid Build Coastguard Worker ctor public RowHeaderPresenter.ViewHolder(android.view.View); 5277*344a7f5eSAndroid Build Coastguard Worker method public final float getSelectLevel(); 5278*344a7f5eSAndroid Build Coastguard Worker } 5279*344a7f5eSAndroid Build Coastguard Worker 5280*344a7f5eSAndroid Build Coastguard Worker public final class RowHeaderView extends android.widget.TextView { 5281*344a7f5eSAndroid Build Coastguard Worker ctor public RowHeaderView(android.content.Context); 5282*344a7f5eSAndroid Build Coastguard Worker ctor public RowHeaderView(android.content.Context, android.util.AttributeSet); 5283*344a7f5eSAndroid Build Coastguard Worker ctor public RowHeaderView(android.content.Context, android.util.AttributeSet, int); 5284*344a7f5eSAndroid Build Coastguard Worker } 5285*344a7f5eSAndroid Build Coastguard Worker 5286*344a7f5eSAndroid Build Coastguard Worker public abstract class RowPresenter extends android.support.v17.leanback.widget.Presenter { 5287*344a7f5eSAndroid Build Coastguard Worker ctor public RowPresenter(); 5288*344a7f5eSAndroid Build Coastguard Worker method protected abstract android.support.v17.leanback.widget.RowPresenter.ViewHolder createRowViewHolder(android.view.ViewGroup); 5289*344a7f5eSAndroid Build Coastguard Worker method protected void dispatchItemSelectedListener(android.support.v17.leanback.widget.RowPresenter.ViewHolder, boolean); 5290*344a7f5eSAndroid Build Coastguard Worker method public void freeze(android.support.v17.leanback.widget.RowPresenter.ViewHolder, boolean); 5291*344a7f5eSAndroid Build Coastguard Worker method public final android.support.v17.leanback.widget.RowHeaderPresenter getHeaderPresenter(); 5292*344a7f5eSAndroid Build Coastguard Worker method public final android.support.v17.leanback.widget.RowPresenter.ViewHolder getRowViewHolder(android.support.v17.leanback.widget.Presenter.ViewHolder); 5293*344a7f5eSAndroid Build Coastguard Worker method public final boolean getSelectEffectEnabled(); 5294*344a7f5eSAndroid Build Coastguard Worker method public final float getSelectLevel(android.support.v17.leanback.widget.Presenter.ViewHolder); 5295*344a7f5eSAndroid Build Coastguard Worker method public final int getSyncActivatePolicy(); 5296*344a7f5eSAndroid Build Coastguard Worker method protected void initializeRowViewHolder(android.support.v17.leanback.widget.RowPresenter.ViewHolder); 5297*344a7f5eSAndroid Build Coastguard Worker method protected boolean isClippingChildren(); 5298*344a7f5eSAndroid Build Coastguard Worker method public boolean isUsingDefaultSelectEffect(); 5299*344a7f5eSAndroid Build Coastguard Worker method protected void onBindRowViewHolder(android.support.v17.leanback.widget.RowPresenter.ViewHolder, java.lang.Object); 5300*344a7f5eSAndroid Build Coastguard Worker method public final void onBindViewHolder(android.support.v17.leanback.widget.Presenter.ViewHolder, java.lang.Object); 5301*344a7f5eSAndroid Build Coastguard Worker method public final android.support.v17.leanback.widget.Presenter.ViewHolder onCreateViewHolder(android.view.ViewGroup); 5302*344a7f5eSAndroid Build Coastguard Worker method protected void onRowViewAttachedToWindow(android.support.v17.leanback.widget.RowPresenter.ViewHolder); 5303*344a7f5eSAndroid Build Coastguard Worker method protected void onRowViewDetachedFromWindow(android.support.v17.leanback.widget.RowPresenter.ViewHolder); 5304*344a7f5eSAndroid Build Coastguard Worker method protected void onRowViewExpanded(android.support.v17.leanback.widget.RowPresenter.ViewHolder, boolean); 5305*344a7f5eSAndroid Build Coastguard Worker method protected void onRowViewSelected(android.support.v17.leanback.widget.RowPresenter.ViewHolder, boolean); 5306*344a7f5eSAndroid Build Coastguard Worker method protected void onSelectLevelChanged(android.support.v17.leanback.widget.RowPresenter.ViewHolder); 5307*344a7f5eSAndroid Build Coastguard Worker method protected void onUnbindRowViewHolder(android.support.v17.leanback.widget.RowPresenter.ViewHolder); 5308*344a7f5eSAndroid Build Coastguard Worker method public final void onUnbindViewHolder(android.support.v17.leanback.widget.Presenter.ViewHolder); 5309*344a7f5eSAndroid Build Coastguard Worker method public final void onViewAttachedToWindow(android.support.v17.leanback.widget.Presenter.ViewHolder); 5310*344a7f5eSAndroid Build Coastguard Worker method public final void onViewDetachedFromWindow(android.support.v17.leanback.widget.Presenter.ViewHolder); 5311*344a7f5eSAndroid Build Coastguard Worker method public void setEntranceTransitionState(android.support.v17.leanback.widget.RowPresenter.ViewHolder, boolean); 5312*344a7f5eSAndroid Build Coastguard Worker method public final void setHeaderPresenter(android.support.v17.leanback.widget.RowHeaderPresenter); 5313*344a7f5eSAndroid Build Coastguard Worker method public final void setRowViewExpanded(android.support.v17.leanback.widget.Presenter.ViewHolder, boolean); 5314*344a7f5eSAndroid Build Coastguard Worker method public final void setRowViewSelected(android.support.v17.leanback.widget.Presenter.ViewHolder, boolean); 5315*344a7f5eSAndroid Build Coastguard Worker method public final void setSelectEffectEnabled(boolean); 5316*344a7f5eSAndroid Build Coastguard Worker method public final void setSelectLevel(android.support.v17.leanback.widget.Presenter.ViewHolder, float); 5317*344a7f5eSAndroid Build Coastguard Worker method public final void setSyncActivatePolicy(int); 5318*344a7f5eSAndroid Build Coastguard Worker field public static final int SYNC_ACTIVATED_CUSTOM = 0; // 0x0 5319*344a7f5eSAndroid Build Coastguard Worker field public static final int SYNC_ACTIVATED_TO_EXPANDED = 1; // 0x1 5320*344a7f5eSAndroid Build Coastguard Worker field public static final int SYNC_ACTIVATED_TO_EXPANDED_AND_SELECTED = 3; // 0x3 5321*344a7f5eSAndroid Build Coastguard Worker field public static final int SYNC_ACTIVATED_TO_SELECTED = 2; // 0x2 5322*344a7f5eSAndroid Build Coastguard Worker } 5323*344a7f5eSAndroid Build Coastguard Worker 5324*344a7f5eSAndroid Build Coastguard Worker public static class RowPresenter.ViewHolder extends android.support.v17.leanback.widget.Presenter.ViewHolder { 5325*344a7f5eSAndroid Build Coastguard Worker ctor public RowPresenter.ViewHolder(android.view.View); 5326*344a7f5eSAndroid Build Coastguard Worker method public final android.support.v17.leanback.widget.RowHeaderPresenter.ViewHolder getHeaderViewHolder(); 5327*344a7f5eSAndroid Build Coastguard Worker method public final android.support.v17.leanback.widget.BaseOnItemViewClickedListener getOnItemViewClickedListener(); 5328*344a7f5eSAndroid Build Coastguard Worker method public final android.support.v17.leanback.widget.BaseOnItemViewSelectedListener getOnItemViewSelectedListener(); 5329*344a7f5eSAndroid Build Coastguard Worker method public android.view.View.OnKeyListener getOnKeyListener(); 5330*344a7f5eSAndroid Build Coastguard Worker method public final android.support.v17.leanback.widget.Row getRow(); 5331*344a7f5eSAndroid Build Coastguard Worker method public final java.lang.Object getRowObject(); 5332*344a7f5eSAndroid Build Coastguard Worker method public final float getSelectLevel(); 5333*344a7f5eSAndroid Build Coastguard Worker method public java.lang.Object getSelectedItem(); 5334*344a7f5eSAndroid Build Coastguard Worker method public android.support.v17.leanback.widget.Presenter.ViewHolder getSelectedItemViewHolder(); 5335*344a7f5eSAndroid Build Coastguard Worker method public final boolean isExpanded(); 5336*344a7f5eSAndroid Build Coastguard Worker method public final boolean isSelected(); 5337*344a7f5eSAndroid Build Coastguard Worker method public final void setActivated(boolean); 5338*344a7f5eSAndroid Build Coastguard Worker method public final void setOnItemViewClickedListener(android.support.v17.leanback.widget.BaseOnItemViewClickedListener); 5339*344a7f5eSAndroid Build Coastguard Worker method public final void setOnItemViewSelectedListener(android.support.v17.leanback.widget.BaseOnItemViewSelectedListener); 5340*344a7f5eSAndroid Build Coastguard Worker method public void setOnKeyListener(android.view.View.OnKeyListener); 5341*344a7f5eSAndroid Build Coastguard Worker method public final void syncActivatedStatus(android.view.View); 5342*344a7f5eSAndroid Build Coastguard Worker field protected final android.support.v17.leanback.graphics.ColorOverlayDimmer mColorDimmer; 5343*344a7f5eSAndroid Build Coastguard Worker } 5344*344a7f5eSAndroid Build Coastguard Worker 5345*344a7f5eSAndroid Build Coastguard Worker public class SearchBar extends android.widget.RelativeLayout { 5346*344a7f5eSAndroid Build Coastguard Worker ctor public SearchBar(android.content.Context); 5347*344a7f5eSAndroid Build Coastguard Worker ctor public SearchBar(android.content.Context, android.util.AttributeSet); 5348*344a7f5eSAndroid Build Coastguard Worker ctor public SearchBar(android.content.Context, android.util.AttributeSet, int); 5349*344a7f5eSAndroid Build Coastguard Worker method public void displayCompletions(java.util.List<java.lang.String>); 5350*344a7f5eSAndroid Build Coastguard Worker method public void displayCompletions(android.view.inputmethod.CompletionInfo[]); 5351*344a7f5eSAndroid Build Coastguard Worker method public android.graphics.drawable.Drawable getBadgeDrawable(); 5352*344a7f5eSAndroid Build Coastguard Worker method public java.lang.CharSequence getHint(); 5353*344a7f5eSAndroid Build Coastguard Worker method public java.lang.String getTitle(); 5354*344a7f5eSAndroid Build Coastguard Worker method public boolean isRecognizing(); 5355*344a7f5eSAndroid Build Coastguard Worker method public void setBadgeDrawable(android.graphics.drawable.Drawable); 5356*344a7f5eSAndroid Build Coastguard Worker method public void setPermissionListener(android.support.v17.leanback.widget.SearchBar.SearchBarPermissionListener); 5357*344a7f5eSAndroid Build Coastguard Worker method public void setSearchAffordanceColors(android.support.v17.leanback.widget.SearchOrbView.Colors); 5358*344a7f5eSAndroid Build Coastguard Worker method public void setSearchAffordanceColorsInListening(android.support.v17.leanback.widget.SearchOrbView.Colors); 5359*344a7f5eSAndroid Build Coastguard Worker method public void setSearchBarListener(android.support.v17.leanback.widget.SearchBar.SearchBarListener); 5360*344a7f5eSAndroid Build Coastguard Worker method public void setSearchQuery(java.lang.String); 5361*344a7f5eSAndroid Build Coastguard Worker method public void setSpeechRecognitionCallback(android.support.v17.leanback.widget.SpeechRecognitionCallback); 5362*344a7f5eSAndroid Build Coastguard Worker method public void setSpeechRecognizer(android.speech.SpeechRecognizer); 5363*344a7f5eSAndroid Build Coastguard Worker method public void setTitle(java.lang.String); 5364*344a7f5eSAndroid Build Coastguard Worker method public void startRecognition(); 5365*344a7f5eSAndroid Build Coastguard Worker method public void stopRecognition(); 5366*344a7f5eSAndroid Build Coastguard Worker } 5367*344a7f5eSAndroid Build Coastguard Worker 5368*344a7f5eSAndroid Build Coastguard Worker public static abstract interface SearchBar.SearchBarListener { 5369*344a7f5eSAndroid Build Coastguard Worker method public abstract void onKeyboardDismiss(java.lang.String); 5370*344a7f5eSAndroid Build Coastguard Worker method public abstract void onSearchQueryChange(java.lang.String); 5371*344a7f5eSAndroid Build Coastguard Worker method public abstract void onSearchQuerySubmit(java.lang.String); 5372*344a7f5eSAndroid Build Coastguard Worker } 5373*344a7f5eSAndroid Build Coastguard Worker 5374*344a7f5eSAndroid Build Coastguard Worker public static abstract interface SearchBar.SearchBarPermissionListener { 5375*344a7f5eSAndroid Build Coastguard Worker method public abstract void requestAudioPermission(); 5376*344a7f5eSAndroid Build Coastguard Worker } 5377*344a7f5eSAndroid Build Coastguard Worker 5378*344a7f5eSAndroid Build Coastguard Worker public class SearchEditText extends android.support.v17.leanback.widget.StreamingTextView { 5379*344a7f5eSAndroid Build Coastguard Worker ctor public SearchEditText(android.content.Context); 5380*344a7f5eSAndroid Build Coastguard Worker ctor public SearchEditText(android.content.Context, android.util.AttributeSet); 5381*344a7f5eSAndroid Build Coastguard Worker ctor public SearchEditText(android.content.Context, android.util.AttributeSet, int); 5382*344a7f5eSAndroid Build Coastguard Worker method public void setOnKeyboardDismissListener(android.support.v17.leanback.widget.SearchEditText.OnKeyboardDismissListener); 5383*344a7f5eSAndroid Build Coastguard Worker } 5384*344a7f5eSAndroid Build Coastguard Worker 5385*344a7f5eSAndroid Build Coastguard Worker public static abstract interface SearchEditText.OnKeyboardDismissListener { 5386*344a7f5eSAndroid Build Coastguard Worker method public abstract void onKeyboardDismiss(); 5387*344a7f5eSAndroid Build Coastguard Worker } 5388*344a7f5eSAndroid Build Coastguard Worker 5389*344a7f5eSAndroid Build Coastguard Worker public class SearchOrbView extends android.widget.FrameLayout implements android.view.View.OnClickListener { 5390*344a7f5eSAndroid Build Coastguard Worker ctor public SearchOrbView(android.content.Context); 5391*344a7f5eSAndroid Build Coastguard Worker ctor public SearchOrbView(android.content.Context, android.util.AttributeSet); 5392*344a7f5eSAndroid Build Coastguard Worker ctor public SearchOrbView(android.content.Context, android.util.AttributeSet, int); 5393*344a7f5eSAndroid Build Coastguard Worker method public void enableOrbColorAnimation(boolean); 5394*344a7f5eSAndroid Build Coastguard Worker method public int getOrbColor(); 5395*344a7f5eSAndroid Build Coastguard Worker method public android.support.v17.leanback.widget.SearchOrbView.Colors getOrbColors(); 5396*344a7f5eSAndroid Build Coastguard Worker method public android.graphics.drawable.Drawable getOrbIcon(); 5397*344a7f5eSAndroid Build Coastguard Worker method public void onClick(android.view.View); 5398*344a7f5eSAndroid Build Coastguard Worker method public void setOnOrbClickedListener(android.view.View.OnClickListener); 5399*344a7f5eSAndroid Build Coastguard Worker method public void setOrbColor(int); 5400*344a7f5eSAndroid Build Coastguard Worker method public deprecated void setOrbColor(int, int); 5401*344a7f5eSAndroid Build Coastguard Worker method public void setOrbColors(android.support.v17.leanback.widget.SearchOrbView.Colors); 5402*344a7f5eSAndroid Build Coastguard Worker method public void setOrbIcon(android.graphics.drawable.Drawable); 5403*344a7f5eSAndroid Build Coastguard Worker } 5404*344a7f5eSAndroid Build Coastguard Worker 5405*344a7f5eSAndroid Build Coastguard Worker public static class SearchOrbView.Colors { 5406*344a7f5eSAndroid Build Coastguard Worker ctor public SearchOrbView.Colors(int); 5407*344a7f5eSAndroid Build Coastguard Worker ctor public SearchOrbView.Colors(int, int); 5408*344a7f5eSAndroid Build Coastguard Worker ctor public SearchOrbView.Colors(int, int, int); 5409*344a7f5eSAndroid Build Coastguard Worker method public static int getBrightColor(int); 5410*344a7f5eSAndroid Build Coastguard Worker field public int brightColor; 5411*344a7f5eSAndroid Build Coastguard Worker field public int color; 5412*344a7f5eSAndroid Build Coastguard Worker field public int iconColor; 5413*344a7f5eSAndroid Build Coastguard Worker } 5414*344a7f5eSAndroid Build Coastguard Worker 5415*344a7f5eSAndroid Build Coastguard Worker public class SectionRow extends android.support.v17.leanback.widget.Row { 5416*344a7f5eSAndroid Build Coastguard Worker ctor public SectionRow(android.support.v17.leanback.widget.HeaderItem); 5417*344a7f5eSAndroid Build Coastguard Worker ctor public SectionRow(long, java.lang.String); 5418*344a7f5eSAndroid Build Coastguard Worker ctor public SectionRow(java.lang.String); 5419*344a7f5eSAndroid Build Coastguard Worker method public final boolean isRenderedAsRowView(); 5420*344a7f5eSAndroid Build Coastguard Worker } 5421*344a7f5eSAndroid Build Coastguard Worker 5422*344a7f5eSAndroid Build Coastguard Worker public class ShadowOverlayContainer extends android.widget.FrameLayout { 5423*344a7f5eSAndroid Build Coastguard Worker ctor public ShadowOverlayContainer(android.content.Context); 5424*344a7f5eSAndroid Build Coastguard Worker ctor public ShadowOverlayContainer(android.content.Context, android.util.AttributeSet); 5425*344a7f5eSAndroid Build Coastguard Worker ctor public ShadowOverlayContainer(android.content.Context, android.util.AttributeSet, int); 5426*344a7f5eSAndroid Build Coastguard Worker method public int getShadowType(); 5427*344a7f5eSAndroid Build Coastguard Worker method public android.view.View getWrappedView(); 5428*344a7f5eSAndroid Build Coastguard Worker method public deprecated void initialize(boolean, boolean); 5429*344a7f5eSAndroid Build Coastguard Worker method public deprecated void initialize(boolean, boolean, boolean); 5430*344a7f5eSAndroid Build Coastguard Worker method public static void prepareParentForShadow(android.view.ViewGroup); 5431*344a7f5eSAndroid Build Coastguard Worker method public void setOverlayColor(int); 5432*344a7f5eSAndroid Build Coastguard Worker method public void setShadowFocusLevel(float); 5433*344a7f5eSAndroid Build Coastguard Worker method public static boolean supportsDynamicShadow(); 5434*344a7f5eSAndroid Build Coastguard Worker method public static boolean supportsShadow(); 5435*344a7f5eSAndroid Build Coastguard Worker method public void useDynamicShadow(); 5436*344a7f5eSAndroid Build Coastguard Worker method public void useDynamicShadow(float, float); 5437*344a7f5eSAndroid Build Coastguard Worker method public void useStaticShadow(); 5438*344a7f5eSAndroid Build Coastguard Worker method public void wrap(android.view.View); 5439*344a7f5eSAndroid Build Coastguard Worker field public static final int SHADOW_DYNAMIC = 3; // 0x3 5440*344a7f5eSAndroid Build Coastguard Worker field public static final int SHADOW_NONE = 1; // 0x1 5441*344a7f5eSAndroid Build Coastguard Worker field public static final int SHADOW_STATIC = 2; // 0x2 5442*344a7f5eSAndroid Build Coastguard Worker } 5443*344a7f5eSAndroid Build Coastguard Worker 5444*344a7f5eSAndroid Build Coastguard Worker public final class ShadowOverlayHelper { 5445*344a7f5eSAndroid Build Coastguard Worker method public android.support.v17.leanback.widget.ShadowOverlayContainer createShadowOverlayContainer(android.content.Context); 5446*344a7f5eSAndroid Build Coastguard Worker method public int getShadowType(); 5447*344a7f5eSAndroid Build Coastguard Worker method public boolean needsOverlay(); 5448*344a7f5eSAndroid Build Coastguard Worker method public boolean needsRoundedCorner(); 5449*344a7f5eSAndroid Build Coastguard Worker method public boolean needsWrapper(); 5450*344a7f5eSAndroid Build Coastguard Worker method public void onViewCreated(android.view.View); 5451*344a7f5eSAndroid Build Coastguard Worker method public void prepareParentForShadow(android.view.ViewGroup); 5452*344a7f5eSAndroid Build Coastguard Worker method public static void setNoneWrapperOverlayColor(android.view.View, int); 5453*344a7f5eSAndroid Build Coastguard Worker method public static void setNoneWrapperShadowFocusLevel(android.view.View, float); 5454*344a7f5eSAndroid Build Coastguard Worker method public void setOverlayColor(android.view.View, int); 5455*344a7f5eSAndroid Build Coastguard Worker method public void setShadowFocusLevel(android.view.View, float); 5456*344a7f5eSAndroid Build Coastguard Worker method public static boolean supportsDynamicShadow(); 5457*344a7f5eSAndroid Build Coastguard Worker method public static boolean supportsForeground(); 5458*344a7f5eSAndroid Build Coastguard Worker method public static boolean supportsRoundedCorner(); 5459*344a7f5eSAndroid Build Coastguard Worker method public static boolean supportsShadow(); 5460*344a7f5eSAndroid Build Coastguard Worker field public static final int SHADOW_DYNAMIC = 3; // 0x3 5461*344a7f5eSAndroid Build Coastguard Worker field public static final int SHADOW_NONE = 1; // 0x1 5462*344a7f5eSAndroid Build Coastguard Worker field public static final int SHADOW_STATIC = 2; // 0x2 5463*344a7f5eSAndroid Build Coastguard Worker } 5464*344a7f5eSAndroid Build Coastguard Worker 5465*344a7f5eSAndroid Build Coastguard Worker public static final class ShadowOverlayHelper.Builder { 5466*344a7f5eSAndroid Build Coastguard Worker ctor public ShadowOverlayHelper.Builder(); 5467*344a7f5eSAndroid Build Coastguard Worker method public android.support.v17.leanback.widget.ShadowOverlayHelper build(android.content.Context); 5468*344a7f5eSAndroid Build Coastguard Worker method public android.support.v17.leanback.widget.ShadowOverlayHelper.Builder keepForegroundDrawable(boolean); 5469*344a7f5eSAndroid Build Coastguard Worker method public android.support.v17.leanback.widget.ShadowOverlayHelper.Builder needsOverlay(boolean); 5470*344a7f5eSAndroid Build Coastguard Worker method public android.support.v17.leanback.widget.ShadowOverlayHelper.Builder needsRoundedCorner(boolean); 5471*344a7f5eSAndroid Build Coastguard Worker method public android.support.v17.leanback.widget.ShadowOverlayHelper.Builder needsShadow(boolean); 5472*344a7f5eSAndroid Build Coastguard Worker method public android.support.v17.leanback.widget.ShadowOverlayHelper.Builder options(android.support.v17.leanback.widget.ShadowOverlayHelper.Options); 5473*344a7f5eSAndroid Build Coastguard Worker method public android.support.v17.leanback.widget.ShadowOverlayHelper.Builder preferZOrder(boolean); 5474*344a7f5eSAndroid Build Coastguard Worker } 5475*344a7f5eSAndroid Build Coastguard Worker 5476*344a7f5eSAndroid Build Coastguard Worker public static final class ShadowOverlayHelper.Options { 5477*344a7f5eSAndroid Build Coastguard Worker ctor public ShadowOverlayHelper.Options(); 5478*344a7f5eSAndroid Build Coastguard Worker method public android.support.v17.leanback.widget.ShadowOverlayHelper.Options dynamicShadowZ(float, float); 5479*344a7f5eSAndroid Build Coastguard Worker method public final float getDynamicShadowFocusedZ(); 5480*344a7f5eSAndroid Build Coastguard Worker method public final float getDynamicShadowUnfocusedZ(); 5481*344a7f5eSAndroid Build Coastguard Worker method public final int getRoundedCornerRadius(); 5482*344a7f5eSAndroid Build Coastguard Worker method public android.support.v17.leanback.widget.ShadowOverlayHelper.Options roundedCornerRadius(int); 5483*344a7f5eSAndroid Build Coastguard Worker field public static final android.support.v17.leanback.widget.ShadowOverlayHelper.Options DEFAULT; 5484*344a7f5eSAndroid Build Coastguard Worker } 5485*344a7f5eSAndroid Build Coastguard Worker 5486*344a7f5eSAndroid Build Coastguard Worker public final class SinglePresenterSelector extends android.support.v17.leanback.widget.PresenterSelector { 5487*344a7f5eSAndroid Build Coastguard Worker ctor public SinglePresenterSelector(android.support.v17.leanback.widget.Presenter); 5488*344a7f5eSAndroid Build Coastguard Worker method public android.support.v17.leanback.widget.Presenter getPresenter(java.lang.Object); 5489*344a7f5eSAndroid Build Coastguard Worker } 5490*344a7f5eSAndroid Build Coastguard Worker 5491*344a7f5eSAndroid Build Coastguard Worker public class SparseArrayObjectAdapter extends android.support.v17.leanback.widget.ObjectAdapter { 5492*344a7f5eSAndroid Build Coastguard Worker ctor public SparseArrayObjectAdapter(android.support.v17.leanback.widget.PresenterSelector); 5493*344a7f5eSAndroid Build Coastguard Worker ctor public SparseArrayObjectAdapter(android.support.v17.leanback.widget.Presenter); 5494*344a7f5eSAndroid Build Coastguard Worker ctor public SparseArrayObjectAdapter(); 5495*344a7f5eSAndroid Build Coastguard Worker method public void clear(int); 5496*344a7f5eSAndroid Build Coastguard Worker method public void clear(); 5497*344a7f5eSAndroid Build Coastguard Worker method public java.lang.Object get(int); 5498*344a7f5eSAndroid Build Coastguard Worker method public int indexOf(java.lang.Object); 5499*344a7f5eSAndroid Build Coastguard Worker method public int indexOf(int); 5500*344a7f5eSAndroid Build Coastguard Worker method public java.lang.Object lookup(int); 5501*344a7f5eSAndroid Build Coastguard Worker method public void notifyArrayItemRangeChanged(int, int); 5502*344a7f5eSAndroid Build Coastguard Worker method public void set(int, java.lang.Object); 5503*344a7f5eSAndroid Build Coastguard Worker method public int size(); 5504*344a7f5eSAndroid Build Coastguard Worker } 5505*344a7f5eSAndroid Build Coastguard Worker 5506*344a7f5eSAndroid Build Coastguard Worker public class SpeechOrbView extends android.support.v17.leanback.widget.SearchOrbView { 5507*344a7f5eSAndroid Build Coastguard Worker ctor public SpeechOrbView(android.content.Context); 5508*344a7f5eSAndroid Build Coastguard Worker ctor public SpeechOrbView(android.content.Context, android.util.AttributeSet); 5509*344a7f5eSAndroid Build Coastguard Worker ctor public SpeechOrbView(android.content.Context, android.util.AttributeSet, int); 5510*344a7f5eSAndroid Build Coastguard Worker method public void setListeningOrbColors(android.support.v17.leanback.widget.SearchOrbView.Colors); 5511*344a7f5eSAndroid Build Coastguard Worker method public void setNotListeningOrbColors(android.support.v17.leanback.widget.SearchOrbView.Colors); 5512*344a7f5eSAndroid Build Coastguard Worker method public void setSoundLevel(int); 5513*344a7f5eSAndroid Build Coastguard Worker method public void showListening(); 5514*344a7f5eSAndroid Build Coastguard Worker method public void showNotListening(); 5515*344a7f5eSAndroid Build Coastguard Worker } 5516*344a7f5eSAndroid Build Coastguard Worker 5517*344a7f5eSAndroid Build Coastguard Worker public abstract interface SpeechRecognitionCallback { 5518*344a7f5eSAndroid Build Coastguard Worker method public abstract void recognizeSpeech(); 5519*344a7f5eSAndroid Build Coastguard Worker } 5520*344a7f5eSAndroid Build Coastguard Worker 5521*344a7f5eSAndroid Build Coastguard Worker class StreamingTextView extends android.widget.EditText { 5522*344a7f5eSAndroid Build Coastguard Worker ctor public StreamingTextView(android.content.Context, android.util.AttributeSet); 5523*344a7f5eSAndroid Build Coastguard Worker ctor public StreamingTextView(android.content.Context, android.util.AttributeSet, int); 5524*344a7f5eSAndroid Build Coastguard Worker method public static boolean isLayoutRtl(android.view.View); 5525*344a7f5eSAndroid Build Coastguard Worker method public void reset(); 5526*344a7f5eSAndroid Build Coastguard Worker method public void setFinalRecognizedText(java.lang.CharSequence); 5527*344a7f5eSAndroid Build Coastguard Worker method public void updateRecognizedText(java.lang.String, java.lang.String); 5528*344a7f5eSAndroid Build Coastguard Worker method public void updateRecognizedText(java.lang.String, java.util.List<java.lang.Float>); 5529*344a7f5eSAndroid Build Coastguard Worker } 5530*344a7f5eSAndroid Build Coastguard Worker 5531*344a7f5eSAndroid Build Coastguard Worker public class TitleHelper { 5532*344a7f5eSAndroid Build Coastguard Worker ctor public TitleHelper(android.view.ViewGroup, android.view.View); 5533*344a7f5eSAndroid Build Coastguard Worker method public android.support.v17.leanback.widget.BrowseFrameLayout.OnFocusSearchListener getOnFocusSearchListener(); 5534*344a7f5eSAndroid Build Coastguard Worker method public android.view.ViewGroup getSceneRoot(); 5535*344a7f5eSAndroid Build Coastguard Worker method public android.view.View getTitleView(); 5536*344a7f5eSAndroid Build Coastguard Worker method public void showTitle(boolean); 5537*344a7f5eSAndroid Build Coastguard Worker } 5538*344a7f5eSAndroid Build Coastguard Worker 5539*344a7f5eSAndroid Build Coastguard Worker public class TitleView extends android.widget.FrameLayout implements android.support.v17.leanback.widget.TitleViewAdapter.Provider { 5540*344a7f5eSAndroid Build Coastguard Worker ctor public TitleView(android.content.Context); 5541*344a7f5eSAndroid Build Coastguard Worker ctor public TitleView(android.content.Context, android.util.AttributeSet); 5542*344a7f5eSAndroid Build Coastguard Worker ctor public TitleView(android.content.Context, android.util.AttributeSet, int); 5543*344a7f5eSAndroid Build Coastguard Worker method public void enableAnimation(boolean); 5544*344a7f5eSAndroid Build Coastguard Worker method public android.graphics.drawable.Drawable getBadgeDrawable(); 5545*344a7f5eSAndroid Build Coastguard Worker method public android.support.v17.leanback.widget.SearchOrbView.Colors getSearchAffordanceColors(); 5546*344a7f5eSAndroid Build Coastguard Worker method public android.view.View getSearchAffordanceView(); 5547*344a7f5eSAndroid Build Coastguard Worker method public java.lang.CharSequence getTitle(); 5548*344a7f5eSAndroid Build Coastguard Worker method public android.support.v17.leanback.widget.TitleViewAdapter getTitleViewAdapter(); 5549*344a7f5eSAndroid Build Coastguard Worker method public void setBadgeDrawable(android.graphics.drawable.Drawable); 5550*344a7f5eSAndroid Build Coastguard Worker method public void setOnSearchClickedListener(android.view.View.OnClickListener); 5551*344a7f5eSAndroid Build Coastguard Worker method public void setSearchAffordanceColors(android.support.v17.leanback.widget.SearchOrbView.Colors); 5552*344a7f5eSAndroid Build Coastguard Worker method public void setTitle(java.lang.CharSequence); 5553*344a7f5eSAndroid Build Coastguard Worker method public void updateComponentsVisibility(int); 5554*344a7f5eSAndroid Build Coastguard Worker } 5555*344a7f5eSAndroid Build Coastguard Worker 5556*344a7f5eSAndroid Build Coastguard Worker public abstract class TitleViewAdapter { 5557*344a7f5eSAndroid Build Coastguard Worker ctor public TitleViewAdapter(); 5558*344a7f5eSAndroid Build Coastguard Worker method public android.graphics.drawable.Drawable getBadgeDrawable(); 5559*344a7f5eSAndroid Build Coastguard Worker method public android.support.v17.leanback.widget.SearchOrbView.Colors getSearchAffordanceColors(); 5560*344a7f5eSAndroid Build Coastguard Worker method public abstract android.view.View getSearchAffordanceView(); 5561*344a7f5eSAndroid Build Coastguard Worker method public java.lang.CharSequence getTitle(); 5562*344a7f5eSAndroid Build Coastguard Worker method public void setAnimationEnabled(boolean); 5563*344a7f5eSAndroid Build Coastguard Worker method public void setBadgeDrawable(android.graphics.drawable.Drawable); 5564*344a7f5eSAndroid Build Coastguard Worker method public void setOnSearchClickedListener(android.view.View.OnClickListener); 5565*344a7f5eSAndroid Build Coastguard Worker method public void setSearchAffordanceColors(android.support.v17.leanback.widget.SearchOrbView.Colors); 5566*344a7f5eSAndroid Build Coastguard Worker method public void setTitle(java.lang.CharSequence); 5567*344a7f5eSAndroid Build Coastguard Worker method public void updateComponentsVisibility(int); 5568*344a7f5eSAndroid Build Coastguard Worker field public static final int BRANDING_VIEW_VISIBLE = 2; // 0x2 5569*344a7f5eSAndroid Build Coastguard Worker field public static final int FULL_VIEW_VISIBLE = 6; // 0x6 5570*344a7f5eSAndroid Build Coastguard Worker field public static final int SEARCH_VIEW_VISIBLE = 4; // 0x4 5571*344a7f5eSAndroid Build Coastguard Worker } 5572*344a7f5eSAndroid Build Coastguard Worker 5573*344a7f5eSAndroid Build Coastguard Worker public static abstract interface TitleViewAdapter.Provider { 5574*344a7f5eSAndroid Build Coastguard Worker method public abstract android.support.v17.leanback.widget.TitleViewAdapter getTitleViewAdapter(); 5575*344a7f5eSAndroid Build Coastguard Worker } 5576*344a7f5eSAndroid Build Coastguard Worker 5577*344a7f5eSAndroid Build Coastguard Worker public class VerticalGridPresenter extends android.support.v17.leanback.widget.Presenter { 5578*344a7f5eSAndroid Build Coastguard Worker ctor public VerticalGridPresenter(); 5579*344a7f5eSAndroid Build Coastguard Worker ctor public VerticalGridPresenter(int); 5580*344a7f5eSAndroid Build Coastguard Worker ctor public VerticalGridPresenter(int, boolean); 5581*344a7f5eSAndroid Build Coastguard Worker method public final boolean areChildRoundedCornersEnabled(); 5582*344a7f5eSAndroid Build Coastguard Worker method protected android.support.v17.leanback.widget.VerticalGridPresenter.ViewHolder createGridViewHolder(android.view.ViewGroup); 5583*344a7f5eSAndroid Build Coastguard Worker method protected android.support.v17.leanback.widget.ShadowOverlayHelper.Options createShadowOverlayOptions(); 5584*344a7f5eSAndroid Build Coastguard Worker method public final void enableChildRoundedCorners(boolean); 5585*344a7f5eSAndroid Build Coastguard Worker method public final int getFocusZoomFactor(); 5586*344a7f5eSAndroid Build Coastguard Worker method public final boolean getKeepChildForeground(); 5587*344a7f5eSAndroid Build Coastguard Worker method public int getNumberOfColumns(); 5588*344a7f5eSAndroid Build Coastguard Worker method public final android.support.v17.leanback.widget.OnItemViewClickedListener getOnItemViewClickedListener(); 5589*344a7f5eSAndroid Build Coastguard Worker method public final android.support.v17.leanback.widget.OnItemViewSelectedListener getOnItemViewSelectedListener(); 5590*344a7f5eSAndroid Build Coastguard Worker method public final boolean getShadowEnabled(); 5591*344a7f5eSAndroid Build Coastguard Worker method protected void initializeGridViewHolder(android.support.v17.leanback.widget.VerticalGridPresenter.ViewHolder); 5592*344a7f5eSAndroid Build Coastguard Worker method public final boolean isFocusDimmerUsed(); 5593*344a7f5eSAndroid Build Coastguard Worker method public boolean isUsingDefaultShadow(); 5594*344a7f5eSAndroid Build Coastguard Worker method public boolean isUsingZOrder(android.content.Context); 5595*344a7f5eSAndroid Build Coastguard Worker method public void onBindViewHolder(android.support.v17.leanback.widget.Presenter.ViewHolder, java.lang.Object); 5596*344a7f5eSAndroid Build Coastguard Worker method public final android.support.v17.leanback.widget.VerticalGridPresenter.ViewHolder onCreateViewHolder(android.view.ViewGroup); 5597*344a7f5eSAndroid Build Coastguard Worker method public void onUnbindViewHolder(android.support.v17.leanback.widget.Presenter.ViewHolder); 5598*344a7f5eSAndroid Build Coastguard Worker method public void setEntranceTransitionState(android.support.v17.leanback.widget.VerticalGridPresenter.ViewHolder, boolean); 5599*344a7f5eSAndroid Build Coastguard Worker method public final void setKeepChildForeground(boolean); 5600*344a7f5eSAndroid Build Coastguard Worker method public void setNumberOfColumns(int); 5601*344a7f5eSAndroid Build Coastguard Worker method public final void setOnItemViewClickedListener(android.support.v17.leanback.widget.OnItemViewClickedListener); 5602*344a7f5eSAndroid Build Coastguard Worker method public final void setOnItemViewSelectedListener(android.support.v17.leanback.widget.OnItemViewSelectedListener); 5603*344a7f5eSAndroid Build Coastguard Worker method public final void setShadowEnabled(boolean); 5604*344a7f5eSAndroid Build Coastguard Worker } 5605*344a7f5eSAndroid Build Coastguard Worker 5606*344a7f5eSAndroid Build Coastguard Worker public static class VerticalGridPresenter.ViewHolder extends android.support.v17.leanback.widget.Presenter.ViewHolder { 5607*344a7f5eSAndroid Build Coastguard Worker ctor public VerticalGridPresenter.ViewHolder(android.support.v17.leanback.widget.VerticalGridView); 5608*344a7f5eSAndroid Build Coastguard Worker method public android.support.v17.leanback.widget.VerticalGridView getGridView(); 5609*344a7f5eSAndroid Build Coastguard Worker } 5610*344a7f5eSAndroid Build Coastguard Worker 5611*344a7f5eSAndroid Build Coastguard Worker public class VerticalGridView extends android.support.v17.leanback.widget.BaseGridView { 5612*344a7f5eSAndroid Build Coastguard Worker ctor public VerticalGridView(android.content.Context); 5613*344a7f5eSAndroid Build Coastguard Worker ctor public VerticalGridView(android.content.Context, android.util.AttributeSet); 5614*344a7f5eSAndroid Build Coastguard Worker ctor public VerticalGridView(android.content.Context, android.util.AttributeSet, int); 5615*344a7f5eSAndroid Build Coastguard Worker method protected void initAttributes(android.content.Context, android.util.AttributeSet); 5616*344a7f5eSAndroid Build Coastguard Worker method public void setColumnWidth(int); 5617*344a7f5eSAndroid Build Coastguard Worker method public void setNumColumns(int); 5618*344a7f5eSAndroid Build Coastguard Worker } 5619*344a7f5eSAndroid Build Coastguard Worker 5620*344a7f5eSAndroid Build Coastguard Worker public abstract interface ViewHolderTask { 5621*344a7f5eSAndroid Build Coastguard Worker method public abstract void run(android.support.v7.widget.RecyclerView.ViewHolder); 5622*344a7f5eSAndroid Build Coastguard Worker } 5623*344a7f5eSAndroid Build Coastguard Worker 5624*344a7f5eSAndroid Build Coastguard Worker} 5625*344a7f5eSAndroid Build Coastguard Worker 5626*344a7f5eSAndroid Build Coastguard Workerpackage android.support.v17.leanback.widget.picker { 5627*344a7f5eSAndroid Build Coastguard Worker 5628*344a7f5eSAndroid Build Coastguard Worker public class Picker extends android.widget.FrameLayout { 5629*344a7f5eSAndroid Build Coastguard Worker ctor public Picker(android.content.Context, android.util.AttributeSet, int); 5630*344a7f5eSAndroid Build Coastguard Worker method public void addOnValueChangedListener(android.support.v17.leanback.widget.picker.Picker.PickerValueListener); 5631*344a7f5eSAndroid Build Coastguard Worker method public float getActivatedVisibleItemCount(); 5632*344a7f5eSAndroid Build Coastguard Worker method public android.support.v17.leanback.widget.picker.PickerColumn getColumnAt(int); 5633*344a7f5eSAndroid Build Coastguard Worker method public int getColumnsCount(); 5634*344a7f5eSAndroid Build Coastguard Worker method protected int getPickerItemHeightPixels(); 5635*344a7f5eSAndroid Build Coastguard Worker method public final int getPickerItemLayoutId(); 5636*344a7f5eSAndroid Build Coastguard Worker method public final int getPickerItemTextViewId(); 5637*344a7f5eSAndroid Build Coastguard Worker method public int getSelectedColumn(); 5638*344a7f5eSAndroid Build Coastguard Worker method public final java.lang.CharSequence getSeparator(); 5639*344a7f5eSAndroid Build Coastguard Worker method public float getVisibleItemCount(); 5640*344a7f5eSAndroid Build Coastguard Worker method public void onColumnValueChanged(int, int); 5641*344a7f5eSAndroid Build Coastguard Worker method public void removeOnValueChangedListener(android.support.v17.leanback.widget.picker.Picker.PickerValueListener); 5642*344a7f5eSAndroid Build Coastguard Worker method public void setActivatedVisibleItemCount(float); 5643*344a7f5eSAndroid Build Coastguard Worker method public void setColumnAt(int, android.support.v17.leanback.widget.picker.PickerColumn); 5644*344a7f5eSAndroid Build Coastguard Worker method public void setColumnValue(int, int, boolean); 5645*344a7f5eSAndroid Build Coastguard Worker method public void setColumns(java.util.List<android.support.v17.leanback.widget.picker.PickerColumn>); 5646*344a7f5eSAndroid Build Coastguard Worker method public final void setPickerItemTextViewId(int); 5647*344a7f5eSAndroid Build Coastguard Worker method public void setSelectedColumn(int); 5648*344a7f5eSAndroid Build Coastguard Worker method public final void setSeparator(java.lang.CharSequence); 5649*344a7f5eSAndroid Build Coastguard Worker method public void setVisibleItemCount(float); 5650*344a7f5eSAndroid Build Coastguard Worker } 5651*344a7f5eSAndroid Build Coastguard Worker 5652*344a7f5eSAndroid Build Coastguard Worker public static abstract interface Picker.PickerValueListener { 5653*344a7f5eSAndroid Build Coastguard Worker method public abstract void onValueChanged(android.support.v17.leanback.widget.picker.Picker, int); 5654*344a7f5eSAndroid Build Coastguard Worker } 5655*344a7f5eSAndroid Build Coastguard Worker 5656*344a7f5eSAndroid Build Coastguard Worker public class PickerColumn { 5657*344a7f5eSAndroid Build Coastguard Worker ctor public PickerColumn(); 5658*344a7f5eSAndroid Build Coastguard Worker method public int getCount(); 5659*344a7f5eSAndroid Build Coastguard Worker method public int getCurrentValue(); 5660*344a7f5eSAndroid Build Coastguard Worker method public java.lang.CharSequence getLabelFor(int); 5661*344a7f5eSAndroid Build Coastguard Worker method public java.lang.String getLabelFormat(); 5662*344a7f5eSAndroid Build Coastguard Worker method public int getMaxValue(); 5663*344a7f5eSAndroid Build Coastguard Worker method public int getMinValue(); 5664*344a7f5eSAndroid Build Coastguard Worker method public java.lang.CharSequence[] getStaticLabels(); 5665*344a7f5eSAndroid Build Coastguard Worker method public void setCurrentValue(int); 5666*344a7f5eSAndroid Build Coastguard Worker method public void setLabelFormat(java.lang.String); 5667*344a7f5eSAndroid Build Coastguard Worker method public void setMaxValue(int); 5668*344a7f5eSAndroid Build Coastguard Worker method public void setMinValue(int); 5669*344a7f5eSAndroid Build Coastguard Worker method public void setStaticLabels(java.lang.CharSequence[]); 5670*344a7f5eSAndroid Build Coastguard Worker } 5671*344a7f5eSAndroid Build Coastguard Worker 5672*344a7f5eSAndroid Build Coastguard Worker public class TimePicker extends android.support.v17.leanback.widget.picker.Picker { 5673*344a7f5eSAndroid Build Coastguard Worker ctor public TimePicker(android.content.Context, android.util.AttributeSet); 5674*344a7f5eSAndroid Build Coastguard Worker ctor public TimePicker(android.content.Context, android.util.AttributeSet, int); 5675*344a7f5eSAndroid Build Coastguard Worker method public int getHour(); 5676*344a7f5eSAndroid Build Coastguard Worker method public int getMinute(); 5677*344a7f5eSAndroid Build Coastguard Worker method public boolean is24Hour(); 5678*344a7f5eSAndroid Build Coastguard Worker method public boolean isPm(); 5679*344a7f5eSAndroid Build Coastguard Worker method public void setHour(int); 5680*344a7f5eSAndroid Build Coastguard Worker method public void setIs24Hour(boolean); 5681*344a7f5eSAndroid Build Coastguard Worker method public void setMinute(int); 5682*344a7f5eSAndroid Build Coastguard Worker } 5683*344a7f5eSAndroid Build Coastguard Worker 5684*344a7f5eSAndroid Build Coastguard Worker} 5685*344a7f5eSAndroid Build Coastguard Worker 5686*344a7f5eSAndroid Build Coastguard Workerpackage android.support.v17.preference { 5687*344a7f5eSAndroid Build Coastguard Worker 5688*344a7f5eSAndroid Build Coastguard Worker public abstract class BaseLeanbackPreferenceFragment extends android.support.v14.preference.PreferenceFragment { 5689*344a7f5eSAndroid Build Coastguard Worker ctor public BaseLeanbackPreferenceFragment(); 5690*344a7f5eSAndroid Build Coastguard Worker } 5691*344a7f5eSAndroid Build Coastguard Worker 5692*344a7f5eSAndroid Build Coastguard Worker public class LeanbackListPreferenceDialogFragment extends android.support.v17.preference.LeanbackPreferenceDialogFragment { 5693*344a7f5eSAndroid Build Coastguard Worker ctor public LeanbackListPreferenceDialogFragment(); 5694*344a7f5eSAndroid Build Coastguard Worker method public static android.support.v17.preference.LeanbackListPreferenceDialogFragment newInstanceMulti(java.lang.String); 5695*344a7f5eSAndroid Build Coastguard Worker method public static android.support.v17.preference.LeanbackListPreferenceDialogFragment newInstanceSingle(java.lang.String); 5696*344a7f5eSAndroid Build Coastguard Worker method public android.support.v7.widget.RecyclerView.Adapter onCreateAdapter(); 5697*344a7f5eSAndroid Build Coastguard Worker } 5698*344a7f5eSAndroid Build Coastguard Worker 5699*344a7f5eSAndroid Build Coastguard Worker public class LeanbackListPreferenceDialogFragment.AdapterMulti extends android.support.v7.widget.RecyclerView.Adapter implements android.support.v17.preference.LeanbackListPreferenceDialogFragment.ViewHolder.OnItemClickListener { 5700*344a7f5eSAndroid Build Coastguard Worker ctor public LeanbackListPreferenceDialogFragment.AdapterMulti(java.lang.CharSequence[], java.lang.CharSequence[], java.util.Set<java.lang.String>); 5701*344a7f5eSAndroid Build Coastguard Worker method public int getItemCount(); 5702*344a7f5eSAndroid Build Coastguard Worker method public void onBindViewHolder(android.support.v17.preference.LeanbackListPreferenceDialogFragment.ViewHolder, int); 5703*344a7f5eSAndroid Build Coastguard Worker method public android.support.v17.preference.LeanbackListPreferenceDialogFragment.ViewHolder onCreateViewHolder(android.view.ViewGroup, int); 5704*344a7f5eSAndroid Build Coastguard Worker method public void onItemClick(android.support.v17.preference.LeanbackListPreferenceDialogFragment.ViewHolder); 5705*344a7f5eSAndroid Build Coastguard Worker } 5706*344a7f5eSAndroid Build Coastguard Worker 5707*344a7f5eSAndroid Build Coastguard Worker public class LeanbackListPreferenceDialogFragment.AdapterSingle extends android.support.v7.widget.RecyclerView.Adapter implements android.support.v17.preference.LeanbackListPreferenceDialogFragment.ViewHolder.OnItemClickListener { 5708*344a7f5eSAndroid Build Coastguard Worker ctor public LeanbackListPreferenceDialogFragment.AdapterSingle(java.lang.CharSequence[], java.lang.CharSequence[], java.lang.CharSequence); 5709*344a7f5eSAndroid Build Coastguard Worker method public int getItemCount(); 5710*344a7f5eSAndroid Build Coastguard Worker method public void onBindViewHolder(android.support.v17.preference.LeanbackListPreferenceDialogFragment.ViewHolder, int); 5711*344a7f5eSAndroid Build Coastguard Worker method public android.support.v17.preference.LeanbackListPreferenceDialogFragment.ViewHolder onCreateViewHolder(android.view.ViewGroup, int); 5712*344a7f5eSAndroid Build Coastguard Worker method public void onItemClick(android.support.v17.preference.LeanbackListPreferenceDialogFragment.ViewHolder); 5713*344a7f5eSAndroid Build Coastguard Worker } 5714*344a7f5eSAndroid Build Coastguard Worker 5715*344a7f5eSAndroid Build Coastguard Worker public static class LeanbackListPreferenceDialogFragment.ViewHolder extends android.support.v7.widget.RecyclerView.ViewHolder implements android.view.View.OnClickListener { 5716*344a7f5eSAndroid Build Coastguard Worker ctor public LeanbackListPreferenceDialogFragment.ViewHolder(android.view.View, android.support.v17.preference.LeanbackListPreferenceDialogFragment.ViewHolder.OnItemClickListener); 5717*344a7f5eSAndroid Build Coastguard Worker method public android.view.ViewGroup getContainer(); 5718*344a7f5eSAndroid Build Coastguard Worker method public android.widget.TextView getTitleView(); 5719*344a7f5eSAndroid Build Coastguard Worker method public android.widget.Checkable getWidgetView(); 5720*344a7f5eSAndroid Build Coastguard Worker method public void onClick(android.view.View); 5721*344a7f5eSAndroid Build Coastguard Worker } 5722*344a7f5eSAndroid Build Coastguard Worker 5723*344a7f5eSAndroid Build Coastguard Worker public static abstract interface LeanbackListPreferenceDialogFragment.ViewHolder.OnItemClickListener { 5724*344a7f5eSAndroid Build Coastguard Worker method public abstract void onItemClick(android.support.v17.preference.LeanbackListPreferenceDialogFragment.ViewHolder); 5725*344a7f5eSAndroid Build Coastguard Worker } 5726*344a7f5eSAndroid Build Coastguard Worker 5727*344a7f5eSAndroid Build Coastguard Worker public class LeanbackPreferenceDialogFragment extends android.app.Fragment { 5728*344a7f5eSAndroid Build Coastguard Worker ctor public LeanbackPreferenceDialogFragment(); 5729*344a7f5eSAndroid Build Coastguard Worker method public android.support.v7.preference.DialogPreference getPreference(); 5730*344a7f5eSAndroid Build Coastguard Worker field public static final java.lang.String ARG_KEY = "key"; 5731*344a7f5eSAndroid Build Coastguard Worker } 5732*344a7f5eSAndroid Build Coastguard Worker 5733*344a7f5eSAndroid Build Coastguard Worker public abstract class LeanbackPreferenceFragment extends android.support.v17.preference.BaseLeanbackPreferenceFragment { 5734*344a7f5eSAndroid Build Coastguard Worker ctor public LeanbackPreferenceFragment(); 5735*344a7f5eSAndroid Build Coastguard Worker method public void setTitle(java.lang.CharSequence); 5736*344a7f5eSAndroid Build Coastguard Worker } 5737*344a7f5eSAndroid Build Coastguard Worker 5738*344a7f5eSAndroid Build Coastguard Worker public abstract class LeanbackSettingsFragment extends android.app.Fragment implements android.support.v14.preference.PreferenceFragment.OnPreferenceDisplayDialogCallback android.support.v14.preference.PreferenceFragment.OnPreferenceStartFragmentCallback android.support.v14.preference.PreferenceFragment.OnPreferenceStartScreenCallback { 5739*344a7f5eSAndroid Build Coastguard Worker ctor public LeanbackSettingsFragment(); 5740*344a7f5eSAndroid Build Coastguard Worker method public boolean onPreferenceDisplayDialog(android.support.v14.preference.PreferenceFragment, android.support.v7.preference.Preference); 5741*344a7f5eSAndroid Build Coastguard Worker method public abstract void onPreferenceStartInitialScreen(); 5742*344a7f5eSAndroid Build Coastguard Worker method public void startImmersiveFragment(android.app.Fragment); 5743*344a7f5eSAndroid Build Coastguard Worker method public void startPreferenceFragment(android.app.Fragment); 5744*344a7f5eSAndroid Build Coastguard Worker } 5745*344a7f5eSAndroid Build Coastguard Worker 5746*344a7f5eSAndroid Build Coastguard Worker} 5747*344a7f5eSAndroid Build Coastguard Worker 5748*344a7f5eSAndroid Build Coastguard Workerpackage android.support.v4.accessibilityservice { 5749*344a7f5eSAndroid Build Coastguard Worker 5750*344a7f5eSAndroid Build Coastguard Worker public final class AccessibilityServiceInfoCompat { 5751*344a7f5eSAndroid Build Coastguard Worker method public static java.lang.String capabilityToString(int); 5752*344a7f5eSAndroid Build Coastguard Worker method public static java.lang.String feedbackTypeToString(int); 5753*344a7f5eSAndroid Build Coastguard Worker method public static java.lang.String flagToString(int); 5754*344a7f5eSAndroid Build Coastguard Worker method public static deprecated boolean getCanRetrieveWindowContent(android.accessibilityservice.AccessibilityServiceInfo); 5755*344a7f5eSAndroid Build Coastguard Worker method public static int getCapabilities(android.accessibilityservice.AccessibilityServiceInfo); 5756*344a7f5eSAndroid Build Coastguard Worker method public static deprecated java.lang.String getDescription(android.accessibilityservice.AccessibilityServiceInfo); 5757*344a7f5eSAndroid Build Coastguard Worker method public static deprecated java.lang.String getId(android.accessibilityservice.AccessibilityServiceInfo); 5758*344a7f5eSAndroid Build Coastguard Worker method public static deprecated android.content.pm.ResolveInfo getResolveInfo(android.accessibilityservice.AccessibilityServiceInfo); 5759*344a7f5eSAndroid Build Coastguard Worker method public static deprecated java.lang.String getSettingsActivityName(android.accessibilityservice.AccessibilityServiceInfo); 5760*344a7f5eSAndroid Build Coastguard Worker method public static java.lang.String loadDescription(android.accessibilityservice.AccessibilityServiceInfo, android.content.pm.PackageManager); 5761*344a7f5eSAndroid Build Coastguard Worker field public static final int CAPABILITY_CAN_FILTER_KEY_EVENTS = 8; // 0x8 5762*344a7f5eSAndroid Build Coastguard Worker field public static final int CAPABILITY_CAN_REQUEST_ENHANCED_WEB_ACCESSIBILITY = 4; // 0x4 5763*344a7f5eSAndroid Build Coastguard Worker field public static final int CAPABILITY_CAN_REQUEST_TOUCH_EXPLORATION = 2; // 0x2 5764*344a7f5eSAndroid Build Coastguard Worker field public static final int CAPABILITY_CAN_RETRIEVE_WINDOW_CONTENT = 1; // 0x1 5765*344a7f5eSAndroid Build Coastguard Worker field public static final deprecated int DEFAULT = 1; // 0x1 5766*344a7f5eSAndroid Build Coastguard Worker field public static final int FEEDBACK_ALL_MASK = -1; // 0xffffffff 5767*344a7f5eSAndroid Build Coastguard Worker field public static final int FEEDBACK_BRAILLE = 32; // 0x20 5768*344a7f5eSAndroid Build Coastguard Worker field public static final int FLAG_INCLUDE_NOT_IMPORTANT_VIEWS = 2; // 0x2 5769*344a7f5eSAndroid Build Coastguard Worker field public static final int FLAG_REPORT_VIEW_IDS = 16; // 0x10 5770*344a7f5eSAndroid Build Coastguard Worker field public static final int FLAG_REQUEST_ENHANCED_WEB_ACCESSIBILITY = 8; // 0x8 5771*344a7f5eSAndroid Build Coastguard Worker field public static final int FLAG_REQUEST_FILTER_KEY_EVENTS = 32; // 0x20 5772*344a7f5eSAndroid Build Coastguard Worker field public static final int FLAG_REQUEST_TOUCH_EXPLORATION_MODE = 4; // 0x4 5773*344a7f5eSAndroid Build Coastguard Worker } 5774*344a7f5eSAndroid Build Coastguard Worker 5775*344a7f5eSAndroid Build Coastguard Worker} 5776*344a7f5eSAndroid Build Coastguard Worker 5777*344a7f5eSAndroid Build Coastguard Workerpackage android.support.v4.app { 5778*344a7f5eSAndroid Build Coastguard Worker 5779*344a7f5eSAndroid Build Coastguard Worker public deprecated class ActionBarDrawerToggle implements android.support.v4.widget.DrawerLayout.DrawerListener { 5780*344a7f5eSAndroid Build Coastguard Worker ctor public ActionBarDrawerToggle(android.app.Activity, android.support.v4.widget.DrawerLayout, int, int, int); 5781*344a7f5eSAndroid Build Coastguard Worker ctor public ActionBarDrawerToggle(android.app.Activity, android.support.v4.widget.DrawerLayout, boolean, int, int, int); 5782*344a7f5eSAndroid Build Coastguard Worker method public boolean isDrawerIndicatorEnabled(); 5783*344a7f5eSAndroid Build Coastguard Worker method public void onConfigurationChanged(android.content.res.Configuration); 5784*344a7f5eSAndroid Build Coastguard Worker method public void onDrawerClosed(android.view.View); 5785*344a7f5eSAndroid Build Coastguard Worker method public void onDrawerOpened(android.view.View); 5786*344a7f5eSAndroid Build Coastguard Worker method public void onDrawerSlide(android.view.View, float); 5787*344a7f5eSAndroid Build Coastguard Worker method public void onDrawerStateChanged(int); 5788*344a7f5eSAndroid Build Coastguard Worker method public boolean onOptionsItemSelected(android.view.MenuItem); 5789*344a7f5eSAndroid Build Coastguard Worker method public void setDrawerIndicatorEnabled(boolean); 5790*344a7f5eSAndroid Build Coastguard Worker method public void setHomeAsUpIndicator(android.graphics.drawable.Drawable); 5791*344a7f5eSAndroid Build Coastguard Worker method public void setHomeAsUpIndicator(int); 5792*344a7f5eSAndroid Build Coastguard Worker method public void syncState(); 5793*344a7f5eSAndroid Build Coastguard Worker } 5794*344a7f5eSAndroid Build Coastguard Worker 5795*344a7f5eSAndroid Build Coastguard Worker public static abstract deprecated interface ActionBarDrawerToggle.Delegate { 5796*344a7f5eSAndroid Build Coastguard Worker method public abstract android.graphics.drawable.Drawable getThemeUpIndicator(); 5797*344a7f5eSAndroid Build Coastguard Worker method public abstract void setActionBarDescription(int); 5798*344a7f5eSAndroid Build Coastguard Worker method public abstract void setActionBarUpIndicator(android.graphics.drawable.Drawable, int); 5799*344a7f5eSAndroid Build Coastguard Worker } 5800*344a7f5eSAndroid Build Coastguard Worker 5801*344a7f5eSAndroid Build Coastguard Worker public static abstract deprecated interface ActionBarDrawerToggle.DelegateProvider { 5802*344a7f5eSAndroid Build Coastguard Worker method public abstract android.support.v4.app.ActionBarDrawerToggle.Delegate getDrawerToggleDelegate(); 5803*344a7f5eSAndroid Build Coastguard Worker } 5804*344a7f5eSAndroid Build Coastguard Worker 5805*344a7f5eSAndroid Build Coastguard Worker public class ActivityCompat extends android.support.v4.content.ContextCompat { 5806*344a7f5eSAndroid Build Coastguard Worker ctor protected ActivityCompat(); 5807*344a7f5eSAndroid Build Coastguard Worker method public static void finishAffinity(android.app.Activity); 5808*344a7f5eSAndroid Build Coastguard Worker method public static void finishAfterTransition(android.app.Activity); 5809*344a7f5eSAndroid Build Coastguard Worker method public static android.net.Uri getReferrer(android.app.Activity); 5810*344a7f5eSAndroid Build Coastguard Worker method public static boolean invalidateOptionsMenu(android.app.Activity); 5811*344a7f5eSAndroid Build Coastguard Worker method public static void postponeEnterTransition(android.app.Activity); 5812*344a7f5eSAndroid Build Coastguard Worker method public static void requestPermissions(android.app.Activity, java.lang.String[], int); 5813*344a7f5eSAndroid Build Coastguard Worker method public static void setEnterSharedElementCallback(android.app.Activity, android.support.v4.app.SharedElementCallback); 5814*344a7f5eSAndroid Build Coastguard Worker method public static void setExitSharedElementCallback(android.app.Activity, android.support.v4.app.SharedElementCallback); 5815*344a7f5eSAndroid Build Coastguard Worker method public static boolean shouldShowRequestPermissionRationale(android.app.Activity, java.lang.String); 5816*344a7f5eSAndroid Build Coastguard Worker method public static void startActivityForResult(android.app.Activity, android.content.Intent, int, android.os.Bundle); 5817*344a7f5eSAndroid Build Coastguard Worker method public static void startIntentSenderForResult(android.app.Activity, android.content.IntentSender, int, android.content.Intent, int, int, int, android.os.Bundle) throws android.content.IntentSender.SendIntentException; 5818*344a7f5eSAndroid Build Coastguard Worker method public static void startPostponedEnterTransition(android.app.Activity); 5819*344a7f5eSAndroid Build Coastguard Worker } 5820*344a7f5eSAndroid Build Coastguard Worker 5821*344a7f5eSAndroid Build Coastguard Worker public static abstract interface ActivityCompat.OnRequestPermissionsResultCallback { 5822*344a7f5eSAndroid Build Coastguard Worker method public abstract void onRequestPermissionsResult(int, java.lang.String[], int[]); 5823*344a7f5eSAndroid Build Coastguard Worker } 5824*344a7f5eSAndroid Build Coastguard Worker 5825*344a7f5eSAndroid Build Coastguard Worker public final class ActivityManagerCompat { 5826*344a7f5eSAndroid Build Coastguard Worker method public static boolean isLowRamDevice(android.app.ActivityManager); 5827*344a7f5eSAndroid Build Coastguard Worker } 5828*344a7f5eSAndroid Build Coastguard Worker 5829*344a7f5eSAndroid Build Coastguard Worker public class ActivityOptionsCompat { 5830*344a7f5eSAndroid Build Coastguard Worker ctor protected ActivityOptionsCompat(); 5831*344a7f5eSAndroid Build Coastguard Worker method public android.graphics.Rect getLaunchBounds(); 5832*344a7f5eSAndroid Build Coastguard Worker method public static android.support.v4.app.ActivityOptionsCompat makeBasic(); 5833*344a7f5eSAndroid Build Coastguard Worker method public static android.support.v4.app.ActivityOptionsCompat makeClipRevealAnimation(android.view.View, int, int, int, int); 5834*344a7f5eSAndroid Build Coastguard Worker method public static android.support.v4.app.ActivityOptionsCompat makeCustomAnimation(android.content.Context, int, int); 5835*344a7f5eSAndroid Build Coastguard Worker method public static android.support.v4.app.ActivityOptionsCompat makeScaleUpAnimation(android.view.View, int, int, int, int); 5836*344a7f5eSAndroid Build Coastguard Worker method public static android.support.v4.app.ActivityOptionsCompat makeSceneTransitionAnimation(android.app.Activity, android.view.View, java.lang.String); 5837*344a7f5eSAndroid Build Coastguard Worker method public static android.support.v4.app.ActivityOptionsCompat makeSceneTransitionAnimation(android.app.Activity, android.support.v4.util.Pair<android.view.View, java.lang.String>...); 5838*344a7f5eSAndroid Build Coastguard Worker method public static android.support.v4.app.ActivityOptionsCompat makeTaskLaunchBehind(); 5839*344a7f5eSAndroid Build Coastguard Worker method public static android.support.v4.app.ActivityOptionsCompat makeThumbnailScaleUpAnimation(android.view.View, android.graphics.Bitmap, int, int); 5840*344a7f5eSAndroid Build Coastguard Worker method public void requestUsageTimeReport(android.app.PendingIntent); 5841*344a7f5eSAndroid Build Coastguard Worker method public android.support.v4.app.ActivityOptionsCompat setLaunchBounds(android.graphics.Rect); 5842*344a7f5eSAndroid Build Coastguard Worker method public android.os.Bundle toBundle(); 5843*344a7f5eSAndroid Build Coastguard Worker method public void update(android.support.v4.app.ActivityOptionsCompat); 5844*344a7f5eSAndroid Build Coastguard Worker field public static final java.lang.String EXTRA_USAGE_TIME_REPORT = "android.activity.usage_time"; 5845*344a7f5eSAndroid Build Coastguard Worker field public static final java.lang.String EXTRA_USAGE_TIME_REPORT_PACKAGES = "android.usage_time_packages"; 5846*344a7f5eSAndroid Build Coastguard Worker } 5847*344a7f5eSAndroid Build Coastguard Worker 5848*344a7f5eSAndroid Build Coastguard Worker public final class AlarmManagerCompat { 5849*344a7f5eSAndroid Build Coastguard Worker method public static void setAlarmClock(android.app.AlarmManager, long, android.app.PendingIntent, android.app.PendingIntent); 5850*344a7f5eSAndroid Build Coastguard Worker method public static void setAndAllowWhileIdle(android.app.AlarmManager, int, long, android.app.PendingIntent); 5851*344a7f5eSAndroid Build Coastguard Worker method public static void setExact(android.app.AlarmManager, int, long, android.app.PendingIntent); 5852*344a7f5eSAndroid Build Coastguard Worker method public static void setExactAndAllowWhileIdle(android.app.AlarmManager, int, long, android.app.PendingIntent); 5853*344a7f5eSAndroid Build Coastguard Worker } 5854*344a7f5eSAndroid Build Coastguard Worker 5855*344a7f5eSAndroid Build Coastguard Worker public class AppLaunchChecker { 5856*344a7f5eSAndroid Build Coastguard Worker ctor public AppLaunchChecker(); 5857*344a7f5eSAndroid Build Coastguard Worker method public static boolean hasStartedFromLauncher(android.content.Context); 5858*344a7f5eSAndroid Build Coastguard Worker method public static void onActivityCreate(android.app.Activity); 5859*344a7f5eSAndroid Build Coastguard Worker } 5860*344a7f5eSAndroid Build Coastguard Worker 5861*344a7f5eSAndroid Build Coastguard Worker public final class AppOpsManagerCompat { 5862*344a7f5eSAndroid Build Coastguard Worker method public static int noteOp(android.content.Context, java.lang.String, int, java.lang.String); 5863*344a7f5eSAndroid Build Coastguard Worker method public static int noteProxyOp(android.content.Context, java.lang.String, java.lang.String); 5864*344a7f5eSAndroid Build Coastguard Worker method public static java.lang.String permissionToOp(java.lang.String); 5865*344a7f5eSAndroid Build Coastguard Worker field public static final int MODE_ALLOWED = 0; // 0x0 5866*344a7f5eSAndroid Build Coastguard Worker field public static final int MODE_DEFAULT = 3; // 0x3 5867*344a7f5eSAndroid Build Coastguard Worker field public static final int MODE_IGNORED = 1; // 0x1 5868*344a7f5eSAndroid Build Coastguard Worker } 5869*344a7f5eSAndroid Build Coastguard Worker 5870*344a7f5eSAndroid Build Coastguard Worker public final class BundleCompat { 5871*344a7f5eSAndroid Build Coastguard Worker method public static android.os.IBinder getBinder(android.os.Bundle, java.lang.String); 5872*344a7f5eSAndroid Build Coastguard Worker method public static void putBinder(android.os.Bundle, java.lang.String, android.os.IBinder); 5873*344a7f5eSAndroid Build Coastguard Worker } 5874*344a7f5eSAndroid Build Coastguard Worker 5875*344a7f5eSAndroid Build Coastguard Worker public class DialogFragment extends android.support.v4.app.Fragment implements android.content.DialogInterface.OnCancelListener android.content.DialogInterface.OnDismissListener { 5876*344a7f5eSAndroid Build Coastguard Worker ctor public DialogFragment(); 5877*344a7f5eSAndroid Build Coastguard Worker method public void dismiss(); 5878*344a7f5eSAndroid Build Coastguard Worker method public void dismissAllowingStateLoss(); 5879*344a7f5eSAndroid Build Coastguard Worker method public android.app.Dialog getDialog(); 5880*344a7f5eSAndroid Build Coastguard Worker method public boolean getShowsDialog(); 5881*344a7f5eSAndroid Build Coastguard Worker method public int getTheme(); 5882*344a7f5eSAndroid Build Coastguard Worker method public boolean isCancelable(); 5883*344a7f5eSAndroid Build Coastguard Worker method public void onCancel(android.content.DialogInterface); 5884*344a7f5eSAndroid Build Coastguard Worker method public android.app.Dialog onCreateDialog(android.os.Bundle); 5885*344a7f5eSAndroid Build Coastguard Worker method public void onDismiss(android.content.DialogInterface); 5886*344a7f5eSAndroid Build Coastguard Worker method public void setCancelable(boolean); 5887*344a7f5eSAndroid Build Coastguard Worker method public void setShowsDialog(boolean); 5888*344a7f5eSAndroid Build Coastguard Worker method public void setStyle(int, int); 5889*344a7f5eSAndroid Build Coastguard Worker method public void show(android.support.v4.app.FragmentManager, java.lang.String); 5890*344a7f5eSAndroid Build Coastguard Worker method public int show(android.support.v4.app.FragmentTransaction, java.lang.String); 5891*344a7f5eSAndroid Build Coastguard Worker field public static final int STYLE_NORMAL = 0; // 0x0 5892*344a7f5eSAndroid Build Coastguard Worker field public static final int STYLE_NO_FRAME = 2; // 0x2 5893*344a7f5eSAndroid Build Coastguard Worker field public static final int STYLE_NO_INPUT = 3; // 0x3 5894*344a7f5eSAndroid Build Coastguard Worker field public static final int STYLE_NO_TITLE = 1; // 0x1 5895*344a7f5eSAndroid Build Coastguard Worker } 5896*344a7f5eSAndroid Build Coastguard Worker 5897*344a7f5eSAndroid Build Coastguard Worker public class Fragment implements android.content.ComponentCallbacks android.view.View.OnCreateContextMenuListener { 5898*344a7f5eSAndroid Build Coastguard Worker ctor public Fragment(); 5899*344a7f5eSAndroid Build Coastguard Worker method public void dump(java.lang.String, java.io.FileDescriptor, java.io.PrintWriter, java.lang.String[]); 5900*344a7f5eSAndroid Build Coastguard Worker method public final boolean equals(java.lang.Object); 5901*344a7f5eSAndroid Build Coastguard Worker method public final android.support.v4.app.FragmentActivity getActivity(); 5902*344a7f5eSAndroid Build Coastguard Worker method public boolean getAllowEnterTransitionOverlap(); 5903*344a7f5eSAndroid Build Coastguard Worker method public boolean getAllowReturnTransitionOverlap(); 5904*344a7f5eSAndroid Build Coastguard Worker method public final android.os.Bundle getArguments(); 5905*344a7f5eSAndroid Build Coastguard Worker method public final android.support.v4.app.FragmentManager getChildFragmentManager(); 5906*344a7f5eSAndroid Build Coastguard Worker method public android.content.Context getContext(); 5907*344a7f5eSAndroid Build Coastguard Worker method public java.lang.Object getEnterTransition(); 5908*344a7f5eSAndroid Build Coastguard Worker method public java.lang.Object getExitTransition(); 5909*344a7f5eSAndroid Build Coastguard Worker method public final android.support.v4.app.FragmentManager getFragmentManager(); 5910*344a7f5eSAndroid Build Coastguard Worker method public final java.lang.Object getHost(); 5911*344a7f5eSAndroid Build Coastguard Worker method public final int getId(); 5912*344a7f5eSAndroid Build Coastguard Worker method public final android.view.LayoutInflater getLayoutInflater(); 5913*344a7f5eSAndroid Build Coastguard Worker method public android.support.v4.app.LoaderManager getLoaderManager(); 5914*344a7f5eSAndroid Build Coastguard Worker method public final android.support.v4.app.Fragment getParentFragment(); 5915*344a7f5eSAndroid Build Coastguard Worker method public java.lang.Object getReenterTransition(); 5916*344a7f5eSAndroid Build Coastguard Worker method public final android.content.res.Resources getResources(); 5917*344a7f5eSAndroid Build Coastguard Worker method public final boolean getRetainInstance(); 5918*344a7f5eSAndroid Build Coastguard Worker method public java.lang.Object getReturnTransition(); 5919*344a7f5eSAndroid Build Coastguard Worker method public java.lang.Object getSharedElementEnterTransition(); 5920*344a7f5eSAndroid Build Coastguard Worker method public java.lang.Object getSharedElementReturnTransition(); 5921*344a7f5eSAndroid Build Coastguard Worker method public final java.lang.String getString(int); 5922*344a7f5eSAndroid Build Coastguard Worker method public final java.lang.String getString(int, java.lang.Object...); 5923*344a7f5eSAndroid Build Coastguard Worker method public final java.lang.String getTag(); 5924*344a7f5eSAndroid Build Coastguard Worker method public final android.support.v4.app.Fragment getTargetFragment(); 5925*344a7f5eSAndroid Build Coastguard Worker method public final int getTargetRequestCode(); 5926*344a7f5eSAndroid Build Coastguard Worker method public final java.lang.CharSequence getText(int); 5927*344a7f5eSAndroid Build Coastguard Worker method public boolean getUserVisibleHint(); 5928*344a7f5eSAndroid Build Coastguard Worker method public android.view.View getView(); 5929*344a7f5eSAndroid Build Coastguard Worker method public final int hashCode(); 5930*344a7f5eSAndroid Build Coastguard Worker method public static android.support.v4.app.Fragment instantiate(android.content.Context, java.lang.String); 5931*344a7f5eSAndroid Build Coastguard Worker method public static android.support.v4.app.Fragment instantiate(android.content.Context, java.lang.String, android.os.Bundle); 5932*344a7f5eSAndroid Build Coastguard Worker method public final boolean isAdded(); 5933*344a7f5eSAndroid Build Coastguard Worker method public final boolean isDetached(); 5934*344a7f5eSAndroid Build Coastguard Worker method public final boolean isHidden(); 5935*344a7f5eSAndroid Build Coastguard Worker method public final boolean isInLayout(); 5936*344a7f5eSAndroid Build Coastguard Worker method public final boolean isRemoving(); 5937*344a7f5eSAndroid Build Coastguard Worker method public final boolean isResumed(); 5938*344a7f5eSAndroid Build Coastguard Worker method public final boolean isStateSaved(); 5939*344a7f5eSAndroid Build Coastguard Worker method public final boolean isVisible(); 5940*344a7f5eSAndroid Build Coastguard Worker method public void onActivityCreated(android.os.Bundle); 5941*344a7f5eSAndroid Build Coastguard Worker method public void onActivityResult(int, int, android.content.Intent); 5942*344a7f5eSAndroid Build Coastguard Worker method public void onAttach(android.content.Context); 5943*344a7f5eSAndroid Build Coastguard Worker method public deprecated void onAttach(android.app.Activity); 5944*344a7f5eSAndroid Build Coastguard Worker method public void onAttachFragment(android.support.v4.app.Fragment); 5945*344a7f5eSAndroid Build Coastguard Worker method public void onConfigurationChanged(android.content.res.Configuration); 5946*344a7f5eSAndroid Build Coastguard Worker method public boolean onContextItemSelected(android.view.MenuItem); 5947*344a7f5eSAndroid Build Coastguard Worker method public void onCreate(android.os.Bundle); 5948*344a7f5eSAndroid Build Coastguard Worker method public android.view.animation.Animation onCreateAnimation(int, boolean, int); 5949*344a7f5eSAndroid Build Coastguard Worker method public android.animation.Animator onCreateAnimator(int, boolean, int); 5950*344a7f5eSAndroid Build Coastguard Worker method public void onCreateContextMenu(android.view.ContextMenu, android.view.View, android.view.ContextMenu.ContextMenuInfo); 5951*344a7f5eSAndroid Build Coastguard Worker method public void onCreateOptionsMenu(android.view.Menu, android.view.MenuInflater); 5952*344a7f5eSAndroid Build Coastguard Worker method public android.view.View onCreateView(android.view.LayoutInflater, android.view.ViewGroup, android.os.Bundle); 5953*344a7f5eSAndroid Build Coastguard Worker method public void onDestroy(); 5954*344a7f5eSAndroid Build Coastguard Worker method public void onDestroyOptionsMenu(); 5955*344a7f5eSAndroid Build Coastguard Worker method public void onDestroyView(); 5956*344a7f5eSAndroid Build Coastguard Worker method public void onDetach(); 5957*344a7f5eSAndroid Build Coastguard Worker method public android.view.LayoutInflater onGetLayoutInflater(android.os.Bundle); 5958*344a7f5eSAndroid Build Coastguard Worker method public void onHiddenChanged(boolean); 5959*344a7f5eSAndroid Build Coastguard Worker method public void onInflate(android.content.Context, android.util.AttributeSet, android.os.Bundle); 5960*344a7f5eSAndroid Build Coastguard Worker method public deprecated void onInflate(android.app.Activity, android.util.AttributeSet, android.os.Bundle); 5961*344a7f5eSAndroid Build Coastguard Worker method public void onLowMemory(); 5962*344a7f5eSAndroid Build Coastguard Worker method public void onMultiWindowModeChanged(boolean); 5963*344a7f5eSAndroid Build Coastguard Worker method public boolean onOptionsItemSelected(android.view.MenuItem); 5964*344a7f5eSAndroid Build Coastguard Worker method public void onOptionsMenuClosed(android.view.Menu); 5965*344a7f5eSAndroid Build Coastguard Worker method public void onPause(); 5966*344a7f5eSAndroid Build Coastguard Worker method public void onPictureInPictureModeChanged(boolean); 5967*344a7f5eSAndroid Build Coastguard Worker method public void onPrepareOptionsMenu(android.view.Menu); 5968*344a7f5eSAndroid Build Coastguard Worker method public void onRequestPermissionsResult(int, java.lang.String[], int[]); 5969*344a7f5eSAndroid Build Coastguard Worker method public void onResume(); 5970*344a7f5eSAndroid Build Coastguard Worker method public void onSaveInstanceState(android.os.Bundle); 5971*344a7f5eSAndroid Build Coastguard Worker method public void onStart(); 5972*344a7f5eSAndroid Build Coastguard Worker method public void onStop(); 5973*344a7f5eSAndroid Build Coastguard Worker method public void onViewCreated(android.view.View, android.os.Bundle); 5974*344a7f5eSAndroid Build Coastguard Worker method public void onViewStateRestored(android.os.Bundle); 5975*344a7f5eSAndroid Build Coastguard Worker method public void postponeEnterTransition(); 5976*344a7f5eSAndroid Build Coastguard Worker method public void registerForContextMenu(android.view.View); 5977*344a7f5eSAndroid Build Coastguard Worker method public final void requestPermissions(java.lang.String[], int); 5978*344a7f5eSAndroid Build Coastguard Worker method public void setAllowEnterTransitionOverlap(boolean); 5979*344a7f5eSAndroid Build Coastguard Worker method public void setAllowReturnTransitionOverlap(boolean); 5980*344a7f5eSAndroid Build Coastguard Worker method public void setArguments(android.os.Bundle); 5981*344a7f5eSAndroid Build Coastguard Worker method public void setEnterSharedElementCallback(android.support.v4.app.SharedElementCallback); 5982*344a7f5eSAndroid Build Coastguard Worker method public void setEnterTransition(java.lang.Object); 5983*344a7f5eSAndroid Build Coastguard Worker method public void setExitSharedElementCallback(android.support.v4.app.SharedElementCallback); 5984*344a7f5eSAndroid Build Coastguard Worker method public void setExitTransition(java.lang.Object); 5985*344a7f5eSAndroid Build Coastguard Worker method public void setHasOptionsMenu(boolean); 5986*344a7f5eSAndroid Build Coastguard Worker method public void setInitialSavedState(android.support.v4.app.Fragment.SavedState); 5987*344a7f5eSAndroid Build Coastguard Worker method public void setMenuVisibility(boolean); 5988*344a7f5eSAndroid Build Coastguard Worker method public void setReenterTransition(java.lang.Object); 5989*344a7f5eSAndroid Build Coastguard Worker method public void setRetainInstance(boolean); 5990*344a7f5eSAndroid Build Coastguard Worker method public void setReturnTransition(java.lang.Object); 5991*344a7f5eSAndroid Build Coastguard Worker method public void setSharedElementEnterTransition(java.lang.Object); 5992*344a7f5eSAndroid Build Coastguard Worker method public void setSharedElementReturnTransition(java.lang.Object); 5993*344a7f5eSAndroid Build Coastguard Worker method public void setTargetFragment(android.support.v4.app.Fragment, int); 5994*344a7f5eSAndroid Build Coastguard Worker method public void setUserVisibleHint(boolean); 5995*344a7f5eSAndroid Build Coastguard Worker method public boolean shouldShowRequestPermissionRationale(java.lang.String); 5996*344a7f5eSAndroid Build Coastguard Worker method public void startActivity(android.content.Intent); 5997*344a7f5eSAndroid Build Coastguard Worker method public void startActivity(android.content.Intent, android.os.Bundle); 5998*344a7f5eSAndroid Build Coastguard Worker method public void startActivityForResult(android.content.Intent, int); 5999*344a7f5eSAndroid Build Coastguard Worker method public void startActivityForResult(android.content.Intent, int, android.os.Bundle); 6000*344a7f5eSAndroid Build Coastguard Worker method public void startIntentSenderForResult(android.content.IntentSender, int, android.content.Intent, int, int, int, android.os.Bundle) throws android.content.IntentSender.SendIntentException; 6001*344a7f5eSAndroid Build Coastguard Worker method public void startPostponedEnterTransition(); 6002*344a7f5eSAndroid Build Coastguard Worker method public void unregisterForContextMenu(android.view.View); 6003*344a7f5eSAndroid Build Coastguard Worker } 6004*344a7f5eSAndroid Build Coastguard Worker 6005*344a7f5eSAndroid Build Coastguard Worker public static class Fragment.InstantiationException extends java.lang.RuntimeException { 6006*344a7f5eSAndroid Build Coastguard Worker ctor public Fragment.InstantiationException(java.lang.String, java.lang.Exception); 6007*344a7f5eSAndroid Build Coastguard Worker } 6008*344a7f5eSAndroid Build Coastguard Worker 6009*344a7f5eSAndroid Build Coastguard Worker public static class Fragment.SavedState implements android.os.Parcelable { 6010*344a7f5eSAndroid Build Coastguard Worker method public int describeContents(); 6011*344a7f5eSAndroid Build Coastguard Worker method public void writeToParcel(android.os.Parcel, int); 6012*344a7f5eSAndroid Build Coastguard Worker field public static final android.os.Parcelable.Creator<android.support.v4.app.Fragment.SavedState> CREATOR; 6013*344a7f5eSAndroid Build Coastguard Worker } 6014*344a7f5eSAndroid Build Coastguard Worker 6015*344a7f5eSAndroid Build Coastguard Worker public class FragmentActivity extends android.app.Activity implements android.support.v4.app.ActivityCompat.OnRequestPermissionsResultCallback { 6016*344a7f5eSAndroid Build Coastguard Worker ctor public FragmentActivity(); 6017*344a7f5eSAndroid Build Coastguard Worker method public java.lang.Object getLastCustomNonConfigurationInstance(); 6018*344a7f5eSAndroid Build Coastguard Worker method public android.support.v4.app.FragmentManager getSupportFragmentManager(); 6019*344a7f5eSAndroid Build Coastguard Worker method public android.support.v4.app.LoaderManager getSupportLoaderManager(); 6020*344a7f5eSAndroid Build Coastguard Worker method public void onAttachFragment(android.support.v4.app.Fragment); 6021*344a7f5eSAndroid Build Coastguard Worker method protected void onResumeFragments(); 6022*344a7f5eSAndroid Build Coastguard Worker method public java.lang.Object onRetainCustomNonConfigurationInstance(); 6023*344a7f5eSAndroid Build Coastguard Worker method public final java.lang.Object onRetainNonConfigurationInstance(); 6024*344a7f5eSAndroid Build Coastguard Worker method public void setEnterSharedElementCallback(android.support.v4.app.SharedElementCallback); 6025*344a7f5eSAndroid Build Coastguard Worker method public void setExitSharedElementCallback(android.support.v4.app.SharedElementCallback); 6026*344a7f5eSAndroid Build Coastguard Worker method public void startActivityFromFragment(android.support.v4.app.Fragment, android.content.Intent, int); 6027*344a7f5eSAndroid Build Coastguard Worker method public void startActivityFromFragment(android.support.v4.app.Fragment, android.content.Intent, int, android.os.Bundle); 6028*344a7f5eSAndroid Build Coastguard Worker method public void startIntentSenderFromFragment(android.support.v4.app.Fragment, android.content.IntentSender, int, android.content.Intent, int, int, int, android.os.Bundle) throws android.content.IntentSender.SendIntentException; 6029*344a7f5eSAndroid Build Coastguard Worker method public void supportFinishAfterTransition(); 6030*344a7f5eSAndroid Build Coastguard Worker method public deprecated void supportInvalidateOptionsMenu(); 6031*344a7f5eSAndroid Build Coastguard Worker method public void supportPostponeEnterTransition(); 6032*344a7f5eSAndroid Build Coastguard Worker method public void supportStartPostponedEnterTransition(); 6033*344a7f5eSAndroid Build Coastguard Worker method public final void validateRequestPermissionsRequestCode(int); 6034*344a7f5eSAndroid Build Coastguard Worker } 6035*344a7f5eSAndroid Build Coastguard Worker 6036*344a7f5eSAndroid Build Coastguard Worker public abstract class FragmentContainer { 6037*344a7f5eSAndroid Build Coastguard Worker ctor public FragmentContainer(); 6038*344a7f5eSAndroid Build Coastguard Worker method public android.support.v4.app.Fragment instantiate(android.content.Context, java.lang.String, android.os.Bundle); 6039*344a7f5eSAndroid Build Coastguard Worker method public abstract android.view.View onFindViewById(int); 6040*344a7f5eSAndroid Build Coastguard Worker method public abstract boolean onHasView(); 6041*344a7f5eSAndroid Build Coastguard Worker } 6042*344a7f5eSAndroid Build Coastguard Worker 6043*344a7f5eSAndroid Build Coastguard Worker public class FragmentController { 6044*344a7f5eSAndroid Build Coastguard Worker method public void attachHost(android.support.v4.app.Fragment); 6045*344a7f5eSAndroid Build Coastguard Worker method public static final android.support.v4.app.FragmentController createController(android.support.v4.app.FragmentHostCallback<?>); 6046*344a7f5eSAndroid Build Coastguard Worker method public void dispatchActivityCreated(); 6047*344a7f5eSAndroid Build Coastguard Worker method public void dispatchConfigurationChanged(android.content.res.Configuration); 6048*344a7f5eSAndroid Build Coastguard Worker method public boolean dispatchContextItemSelected(android.view.MenuItem); 6049*344a7f5eSAndroid Build Coastguard Worker method public void dispatchCreate(); 6050*344a7f5eSAndroid Build Coastguard Worker method public boolean dispatchCreateOptionsMenu(android.view.Menu, android.view.MenuInflater); 6051*344a7f5eSAndroid Build Coastguard Worker method public void dispatchDestroy(); 6052*344a7f5eSAndroid Build Coastguard Worker method public void dispatchDestroyView(); 6053*344a7f5eSAndroid Build Coastguard Worker method public void dispatchLowMemory(); 6054*344a7f5eSAndroid Build Coastguard Worker method public void dispatchMultiWindowModeChanged(boolean); 6055*344a7f5eSAndroid Build Coastguard Worker method public boolean dispatchOptionsItemSelected(android.view.MenuItem); 6056*344a7f5eSAndroid Build Coastguard Worker method public void dispatchOptionsMenuClosed(android.view.Menu); 6057*344a7f5eSAndroid Build Coastguard Worker method public void dispatchPause(); 6058*344a7f5eSAndroid Build Coastguard Worker method public void dispatchPictureInPictureModeChanged(boolean); 6059*344a7f5eSAndroid Build Coastguard Worker method public boolean dispatchPrepareOptionsMenu(android.view.Menu); 6060*344a7f5eSAndroid Build Coastguard Worker method public void dispatchReallyStop(); 6061*344a7f5eSAndroid Build Coastguard Worker method public void dispatchResume(); 6062*344a7f5eSAndroid Build Coastguard Worker method public void dispatchStart(); 6063*344a7f5eSAndroid Build Coastguard Worker method public void dispatchStop(); 6064*344a7f5eSAndroid Build Coastguard Worker method public void doLoaderDestroy(); 6065*344a7f5eSAndroid Build Coastguard Worker method public void doLoaderRetain(); 6066*344a7f5eSAndroid Build Coastguard Worker method public void doLoaderStart(); 6067*344a7f5eSAndroid Build Coastguard Worker method public void doLoaderStop(boolean); 6068*344a7f5eSAndroid Build Coastguard Worker method public void dumpLoaders(java.lang.String, java.io.FileDescriptor, java.io.PrintWriter, java.lang.String[]); 6069*344a7f5eSAndroid Build Coastguard Worker method public boolean execPendingActions(); 6070*344a7f5eSAndroid Build Coastguard Worker method public android.support.v4.app.Fragment findFragmentByWho(java.lang.String); 6071*344a7f5eSAndroid Build Coastguard Worker method public java.util.List<android.support.v4.app.Fragment> getActiveFragments(java.util.List<android.support.v4.app.Fragment>); 6072*344a7f5eSAndroid Build Coastguard Worker method public int getActiveFragmentsCount(); 6073*344a7f5eSAndroid Build Coastguard Worker method public android.support.v4.app.FragmentManager getSupportFragmentManager(); 6074*344a7f5eSAndroid Build Coastguard Worker method public android.support.v4.app.LoaderManager getSupportLoaderManager(); 6075*344a7f5eSAndroid Build Coastguard Worker method public void noteStateNotSaved(); 6076*344a7f5eSAndroid Build Coastguard Worker method public android.view.View onCreateView(android.view.View, java.lang.String, android.content.Context, android.util.AttributeSet); 6077*344a7f5eSAndroid Build Coastguard Worker method public void reportLoaderStart(); 6078*344a7f5eSAndroid Build Coastguard Worker method public deprecated void restoreAllState(android.os.Parcelable, java.util.List<android.support.v4.app.Fragment>); 6079*344a7f5eSAndroid Build Coastguard Worker method public void restoreAllState(android.os.Parcelable, android.support.v4.app.FragmentManagerNonConfig); 6080*344a7f5eSAndroid Build Coastguard Worker method public void restoreLoaderNonConfig(android.support.v4.util.SimpleArrayMap<java.lang.String, android.support.v4.app.LoaderManager>); 6081*344a7f5eSAndroid Build Coastguard Worker method public android.support.v4.util.SimpleArrayMap<java.lang.String, android.support.v4.app.LoaderManager> retainLoaderNonConfig(); 6082*344a7f5eSAndroid Build Coastguard Worker method public android.support.v4.app.FragmentManagerNonConfig retainNestedNonConfig(); 6083*344a7f5eSAndroid Build Coastguard Worker method public deprecated java.util.List<android.support.v4.app.Fragment> retainNonConfig(); 6084*344a7f5eSAndroid Build Coastguard Worker method public android.os.Parcelable saveAllState(); 6085*344a7f5eSAndroid Build Coastguard Worker } 6086*344a7f5eSAndroid Build Coastguard Worker 6087*344a7f5eSAndroid Build Coastguard Worker public abstract class FragmentHostCallback<E> extends android.support.v4.app.FragmentContainer { 6088*344a7f5eSAndroid Build Coastguard Worker ctor public FragmentHostCallback(android.content.Context, android.os.Handler, int); 6089*344a7f5eSAndroid Build Coastguard Worker method public void onDump(java.lang.String, java.io.FileDescriptor, java.io.PrintWriter, java.lang.String[]); 6090*344a7f5eSAndroid Build Coastguard Worker method public android.view.View onFindViewById(int); 6091*344a7f5eSAndroid Build Coastguard Worker method public abstract E onGetHost(); 6092*344a7f5eSAndroid Build Coastguard Worker method public android.view.LayoutInflater onGetLayoutInflater(); 6093*344a7f5eSAndroid Build Coastguard Worker method public int onGetWindowAnimations(); 6094*344a7f5eSAndroid Build Coastguard Worker method public boolean onHasView(); 6095*344a7f5eSAndroid Build Coastguard Worker method public boolean onHasWindowAnimations(); 6096*344a7f5eSAndroid Build Coastguard Worker method public void onRequestPermissionsFromFragment(android.support.v4.app.Fragment, java.lang.String[], int); 6097*344a7f5eSAndroid Build Coastguard Worker method public boolean onShouldSaveFragmentState(android.support.v4.app.Fragment); 6098*344a7f5eSAndroid Build Coastguard Worker method public boolean onShouldShowRequestPermissionRationale(java.lang.String); 6099*344a7f5eSAndroid Build Coastguard Worker method public void onStartActivityFromFragment(android.support.v4.app.Fragment, android.content.Intent, int); 6100*344a7f5eSAndroid Build Coastguard Worker method public void onStartActivityFromFragment(android.support.v4.app.Fragment, android.content.Intent, int, android.os.Bundle); 6101*344a7f5eSAndroid Build Coastguard Worker method public void onStartIntentSenderFromFragment(android.support.v4.app.Fragment, android.content.IntentSender, int, android.content.Intent, int, int, int, android.os.Bundle) throws android.content.IntentSender.SendIntentException; 6102*344a7f5eSAndroid Build Coastguard Worker method public void onSupportInvalidateOptionsMenu(); 6103*344a7f5eSAndroid Build Coastguard Worker } 6104*344a7f5eSAndroid Build Coastguard Worker 6105*344a7f5eSAndroid Build Coastguard Worker public abstract class FragmentManager { 6106*344a7f5eSAndroid Build Coastguard Worker ctor public FragmentManager(); 6107*344a7f5eSAndroid Build Coastguard Worker method public abstract void addOnBackStackChangedListener(android.support.v4.app.FragmentManager.OnBackStackChangedListener); 6108*344a7f5eSAndroid Build Coastguard Worker method public abstract android.support.v4.app.FragmentTransaction beginTransaction(); 6109*344a7f5eSAndroid Build Coastguard Worker method public abstract void dump(java.lang.String, java.io.FileDescriptor, java.io.PrintWriter, java.lang.String[]); 6110*344a7f5eSAndroid Build Coastguard Worker method public static void enableDebugLogging(boolean); 6111*344a7f5eSAndroid Build Coastguard Worker method public abstract boolean executePendingTransactions(); 6112*344a7f5eSAndroid Build Coastguard Worker method public abstract android.support.v4.app.Fragment findFragmentById(int); 6113*344a7f5eSAndroid Build Coastguard Worker method public abstract android.support.v4.app.Fragment findFragmentByTag(java.lang.String); 6114*344a7f5eSAndroid Build Coastguard Worker method public abstract android.support.v4.app.FragmentManager.BackStackEntry getBackStackEntryAt(int); 6115*344a7f5eSAndroid Build Coastguard Worker method public abstract int getBackStackEntryCount(); 6116*344a7f5eSAndroid Build Coastguard Worker method public abstract android.support.v4.app.Fragment getFragment(android.os.Bundle, java.lang.String); 6117*344a7f5eSAndroid Build Coastguard Worker method public abstract java.util.List<android.support.v4.app.Fragment> getFragments(); 6118*344a7f5eSAndroid Build Coastguard Worker method public abstract android.support.v4.app.Fragment getPrimaryNavigationFragment(); 6119*344a7f5eSAndroid Build Coastguard Worker method public abstract boolean isDestroyed(); 6120*344a7f5eSAndroid Build Coastguard Worker method public abstract boolean isStateSaved(); 6121*344a7f5eSAndroid Build Coastguard Worker method public abstract void popBackStack(); 6122*344a7f5eSAndroid Build Coastguard Worker method public abstract void popBackStack(java.lang.String, int); 6123*344a7f5eSAndroid Build Coastguard Worker method public abstract void popBackStack(int, int); 6124*344a7f5eSAndroid Build Coastguard Worker method public abstract boolean popBackStackImmediate(); 6125*344a7f5eSAndroid Build Coastguard Worker method public abstract boolean popBackStackImmediate(java.lang.String, int); 6126*344a7f5eSAndroid Build Coastguard Worker method public abstract boolean popBackStackImmediate(int, int); 6127*344a7f5eSAndroid Build Coastguard Worker method public abstract void putFragment(android.os.Bundle, java.lang.String, android.support.v4.app.Fragment); 6128*344a7f5eSAndroid Build Coastguard Worker method public abstract void registerFragmentLifecycleCallbacks(android.support.v4.app.FragmentManager.FragmentLifecycleCallbacks, boolean); 6129*344a7f5eSAndroid Build Coastguard Worker method public abstract void removeOnBackStackChangedListener(android.support.v4.app.FragmentManager.OnBackStackChangedListener); 6130*344a7f5eSAndroid Build Coastguard Worker method public abstract android.support.v4.app.Fragment.SavedState saveFragmentInstanceState(android.support.v4.app.Fragment); 6131*344a7f5eSAndroid Build Coastguard Worker method public abstract void unregisterFragmentLifecycleCallbacks(android.support.v4.app.FragmentManager.FragmentLifecycleCallbacks); 6132*344a7f5eSAndroid Build Coastguard Worker field public static final int POP_BACK_STACK_INCLUSIVE = 1; // 0x1 6133*344a7f5eSAndroid Build Coastguard Worker } 6134*344a7f5eSAndroid Build Coastguard Worker 6135*344a7f5eSAndroid Build Coastguard Worker public static abstract interface FragmentManager.BackStackEntry { 6136*344a7f5eSAndroid Build Coastguard Worker method public abstract java.lang.CharSequence getBreadCrumbShortTitle(); 6137*344a7f5eSAndroid Build Coastguard Worker method public abstract int getBreadCrumbShortTitleRes(); 6138*344a7f5eSAndroid Build Coastguard Worker method public abstract java.lang.CharSequence getBreadCrumbTitle(); 6139*344a7f5eSAndroid Build Coastguard Worker method public abstract int getBreadCrumbTitleRes(); 6140*344a7f5eSAndroid Build Coastguard Worker method public abstract int getId(); 6141*344a7f5eSAndroid Build Coastguard Worker method public abstract java.lang.String getName(); 6142*344a7f5eSAndroid Build Coastguard Worker } 6143*344a7f5eSAndroid Build Coastguard Worker 6144*344a7f5eSAndroid Build Coastguard Worker public static abstract class FragmentManager.FragmentLifecycleCallbacks { 6145*344a7f5eSAndroid Build Coastguard Worker ctor public FragmentManager.FragmentLifecycleCallbacks(); 6146*344a7f5eSAndroid Build Coastguard Worker method public void onFragmentActivityCreated(android.support.v4.app.FragmentManager, android.support.v4.app.Fragment, android.os.Bundle); 6147*344a7f5eSAndroid Build Coastguard Worker method public void onFragmentAttached(android.support.v4.app.FragmentManager, android.support.v4.app.Fragment, android.content.Context); 6148*344a7f5eSAndroid Build Coastguard Worker method public void onFragmentCreated(android.support.v4.app.FragmentManager, android.support.v4.app.Fragment, android.os.Bundle); 6149*344a7f5eSAndroid Build Coastguard Worker method public void onFragmentDestroyed(android.support.v4.app.FragmentManager, android.support.v4.app.Fragment); 6150*344a7f5eSAndroid Build Coastguard Worker method public void onFragmentDetached(android.support.v4.app.FragmentManager, android.support.v4.app.Fragment); 6151*344a7f5eSAndroid Build Coastguard Worker method public void onFragmentPaused(android.support.v4.app.FragmentManager, android.support.v4.app.Fragment); 6152*344a7f5eSAndroid Build Coastguard Worker method public void onFragmentPreAttached(android.support.v4.app.FragmentManager, android.support.v4.app.Fragment, android.content.Context); 6153*344a7f5eSAndroid Build Coastguard Worker method public void onFragmentPreCreated(android.support.v4.app.FragmentManager, android.support.v4.app.Fragment, android.os.Bundle); 6154*344a7f5eSAndroid Build Coastguard Worker method public void onFragmentResumed(android.support.v4.app.FragmentManager, android.support.v4.app.Fragment); 6155*344a7f5eSAndroid Build Coastguard Worker method public void onFragmentSaveInstanceState(android.support.v4.app.FragmentManager, android.support.v4.app.Fragment, android.os.Bundle); 6156*344a7f5eSAndroid Build Coastguard Worker method public void onFragmentStarted(android.support.v4.app.FragmentManager, android.support.v4.app.Fragment); 6157*344a7f5eSAndroid Build Coastguard Worker method public void onFragmentStopped(android.support.v4.app.FragmentManager, android.support.v4.app.Fragment); 6158*344a7f5eSAndroid Build Coastguard Worker method public void onFragmentViewCreated(android.support.v4.app.FragmentManager, android.support.v4.app.Fragment, android.view.View, android.os.Bundle); 6159*344a7f5eSAndroid Build Coastguard Worker method public void onFragmentViewDestroyed(android.support.v4.app.FragmentManager, android.support.v4.app.Fragment); 6160*344a7f5eSAndroid Build Coastguard Worker } 6161*344a7f5eSAndroid Build Coastguard Worker 6162*344a7f5eSAndroid Build Coastguard Worker public static abstract interface FragmentManager.OnBackStackChangedListener { 6163*344a7f5eSAndroid Build Coastguard Worker method public abstract void onBackStackChanged(); 6164*344a7f5eSAndroid Build Coastguard Worker } 6165*344a7f5eSAndroid Build Coastguard Worker 6166*344a7f5eSAndroid Build Coastguard Worker public class FragmentManagerNonConfig { 6167*344a7f5eSAndroid Build Coastguard Worker } 6168*344a7f5eSAndroid Build Coastguard Worker 6169*344a7f5eSAndroid Build Coastguard Worker public abstract class FragmentPagerAdapter extends android.support.v4.view.PagerAdapter { 6170*344a7f5eSAndroid Build Coastguard Worker ctor public FragmentPagerAdapter(android.support.v4.app.FragmentManager); 6171*344a7f5eSAndroid Build Coastguard Worker method public abstract android.support.v4.app.Fragment getItem(int); 6172*344a7f5eSAndroid Build Coastguard Worker method public long getItemId(int); 6173*344a7f5eSAndroid Build Coastguard Worker method public boolean isViewFromObject(android.view.View, java.lang.Object); 6174*344a7f5eSAndroid Build Coastguard Worker } 6175*344a7f5eSAndroid Build Coastguard Worker 6176*344a7f5eSAndroid Build Coastguard Worker public abstract class FragmentStatePagerAdapter extends android.support.v4.view.PagerAdapter { 6177*344a7f5eSAndroid Build Coastguard Worker ctor public FragmentStatePagerAdapter(android.support.v4.app.FragmentManager); 6178*344a7f5eSAndroid Build Coastguard Worker method public abstract android.support.v4.app.Fragment getItem(int); 6179*344a7f5eSAndroid Build Coastguard Worker method public boolean isViewFromObject(android.view.View, java.lang.Object); 6180*344a7f5eSAndroid Build Coastguard Worker } 6181*344a7f5eSAndroid Build Coastguard Worker 6182*344a7f5eSAndroid Build Coastguard Worker public class FragmentTabHost extends android.widget.TabHost implements android.widget.TabHost.OnTabChangeListener { 6183*344a7f5eSAndroid Build Coastguard Worker ctor public FragmentTabHost(android.content.Context); 6184*344a7f5eSAndroid Build Coastguard Worker ctor public FragmentTabHost(android.content.Context, android.util.AttributeSet); 6185*344a7f5eSAndroid Build Coastguard Worker method public void addTab(android.widget.TabHost.TabSpec, java.lang.Class<?>, android.os.Bundle); 6186*344a7f5eSAndroid Build Coastguard Worker method public void onTabChanged(java.lang.String); 6187*344a7f5eSAndroid Build Coastguard Worker method public void setup(android.content.Context, android.support.v4.app.FragmentManager); 6188*344a7f5eSAndroid Build Coastguard Worker method public void setup(android.content.Context, android.support.v4.app.FragmentManager, int); 6189*344a7f5eSAndroid Build Coastguard Worker } 6190*344a7f5eSAndroid Build Coastguard Worker 6191*344a7f5eSAndroid Build Coastguard Worker public abstract class FragmentTransaction { 6192*344a7f5eSAndroid Build Coastguard Worker ctor public FragmentTransaction(); 6193*344a7f5eSAndroid Build Coastguard Worker method public abstract android.support.v4.app.FragmentTransaction add(android.support.v4.app.Fragment, java.lang.String); 6194*344a7f5eSAndroid Build Coastguard Worker method public abstract android.support.v4.app.FragmentTransaction add(int, android.support.v4.app.Fragment); 6195*344a7f5eSAndroid Build Coastguard Worker method public abstract android.support.v4.app.FragmentTransaction add(int, android.support.v4.app.Fragment, java.lang.String); 6196*344a7f5eSAndroid Build Coastguard Worker method public abstract android.support.v4.app.FragmentTransaction addSharedElement(android.view.View, java.lang.String); 6197*344a7f5eSAndroid Build Coastguard Worker method public abstract android.support.v4.app.FragmentTransaction addToBackStack(java.lang.String); 6198*344a7f5eSAndroid Build Coastguard Worker method public abstract android.support.v4.app.FragmentTransaction attach(android.support.v4.app.Fragment); 6199*344a7f5eSAndroid Build Coastguard Worker method public abstract int commit(); 6200*344a7f5eSAndroid Build Coastguard Worker method public abstract int commitAllowingStateLoss(); 6201*344a7f5eSAndroid Build Coastguard Worker method public abstract void commitNow(); 6202*344a7f5eSAndroid Build Coastguard Worker method public abstract void commitNowAllowingStateLoss(); 6203*344a7f5eSAndroid Build Coastguard Worker method public abstract android.support.v4.app.FragmentTransaction detach(android.support.v4.app.Fragment); 6204*344a7f5eSAndroid Build Coastguard Worker method public abstract android.support.v4.app.FragmentTransaction disallowAddToBackStack(); 6205*344a7f5eSAndroid Build Coastguard Worker method public abstract android.support.v4.app.FragmentTransaction hide(android.support.v4.app.Fragment); 6206*344a7f5eSAndroid Build Coastguard Worker method public abstract boolean isAddToBackStackAllowed(); 6207*344a7f5eSAndroid Build Coastguard Worker method public abstract boolean isEmpty(); 6208*344a7f5eSAndroid Build Coastguard Worker method public abstract android.support.v4.app.FragmentTransaction remove(android.support.v4.app.Fragment); 6209*344a7f5eSAndroid Build Coastguard Worker method public abstract android.support.v4.app.FragmentTransaction replace(int, android.support.v4.app.Fragment); 6210*344a7f5eSAndroid Build Coastguard Worker method public abstract android.support.v4.app.FragmentTransaction replace(int, android.support.v4.app.Fragment, java.lang.String); 6211*344a7f5eSAndroid Build Coastguard Worker method public abstract android.support.v4.app.FragmentTransaction runOnCommit(java.lang.Runnable); 6212*344a7f5eSAndroid Build Coastguard Worker method public abstract deprecated android.support.v4.app.FragmentTransaction setAllowOptimization(boolean); 6213*344a7f5eSAndroid Build Coastguard Worker method public abstract android.support.v4.app.FragmentTransaction setBreadCrumbShortTitle(int); 6214*344a7f5eSAndroid Build Coastguard Worker method public abstract android.support.v4.app.FragmentTransaction setBreadCrumbShortTitle(java.lang.CharSequence); 6215*344a7f5eSAndroid Build Coastguard Worker method public abstract android.support.v4.app.FragmentTransaction setBreadCrumbTitle(int); 6216*344a7f5eSAndroid Build Coastguard Worker method public abstract android.support.v4.app.FragmentTransaction setBreadCrumbTitle(java.lang.CharSequence); 6217*344a7f5eSAndroid Build Coastguard Worker method public abstract android.support.v4.app.FragmentTransaction setCustomAnimations(int, int); 6218*344a7f5eSAndroid Build Coastguard Worker method public abstract android.support.v4.app.FragmentTransaction setCustomAnimations(int, int, int, int); 6219*344a7f5eSAndroid Build Coastguard Worker method public abstract android.support.v4.app.FragmentTransaction setPrimaryNavigationFragment(android.support.v4.app.Fragment); 6220*344a7f5eSAndroid Build Coastguard Worker method public abstract android.support.v4.app.FragmentTransaction setReorderingAllowed(boolean); 6221*344a7f5eSAndroid Build Coastguard Worker method public abstract android.support.v4.app.FragmentTransaction setTransition(int); 6222*344a7f5eSAndroid Build Coastguard Worker method public abstract android.support.v4.app.FragmentTransaction setTransitionStyle(int); 6223*344a7f5eSAndroid Build Coastguard Worker method public abstract android.support.v4.app.FragmentTransaction show(android.support.v4.app.Fragment); 6224*344a7f5eSAndroid Build Coastguard Worker field public static final int TRANSIT_ENTER_MASK = 4096; // 0x1000 6225*344a7f5eSAndroid Build Coastguard Worker field public static final int TRANSIT_EXIT_MASK = 8192; // 0x2000 6226*344a7f5eSAndroid Build Coastguard Worker field public static final int TRANSIT_FRAGMENT_CLOSE = 8194; // 0x2002 6227*344a7f5eSAndroid Build Coastguard Worker field public static final int TRANSIT_FRAGMENT_FADE = 4099; // 0x1003 6228*344a7f5eSAndroid Build Coastguard Worker field public static final int TRANSIT_FRAGMENT_OPEN = 4097; // 0x1001 6229*344a7f5eSAndroid Build Coastguard Worker field public static final int TRANSIT_NONE = 0; // 0x0 6230*344a7f5eSAndroid Build Coastguard Worker field public static final int TRANSIT_UNSET = -1; // 0xffffffff 6231*344a7f5eSAndroid Build Coastguard Worker } 6232*344a7f5eSAndroid Build Coastguard Worker 6233*344a7f5eSAndroid Build Coastguard Worker public class FrameMetricsAggregator { 6234*344a7f5eSAndroid Build Coastguard Worker ctor public FrameMetricsAggregator(); 6235*344a7f5eSAndroid Build Coastguard Worker ctor public FrameMetricsAggregator(int); 6236*344a7f5eSAndroid Build Coastguard Worker method public void add(android.app.Activity); 6237*344a7f5eSAndroid Build Coastguard Worker method public android.util.SparseIntArray[] getMetrics(); 6238*344a7f5eSAndroid Build Coastguard Worker method public android.util.SparseIntArray[] remove(android.app.Activity); 6239*344a7f5eSAndroid Build Coastguard Worker method public android.util.SparseIntArray[] reset(); 6240*344a7f5eSAndroid Build Coastguard Worker method public android.util.SparseIntArray[] stop(); 6241*344a7f5eSAndroid Build Coastguard Worker field public static final int ANIMATION_DURATION = 256; // 0x100 6242*344a7f5eSAndroid Build Coastguard Worker field public static final int ANIMATION_INDEX = 8; // 0x8 6243*344a7f5eSAndroid Build Coastguard Worker field public static final int COMMAND_DURATION = 32; // 0x20 6244*344a7f5eSAndroid Build Coastguard Worker field public static final int COMMAND_INDEX = 5; // 0x5 6245*344a7f5eSAndroid Build Coastguard Worker field public static final int DELAY_DURATION = 128; // 0x80 6246*344a7f5eSAndroid Build Coastguard Worker field public static final int DELAY_INDEX = 7; // 0x7 6247*344a7f5eSAndroid Build Coastguard Worker field public static final int DRAW_DURATION = 8; // 0x8 6248*344a7f5eSAndroid Build Coastguard Worker field public static final int DRAW_INDEX = 3; // 0x3 6249*344a7f5eSAndroid Build Coastguard Worker field public static final int EVERY_DURATION = 511; // 0x1ff 6250*344a7f5eSAndroid Build Coastguard Worker field public static final int INPUT_DURATION = 2; // 0x2 6251*344a7f5eSAndroid Build Coastguard Worker field public static final int INPUT_INDEX = 1; // 0x1 6252*344a7f5eSAndroid Build Coastguard Worker field public static final int LAYOUT_MEASURE_DURATION = 4; // 0x4 6253*344a7f5eSAndroid Build Coastguard Worker field public static final int LAYOUT_MEASURE_INDEX = 2; // 0x2 6254*344a7f5eSAndroid Build Coastguard Worker field public static final int SWAP_DURATION = 64; // 0x40 6255*344a7f5eSAndroid Build Coastguard Worker field public static final int SWAP_INDEX = 6; // 0x6 6256*344a7f5eSAndroid Build Coastguard Worker field public static final int SYNC_DURATION = 16; // 0x10 6257*344a7f5eSAndroid Build Coastguard Worker field public static final int SYNC_INDEX = 4; // 0x4 6258*344a7f5eSAndroid Build Coastguard Worker field public static final int TOTAL_DURATION = 1; // 0x1 6259*344a7f5eSAndroid Build Coastguard Worker field public static final int TOTAL_INDEX = 0; // 0x0 6260*344a7f5eSAndroid Build Coastguard Worker } 6261*344a7f5eSAndroid Build Coastguard Worker 6262*344a7f5eSAndroid Build Coastguard Worker public abstract class JobIntentService extends android.app.Service { 6263*344a7f5eSAndroid Build Coastguard Worker ctor public JobIntentService(); 6264*344a7f5eSAndroid Build Coastguard Worker method public static void enqueueWork(android.content.Context, java.lang.Class, int, android.content.Intent); 6265*344a7f5eSAndroid Build Coastguard Worker method public android.os.IBinder onBind(android.content.Intent); 6266*344a7f5eSAndroid Build Coastguard Worker method protected abstract void onHandleWork(android.content.Intent); 6267*344a7f5eSAndroid Build Coastguard Worker method public boolean onStopCurrentWork(); 6268*344a7f5eSAndroid Build Coastguard Worker } 6269*344a7f5eSAndroid Build Coastguard Worker 6270*344a7f5eSAndroid Build Coastguard Worker public class ListFragment extends android.support.v4.app.Fragment { 6271*344a7f5eSAndroid Build Coastguard Worker ctor public ListFragment(); 6272*344a7f5eSAndroid Build Coastguard Worker method public android.widget.ListAdapter getListAdapter(); 6273*344a7f5eSAndroid Build Coastguard Worker method public android.widget.ListView getListView(); 6274*344a7f5eSAndroid Build Coastguard Worker method public long getSelectedItemId(); 6275*344a7f5eSAndroid Build Coastguard Worker method public int getSelectedItemPosition(); 6276*344a7f5eSAndroid Build Coastguard Worker method public void onListItemClick(android.widget.ListView, android.view.View, int, long); 6277*344a7f5eSAndroid Build Coastguard Worker method public void setEmptyText(java.lang.CharSequence); 6278*344a7f5eSAndroid Build Coastguard Worker method public void setListAdapter(android.widget.ListAdapter); 6279*344a7f5eSAndroid Build Coastguard Worker method public void setListShown(boolean); 6280*344a7f5eSAndroid Build Coastguard Worker method public void setListShownNoAnimation(boolean); 6281*344a7f5eSAndroid Build Coastguard Worker method public void setSelection(int); 6282*344a7f5eSAndroid Build Coastguard Worker } 6283*344a7f5eSAndroid Build Coastguard Worker 6284*344a7f5eSAndroid Build Coastguard Worker public abstract class LoaderManager { 6285*344a7f5eSAndroid Build Coastguard Worker ctor public LoaderManager(); 6286*344a7f5eSAndroid Build Coastguard Worker method public abstract void destroyLoader(int); 6287*344a7f5eSAndroid Build Coastguard Worker method public abstract void dump(java.lang.String, java.io.FileDescriptor, java.io.PrintWriter, java.lang.String[]); 6288*344a7f5eSAndroid Build Coastguard Worker method public static void enableDebugLogging(boolean); 6289*344a7f5eSAndroid Build Coastguard Worker method public abstract <D> android.support.v4.content.Loader<D> getLoader(int); 6290*344a7f5eSAndroid Build Coastguard Worker method public boolean hasRunningLoaders(); 6291*344a7f5eSAndroid Build Coastguard Worker method public abstract <D> android.support.v4.content.Loader<D> initLoader(int, android.os.Bundle, android.support.v4.app.LoaderManager.LoaderCallbacks<D>); 6292*344a7f5eSAndroid Build Coastguard Worker method public abstract <D> android.support.v4.content.Loader<D> restartLoader(int, android.os.Bundle, android.support.v4.app.LoaderManager.LoaderCallbacks<D>); 6293*344a7f5eSAndroid Build Coastguard Worker } 6294*344a7f5eSAndroid Build Coastguard Worker 6295*344a7f5eSAndroid Build Coastguard Worker public static abstract interface LoaderManager.LoaderCallbacks<D> { 6296*344a7f5eSAndroid Build Coastguard Worker method public abstract android.support.v4.content.Loader<D> onCreateLoader(int, android.os.Bundle); 6297*344a7f5eSAndroid Build Coastguard Worker method public abstract void onLoadFinished(android.support.v4.content.Loader<D>, D); 6298*344a7f5eSAndroid Build Coastguard Worker method public abstract void onLoaderReset(android.support.v4.content.Loader<D>); 6299*344a7f5eSAndroid Build Coastguard Worker } 6300*344a7f5eSAndroid Build Coastguard Worker 6301*344a7f5eSAndroid Build Coastguard Worker public final class NavUtils { 6302*344a7f5eSAndroid Build Coastguard Worker method public static android.content.Intent getParentActivityIntent(android.app.Activity); 6303*344a7f5eSAndroid Build Coastguard Worker method public static android.content.Intent getParentActivityIntent(android.content.Context, java.lang.Class<?>) throws android.content.pm.PackageManager.NameNotFoundException; 6304*344a7f5eSAndroid Build Coastguard Worker method public static android.content.Intent getParentActivityIntent(android.content.Context, android.content.ComponentName) throws android.content.pm.PackageManager.NameNotFoundException; 6305*344a7f5eSAndroid Build Coastguard Worker method public static java.lang.String getParentActivityName(android.app.Activity); 6306*344a7f5eSAndroid Build Coastguard Worker method public static java.lang.String getParentActivityName(android.content.Context, android.content.ComponentName) throws android.content.pm.PackageManager.NameNotFoundException; 6307*344a7f5eSAndroid Build Coastguard Worker method public static void navigateUpFromSameTask(android.app.Activity); 6308*344a7f5eSAndroid Build Coastguard Worker method public static void navigateUpTo(android.app.Activity, android.content.Intent); 6309*344a7f5eSAndroid Build Coastguard Worker method public static boolean shouldUpRecreateTask(android.app.Activity, android.content.Intent); 6310*344a7f5eSAndroid Build Coastguard Worker field public static final java.lang.String PARENT_ACTIVITY = "android.support.PARENT_ACTIVITY"; 6311*344a7f5eSAndroid Build Coastguard Worker } 6312*344a7f5eSAndroid Build Coastguard Worker 6313*344a7f5eSAndroid Build Coastguard Worker public class NotificationCompat { 6314*344a7f5eSAndroid Build Coastguard Worker ctor public NotificationCompat(); 6315*344a7f5eSAndroid Build Coastguard Worker method public static android.support.v4.app.NotificationCompat.Action getAction(android.app.Notification, int); 6316*344a7f5eSAndroid Build Coastguard Worker method public static int getActionCount(android.app.Notification); 6317*344a7f5eSAndroid Build Coastguard Worker method public static int getBadgeIconType(android.app.Notification); 6318*344a7f5eSAndroid Build Coastguard Worker method public static java.lang.String getCategory(android.app.Notification); 6319*344a7f5eSAndroid Build Coastguard Worker method public static deprecated java.lang.String getChannel(android.app.Notification); 6320*344a7f5eSAndroid Build Coastguard Worker method public static java.lang.String getChannelId(android.app.Notification); 6321*344a7f5eSAndroid Build Coastguard Worker method public static android.os.Bundle getExtras(android.app.Notification); 6322*344a7f5eSAndroid Build Coastguard Worker method public static java.lang.String getGroup(android.app.Notification); 6323*344a7f5eSAndroid Build Coastguard Worker method public static int getGroupAlertBehavior(android.app.Notification); 6324*344a7f5eSAndroid Build Coastguard Worker method public static boolean getLocalOnly(android.app.Notification); 6325*344a7f5eSAndroid Build Coastguard Worker method public static java.lang.String getShortcutId(android.app.Notification); 6326*344a7f5eSAndroid Build Coastguard Worker method public static java.lang.String getSortKey(android.app.Notification); 6327*344a7f5eSAndroid Build Coastguard Worker method public static deprecated long getTimeout(android.app.Notification); 6328*344a7f5eSAndroid Build Coastguard Worker method public static long getTimeoutAfter(android.app.Notification); 6329*344a7f5eSAndroid Build Coastguard Worker method public static boolean isGroupSummary(android.app.Notification); 6330*344a7f5eSAndroid Build Coastguard Worker field public static final int BADGE_ICON_LARGE = 2; // 0x2 6331*344a7f5eSAndroid Build Coastguard Worker field public static final int BADGE_ICON_NONE = 0; // 0x0 6332*344a7f5eSAndroid Build Coastguard Worker field public static final int BADGE_ICON_SMALL = 1; // 0x1 6333*344a7f5eSAndroid Build Coastguard Worker field public static final java.lang.String CATEGORY_ALARM = "alarm"; 6334*344a7f5eSAndroid Build Coastguard Worker field public static final java.lang.String CATEGORY_CALL = "call"; 6335*344a7f5eSAndroid Build Coastguard Worker field public static final java.lang.String CATEGORY_EMAIL = "email"; 6336*344a7f5eSAndroid Build Coastguard Worker field public static final java.lang.String CATEGORY_ERROR = "err"; 6337*344a7f5eSAndroid Build Coastguard Worker field public static final java.lang.String CATEGORY_EVENT = "event"; 6338*344a7f5eSAndroid Build Coastguard Worker field public static final java.lang.String CATEGORY_MESSAGE = "msg"; 6339*344a7f5eSAndroid Build Coastguard Worker field public static final java.lang.String CATEGORY_PROGRESS = "progress"; 6340*344a7f5eSAndroid Build Coastguard Worker field public static final java.lang.String CATEGORY_PROMO = "promo"; 6341*344a7f5eSAndroid Build Coastguard Worker field public static final java.lang.String CATEGORY_RECOMMENDATION = "recommendation"; 6342*344a7f5eSAndroid Build Coastguard Worker field public static final java.lang.String CATEGORY_REMINDER = "reminder"; 6343*344a7f5eSAndroid Build Coastguard Worker field public static final java.lang.String CATEGORY_SERVICE = "service"; 6344*344a7f5eSAndroid Build Coastguard Worker field public static final java.lang.String CATEGORY_SOCIAL = "social"; 6345*344a7f5eSAndroid Build Coastguard Worker field public static final java.lang.String CATEGORY_STATUS = "status"; 6346*344a7f5eSAndroid Build Coastguard Worker field public static final java.lang.String CATEGORY_SYSTEM = "sys"; 6347*344a7f5eSAndroid Build Coastguard Worker field public static final java.lang.String CATEGORY_TRANSPORT = "transport"; 6348*344a7f5eSAndroid Build Coastguard Worker field public static final int COLOR_DEFAULT = 0; // 0x0 6349*344a7f5eSAndroid Build Coastguard Worker field public static final int DEFAULT_ALL = -1; // 0xffffffff 6350*344a7f5eSAndroid Build Coastguard Worker field public static final int DEFAULT_LIGHTS = 4; // 0x4 6351*344a7f5eSAndroid Build Coastguard Worker field public static final int DEFAULT_SOUND = 1; // 0x1 6352*344a7f5eSAndroid Build Coastguard Worker field public static final int DEFAULT_VIBRATE = 2; // 0x2 6353*344a7f5eSAndroid Build Coastguard Worker field public static final java.lang.String EXTRA_AUDIO_CONTENTS_URI = "android.audioContents"; 6354*344a7f5eSAndroid Build Coastguard Worker field public static final java.lang.String EXTRA_BACKGROUND_IMAGE_URI = "android.backgroundImageUri"; 6355*344a7f5eSAndroid Build Coastguard Worker field public static final java.lang.String EXTRA_BIG_TEXT = "android.bigText"; 6356*344a7f5eSAndroid Build Coastguard Worker field public static final java.lang.String EXTRA_COMPACT_ACTIONS = "android.compactActions"; 6357*344a7f5eSAndroid Build Coastguard Worker field public static final java.lang.String EXTRA_CONVERSATION_TITLE = "android.conversationTitle"; 6358*344a7f5eSAndroid Build Coastguard Worker field public static final java.lang.String EXTRA_INFO_TEXT = "android.infoText"; 6359*344a7f5eSAndroid Build Coastguard Worker field public static final java.lang.String EXTRA_LARGE_ICON = "android.largeIcon"; 6360*344a7f5eSAndroid Build Coastguard Worker field public static final java.lang.String EXTRA_LARGE_ICON_BIG = "android.largeIcon.big"; 6361*344a7f5eSAndroid Build Coastguard Worker field public static final java.lang.String EXTRA_MEDIA_SESSION = "android.mediaSession"; 6362*344a7f5eSAndroid Build Coastguard Worker field public static final java.lang.String EXTRA_MESSAGES = "android.messages"; 6363*344a7f5eSAndroid Build Coastguard Worker field public static final java.lang.String EXTRA_PEOPLE = "android.people"; 6364*344a7f5eSAndroid Build Coastguard Worker field public static final java.lang.String EXTRA_PICTURE = "android.picture"; 6365*344a7f5eSAndroid Build Coastguard Worker field public static final java.lang.String EXTRA_PROGRESS = "android.progress"; 6366*344a7f5eSAndroid Build Coastguard Worker field public static final java.lang.String EXTRA_PROGRESS_INDETERMINATE = "android.progressIndeterminate"; 6367*344a7f5eSAndroid Build Coastguard Worker field public static final java.lang.String EXTRA_PROGRESS_MAX = "android.progressMax"; 6368*344a7f5eSAndroid Build Coastguard Worker field public static final java.lang.String EXTRA_REMOTE_INPUT_HISTORY = "android.remoteInputHistory"; 6369*344a7f5eSAndroid Build Coastguard Worker field public static final java.lang.String EXTRA_SELF_DISPLAY_NAME = "android.selfDisplayName"; 6370*344a7f5eSAndroid Build Coastguard Worker field public static final java.lang.String EXTRA_SHOW_CHRONOMETER = "android.showChronometer"; 6371*344a7f5eSAndroid Build Coastguard Worker field public static final java.lang.String EXTRA_SHOW_WHEN = "android.showWhen"; 6372*344a7f5eSAndroid Build Coastguard Worker field public static final java.lang.String EXTRA_SMALL_ICON = "android.icon"; 6373*344a7f5eSAndroid Build Coastguard Worker field public static final java.lang.String EXTRA_SUB_TEXT = "android.subText"; 6374*344a7f5eSAndroid Build Coastguard Worker field public static final java.lang.String EXTRA_SUMMARY_TEXT = "android.summaryText"; 6375*344a7f5eSAndroid Build Coastguard Worker field public static final java.lang.String EXTRA_TEMPLATE = "android.template"; 6376*344a7f5eSAndroid Build Coastguard Worker field public static final java.lang.String EXTRA_TEXT = "android.text"; 6377*344a7f5eSAndroid Build Coastguard Worker field public static final java.lang.String EXTRA_TEXT_LINES = "android.textLines"; 6378*344a7f5eSAndroid Build Coastguard Worker field public static final java.lang.String EXTRA_TITLE = "android.title"; 6379*344a7f5eSAndroid Build Coastguard Worker field public static final java.lang.String EXTRA_TITLE_BIG = "android.title.big"; 6380*344a7f5eSAndroid Build Coastguard Worker field public static final int FLAG_AUTO_CANCEL = 16; // 0x10 6381*344a7f5eSAndroid Build Coastguard Worker field public static final int FLAG_FOREGROUND_SERVICE = 64; // 0x40 6382*344a7f5eSAndroid Build Coastguard Worker field public static final int FLAG_GROUP_SUMMARY = 512; // 0x200 6383*344a7f5eSAndroid Build Coastguard Worker field public static final deprecated int FLAG_HIGH_PRIORITY = 128; // 0x80 6384*344a7f5eSAndroid Build Coastguard Worker field public static final int FLAG_INSISTENT = 4; // 0x4 6385*344a7f5eSAndroid Build Coastguard Worker field public static final int FLAG_LOCAL_ONLY = 256; // 0x100 6386*344a7f5eSAndroid Build Coastguard Worker field public static final int FLAG_NO_CLEAR = 32; // 0x20 6387*344a7f5eSAndroid Build Coastguard Worker field public static final int FLAG_ONGOING_EVENT = 2; // 0x2 6388*344a7f5eSAndroid Build Coastguard Worker field public static final int FLAG_ONLY_ALERT_ONCE = 8; // 0x8 6389*344a7f5eSAndroid Build Coastguard Worker field public static final int FLAG_SHOW_LIGHTS = 1; // 0x1 6390*344a7f5eSAndroid Build Coastguard Worker field public static final int GROUP_ALERT_ALL = 0; // 0x0 6391*344a7f5eSAndroid Build Coastguard Worker field public static final int GROUP_ALERT_CHILDREN = 2; // 0x2 6392*344a7f5eSAndroid Build Coastguard Worker field public static final int GROUP_ALERT_SUMMARY = 1; // 0x1 6393*344a7f5eSAndroid Build Coastguard Worker field public static final int PRIORITY_DEFAULT = 0; // 0x0 6394*344a7f5eSAndroid Build Coastguard Worker field public static final int PRIORITY_HIGH = 1; // 0x1 6395*344a7f5eSAndroid Build Coastguard Worker field public static final int PRIORITY_LOW = -1; // 0xffffffff 6396*344a7f5eSAndroid Build Coastguard Worker field public static final int PRIORITY_MAX = 2; // 0x2 6397*344a7f5eSAndroid Build Coastguard Worker field public static final int PRIORITY_MIN = -2; // 0xfffffffe 6398*344a7f5eSAndroid Build Coastguard Worker field public static final int STREAM_DEFAULT = -1; // 0xffffffff 6399*344a7f5eSAndroid Build Coastguard Worker field public static final int VISIBILITY_PRIVATE = 0; // 0x0 6400*344a7f5eSAndroid Build Coastguard Worker field public static final int VISIBILITY_PUBLIC = 1; // 0x1 6401*344a7f5eSAndroid Build Coastguard Worker field public static final int VISIBILITY_SECRET = -1; // 0xffffffff 6402*344a7f5eSAndroid Build Coastguard Worker } 6403*344a7f5eSAndroid Build Coastguard Worker 6404*344a7f5eSAndroid Build Coastguard Worker public static class NotificationCompat.Action { 6405*344a7f5eSAndroid Build Coastguard Worker ctor public NotificationCompat.Action(int, java.lang.CharSequence, android.app.PendingIntent); 6406*344a7f5eSAndroid Build Coastguard Worker method public android.app.PendingIntent getActionIntent(); 6407*344a7f5eSAndroid Build Coastguard Worker method public boolean getAllowGeneratedReplies(); 6408*344a7f5eSAndroid Build Coastguard Worker method public android.support.v4.app.RemoteInput[] getDataOnlyRemoteInputs(); 6409*344a7f5eSAndroid Build Coastguard Worker method public android.os.Bundle getExtras(); 6410*344a7f5eSAndroid Build Coastguard Worker method public int getIcon(); 6411*344a7f5eSAndroid Build Coastguard Worker method public android.support.v4.app.RemoteInput[] getRemoteInputs(); 6412*344a7f5eSAndroid Build Coastguard Worker method public java.lang.CharSequence getTitle(); 6413*344a7f5eSAndroid Build Coastguard Worker field public android.app.PendingIntent actionIntent; 6414*344a7f5eSAndroid Build Coastguard Worker field public int icon; 6415*344a7f5eSAndroid Build Coastguard Worker field public java.lang.CharSequence title; 6416*344a7f5eSAndroid Build Coastguard Worker } 6417*344a7f5eSAndroid Build Coastguard Worker 6418*344a7f5eSAndroid Build Coastguard Worker public static final class NotificationCompat.Action.Builder { 6419*344a7f5eSAndroid Build Coastguard Worker ctor public NotificationCompat.Action.Builder(int, java.lang.CharSequence, android.app.PendingIntent); 6420*344a7f5eSAndroid Build Coastguard Worker ctor public NotificationCompat.Action.Builder(android.support.v4.app.NotificationCompat.Action); 6421*344a7f5eSAndroid Build Coastguard Worker method public android.support.v4.app.NotificationCompat.Action.Builder addExtras(android.os.Bundle); 6422*344a7f5eSAndroid Build Coastguard Worker method public android.support.v4.app.NotificationCompat.Action.Builder addRemoteInput(android.support.v4.app.RemoteInput); 6423*344a7f5eSAndroid Build Coastguard Worker method public android.support.v4.app.NotificationCompat.Action build(); 6424*344a7f5eSAndroid Build Coastguard Worker method public android.support.v4.app.NotificationCompat.Action.Builder extend(android.support.v4.app.NotificationCompat.Action.Extender); 6425*344a7f5eSAndroid Build Coastguard Worker method public android.os.Bundle getExtras(); 6426*344a7f5eSAndroid Build Coastguard Worker method public android.support.v4.app.NotificationCompat.Action.Builder setAllowGeneratedReplies(boolean); 6427*344a7f5eSAndroid Build Coastguard Worker } 6428*344a7f5eSAndroid Build Coastguard Worker 6429*344a7f5eSAndroid Build Coastguard Worker public static abstract interface NotificationCompat.Action.Extender { 6430*344a7f5eSAndroid Build Coastguard Worker method public abstract android.support.v4.app.NotificationCompat.Action.Builder extend(android.support.v4.app.NotificationCompat.Action.Builder); 6431*344a7f5eSAndroid Build Coastguard Worker } 6432*344a7f5eSAndroid Build Coastguard Worker 6433*344a7f5eSAndroid Build Coastguard Worker public static final class NotificationCompat.Action.WearableExtender implements android.support.v4.app.NotificationCompat.Action.Extender { 6434*344a7f5eSAndroid Build Coastguard Worker ctor public NotificationCompat.Action.WearableExtender(); 6435*344a7f5eSAndroid Build Coastguard Worker ctor public NotificationCompat.Action.WearableExtender(android.support.v4.app.NotificationCompat.Action); 6436*344a7f5eSAndroid Build Coastguard Worker method public android.support.v4.app.NotificationCompat.Action.WearableExtender clone(); 6437*344a7f5eSAndroid Build Coastguard Worker method public android.support.v4.app.NotificationCompat.Action.Builder extend(android.support.v4.app.NotificationCompat.Action.Builder); 6438*344a7f5eSAndroid Build Coastguard Worker method public java.lang.CharSequence getCancelLabel(); 6439*344a7f5eSAndroid Build Coastguard Worker method public java.lang.CharSequence getConfirmLabel(); 6440*344a7f5eSAndroid Build Coastguard Worker method public boolean getHintDisplayActionInline(); 6441*344a7f5eSAndroid Build Coastguard Worker method public boolean getHintLaunchesActivity(); 6442*344a7f5eSAndroid Build Coastguard Worker method public java.lang.CharSequence getInProgressLabel(); 6443*344a7f5eSAndroid Build Coastguard Worker method public boolean isAvailableOffline(); 6444*344a7f5eSAndroid Build Coastguard Worker method public android.support.v4.app.NotificationCompat.Action.WearableExtender setAvailableOffline(boolean); 6445*344a7f5eSAndroid Build Coastguard Worker method public android.support.v4.app.NotificationCompat.Action.WearableExtender setCancelLabel(java.lang.CharSequence); 6446*344a7f5eSAndroid Build Coastguard Worker method public android.support.v4.app.NotificationCompat.Action.WearableExtender setConfirmLabel(java.lang.CharSequence); 6447*344a7f5eSAndroid Build Coastguard Worker method public android.support.v4.app.NotificationCompat.Action.WearableExtender setHintDisplayActionInline(boolean); 6448*344a7f5eSAndroid Build Coastguard Worker method public android.support.v4.app.NotificationCompat.Action.WearableExtender setHintLaunchesActivity(boolean); 6449*344a7f5eSAndroid Build Coastguard Worker method public android.support.v4.app.NotificationCompat.Action.WearableExtender setInProgressLabel(java.lang.CharSequence); 6450*344a7f5eSAndroid Build Coastguard Worker } 6451*344a7f5eSAndroid Build Coastguard Worker 6452*344a7f5eSAndroid Build Coastguard Worker public static class NotificationCompat.BigPictureStyle extends android.support.v4.app.NotificationCompat.Style { 6453*344a7f5eSAndroid Build Coastguard Worker ctor public NotificationCompat.BigPictureStyle(); 6454*344a7f5eSAndroid Build Coastguard Worker ctor public NotificationCompat.BigPictureStyle(android.support.v4.app.NotificationCompat.Builder); 6455*344a7f5eSAndroid Build Coastguard Worker method public android.support.v4.app.NotificationCompat.BigPictureStyle bigLargeIcon(android.graphics.Bitmap); 6456*344a7f5eSAndroid Build Coastguard Worker method public android.support.v4.app.NotificationCompat.BigPictureStyle bigPicture(android.graphics.Bitmap); 6457*344a7f5eSAndroid Build Coastguard Worker method public android.support.v4.app.NotificationCompat.BigPictureStyle setBigContentTitle(java.lang.CharSequence); 6458*344a7f5eSAndroid Build Coastguard Worker method public android.support.v4.app.NotificationCompat.BigPictureStyle setSummaryText(java.lang.CharSequence); 6459*344a7f5eSAndroid Build Coastguard Worker } 6460*344a7f5eSAndroid Build Coastguard Worker 6461*344a7f5eSAndroid Build Coastguard Worker public static class NotificationCompat.BigTextStyle extends android.support.v4.app.NotificationCompat.Style { 6462*344a7f5eSAndroid Build Coastguard Worker ctor public NotificationCompat.BigTextStyle(); 6463*344a7f5eSAndroid Build Coastguard Worker ctor public NotificationCompat.BigTextStyle(android.support.v4.app.NotificationCompat.Builder); 6464*344a7f5eSAndroid Build Coastguard Worker method public android.support.v4.app.NotificationCompat.BigTextStyle bigText(java.lang.CharSequence); 6465*344a7f5eSAndroid Build Coastguard Worker method public android.support.v4.app.NotificationCompat.BigTextStyle setBigContentTitle(java.lang.CharSequence); 6466*344a7f5eSAndroid Build Coastguard Worker method public android.support.v4.app.NotificationCompat.BigTextStyle setSummaryText(java.lang.CharSequence); 6467*344a7f5eSAndroid Build Coastguard Worker } 6468*344a7f5eSAndroid Build Coastguard Worker 6469*344a7f5eSAndroid Build Coastguard Worker public static class NotificationCompat.Builder { 6470*344a7f5eSAndroid Build Coastguard Worker ctor public NotificationCompat.Builder(android.content.Context, java.lang.String); 6471*344a7f5eSAndroid Build Coastguard Worker ctor public deprecated NotificationCompat.Builder(android.content.Context); 6472*344a7f5eSAndroid Build Coastguard Worker method public android.support.v4.app.NotificationCompat.Builder addAction(int, java.lang.CharSequence, android.app.PendingIntent); 6473*344a7f5eSAndroid Build Coastguard Worker method public android.support.v4.app.NotificationCompat.Builder addAction(android.support.v4.app.NotificationCompat.Action); 6474*344a7f5eSAndroid Build Coastguard Worker method public android.support.v4.app.NotificationCompat.Builder addExtras(android.os.Bundle); 6475*344a7f5eSAndroid Build Coastguard Worker method public android.support.v4.app.NotificationCompat.Builder addPerson(java.lang.String); 6476*344a7f5eSAndroid Build Coastguard Worker method public android.app.Notification build(); 6477*344a7f5eSAndroid Build Coastguard Worker method public android.support.v4.app.NotificationCompat.Builder extend(android.support.v4.app.NotificationCompat.Extender); 6478*344a7f5eSAndroid Build Coastguard Worker method public android.os.Bundle getExtras(); 6479*344a7f5eSAndroid Build Coastguard Worker method public deprecated android.app.Notification getNotification(); 6480*344a7f5eSAndroid Build Coastguard Worker method protected static java.lang.CharSequence limitCharSequenceLength(java.lang.CharSequence); 6481*344a7f5eSAndroid Build Coastguard Worker method public android.support.v4.app.NotificationCompat.Builder setAutoCancel(boolean); 6482*344a7f5eSAndroid Build Coastguard Worker method public android.support.v4.app.NotificationCompat.Builder setBadgeIconType(int); 6483*344a7f5eSAndroid Build Coastguard Worker method public android.support.v4.app.NotificationCompat.Builder setCategory(java.lang.String); 6484*344a7f5eSAndroid Build Coastguard Worker method public deprecated android.support.v4.app.NotificationCompat.Builder setChannel(java.lang.String); 6485*344a7f5eSAndroid Build Coastguard Worker method public android.support.v4.app.NotificationCompat.Builder setChannelId(java.lang.String); 6486*344a7f5eSAndroid Build Coastguard Worker method public android.support.v4.app.NotificationCompat.Builder setColor(int); 6487*344a7f5eSAndroid Build Coastguard Worker method public android.support.v4.app.NotificationCompat.Builder setColorized(boolean); 6488*344a7f5eSAndroid Build Coastguard Worker method public android.support.v4.app.NotificationCompat.Builder setContent(android.widget.RemoteViews); 6489*344a7f5eSAndroid Build Coastguard Worker method public android.support.v4.app.NotificationCompat.Builder setContentInfo(java.lang.CharSequence); 6490*344a7f5eSAndroid Build Coastguard Worker method public android.support.v4.app.NotificationCompat.Builder setContentIntent(android.app.PendingIntent); 6491*344a7f5eSAndroid Build Coastguard Worker method public android.support.v4.app.NotificationCompat.Builder setContentText(java.lang.CharSequence); 6492*344a7f5eSAndroid Build Coastguard Worker method public android.support.v4.app.NotificationCompat.Builder setContentTitle(java.lang.CharSequence); 6493*344a7f5eSAndroid Build Coastguard Worker method public android.support.v4.app.NotificationCompat.Builder setCustomBigContentView(android.widget.RemoteViews); 6494*344a7f5eSAndroid Build Coastguard Worker method public android.support.v4.app.NotificationCompat.Builder setCustomContentView(android.widget.RemoteViews); 6495*344a7f5eSAndroid Build Coastguard Worker method public android.support.v4.app.NotificationCompat.Builder setCustomHeadsUpContentView(android.widget.RemoteViews); 6496*344a7f5eSAndroid Build Coastguard Worker method public android.support.v4.app.NotificationCompat.Builder setDefaults(int); 6497*344a7f5eSAndroid Build Coastguard Worker method public android.support.v4.app.NotificationCompat.Builder setDeleteIntent(android.app.PendingIntent); 6498*344a7f5eSAndroid Build Coastguard Worker method public android.support.v4.app.NotificationCompat.Builder setExtras(android.os.Bundle); 6499*344a7f5eSAndroid Build Coastguard Worker method public android.support.v4.app.NotificationCompat.Builder setFullScreenIntent(android.app.PendingIntent, boolean); 6500*344a7f5eSAndroid Build Coastguard Worker method public android.support.v4.app.NotificationCompat.Builder setGroup(java.lang.String); 6501*344a7f5eSAndroid Build Coastguard Worker method public android.support.v4.app.NotificationCompat.Builder setGroupAlertBehavior(int); 6502*344a7f5eSAndroid Build Coastguard Worker method public android.support.v4.app.NotificationCompat.Builder setGroupSummary(boolean); 6503*344a7f5eSAndroid Build Coastguard Worker method public android.support.v4.app.NotificationCompat.Builder setLargeIcon(android.graphics.Bitmap); 6504*344a7f5eSAndroid Build Coastguard Worker method public android.support.v4.app.NotificationCompat.Builder setLights(int, int, int); 6505*344a7f5eSAndroid Build Coastguard Worker method public android.support.v4.app.NotificationCompat.Builder setLocalOnly(boolean); 6506*344a7f5eSAndroid Build Coastguard Worker method public android.support.v4.app.NotificationCompat.Builder setNumber(int); 6507*344a7f5eSAndroid Build Coastguard Worker method public android.support.v4.app.NotificationCompat.Builder setOngoing(boolean); 6508*344a7f5eSAndroid Build Coastguard Worker method public android.support.v4.app.NotificationCompat.Builder setOnlyAlertOnce(boolean); 6509*344a7f5eSAndroid Build Coastguard Worker method public android.support.v4.app.NotificationCompat.Builder setPriority(int); 6510*344a7f5eSAndroid Build Coastguard Worker method public android.support.v4.app.NotificationCompat.Builder setProgress(int, int, boolean); 6511*344a7f5eSAndroid Build Coastguard Worker method public android.support.v4.app.NotificationCompat.Builder setPublicVersion(android.app.Notification); 6512*344a7f5eSAndroid Build Coastguard Worker method public android.support.v4.app.NotificationCompat.Builder setRemoteInputHistory(java.lang.CharSequence[]); 6513*344a7f5eSAndroid Build Coastguard Worker method public android.support.v4.app.NotificationCompat.Builder setShortcutId(java.lang.String); 6514*344a7f5eSAndroid Build Coastguard Worker method public android.support.v4.app.NotificationCompat.Builder setShowWhen(boolean); 6515*344a7f5eSAndroid Build Coastguard Worker method public android.support.v4.app.NotificationCompat.Builder setSmallIcon(int); 6516*344a7f5eSAndroid Build Coastguard Worker method public android.support.v4.app.NotificationCompat.Builder setSmallIcon(int, int); 6517*344a7f5eSAndroid Build Coastguard Worker method public android.support.v4.app.NotificationCompat.Builder setSortKey(java.lang.String); 6518*344a7f5eSAndroid Build Coastguard Worker method public android.support.v4.app.NotificationCompat.Builder setSound(android.net.Uri); 6519*344a7f5eSAndroid Build Coastguard Worker method public android.support.v4.app.NotificationCompat.Builder setSound(android.net.Uri, int); 6520*344a7f5eSAndroid Build Coastguard Worker method public android.support.v4.app.NotificationCompat.Builder setStyle(android.support.v4.app.NotificationCompat.Style); 6521*344a7f5eSAndroid Build Coastguard Worker method public android.support.v4.app.NotificationCompat.Builder setSubText(java.lang.CharSequence); 6522*344a7f5eSAndroid Build Coastguard Worker method public android.support.v4.app.NotificationCompat.Builder setTicker(java.lang.CharSequence); 6523*344a7f5eSAndroid Build Coastguard Worker method public android.support.v4.app.NotificationCompat.Builder setTicker(java.lang.CharSequence, android.widget.RemoteViews); 6524*344a7f5eSAndroid Build Coastguard Worker method public deprecated android.support.v4.app.NotificationCompat.Builder setTimeout(long); 6525*344a7f5eSAndroid Build Coastguard Worker method public android.support.v4.app.NotificationCompat.Builder setTimeoutAfter(long); 6526*344a7f5eSAndroid Build Coastguard Worker method public android.support.v4.app.NotificationCompat.Builder setUsesChronometer(boolean); 6527*344a7f5eSAndroid Build Coastguard Worker method public android.support.v4.app.NotificationCompat.Builder setVibrate(long[]); 6528*344a7f5eSAndroid Build Coastguard Worker method public android.support.v4.app.NotificationCompat.Builder setVisibility(int); 6529*344a7f5eSAndroid Build Coastguard Worker method public android.support.v4.app.NotificationCompat.Builder setWhen(long); 6530*344a7f5eSAndroid Build Coastguard Worker field public java.util.ArrayList<java.lang.String> mPeople; 6531*344a7f5eSAndroid Build Coastguard Worker } 6532*344a7f5eSAndroid Build Coastguard Worker 6533*344a7f5eSAndroid Build Coastguard Worker public static final class NotificationCompat.CarExtender implements android.support.v4.app.NotificationCompat.Extender { 6534*344a7f5eSAndroid Build Coastguard Worker ctor public NotificationCompat.CarExtender(); 6535*344a7f5eSAndroid Build Coastguard Worker ctor public NotificationCompat.CarExtender(android.app.Notification); 6536*344a7f5eSAndroid Build Coastguard Worker method public android.support.v4.app.NotificationCompat.Builder extend(android.support.v4.app.NotificationCompat.Builder); 6537*344a7f5eSAndroid Build Coastguard Worker method public int getColor(); 6538*344a7f5eSAndroid Build Coastguard Worker method public android.graphics.Bitmap getLargeIcon(); 6539*344a7f5eSAndroid Build Coastguard Worker method public android.support.v4.app.NotificationCompat.CarExtender.UnreadConversation getUnreadConversation(); 6540*344a7f5eSAndroid Build Coastguard Worker method public android.support.v4.app.NotificationCompat.CarExtender setColor(int); 6541*344a7f5eSAndroid Build Coastguard Worker method public android.support.v4.app.NotificationCompat.CarExtender setLargeIcon(android.graphics.Bitmap); 6542*344a7f5eSAndroid Build Coastguard Worker method public android.support.v4.app.NotificationCompat.CarExtender setUnreadConversation(android.support.v4.app.NotificationCompat.CarExtender.UnreadConversation); 6543*344a7f5eSAndroid Build Coastguard Worker } 6544*344a7f5eSAndroid Build Coastguard Worker 6545*344a7f5eSAndroid Build Coastguard Worker public static class NotificationCompat.CarExtender.UnreadConversation { 6546*344a7f5eSAndroid Build Coastguard Worker method public long getLatestTimestamp(); 6547*344a7f5eSAndroid Build Coastguard Worker method public java.lang.String[] getMessages(); 6548*344a7f5eSAndroid Build Coastguard Worker method public java.lang.String getParticipant(); 6549*344a7f5eSAndroid Build Coastguard Worker method public java.lang.String[] getParticipants(); 6550*344a7f5eSAndroid Build Coastguard Worker method public android.app.PendingIntent getReadPendingIntent(); 6551*344a7f5eSAndroid Build Coastguard Worker method public android.support.v4.app.RemoteInput getRemoteInput(); 6552*344a7f5eSAndroid Build Coastguard Worker method public android.app.PendingIntent getReplyPendingIntent(); 6553*344a7f5eSAndroid Build Coastguard Worker } 6554*344a7f5eSAndroid Build Coastguard Worker 6555*344a7f5eSAndroid Build Coastguard Worker public static class NotificationCompat.CarExtender.UnreadConversation.Builder { 6556*344a7f5eSAndroid Build Coastguard Worker ctor public NotificationCompat.CarExtender.UnreadConversation.Builder(java.lang.String); 6557*344a7f5eSAndroid Build Coastguard Worker method public android.support.v4.app.NotificationCompat.CarExtender.UnreadConversation.Builder addMessage(java.lang.String); 6558*344a7f5eSAndroid Build Coastguard Worker method public android.support.v4.app.NotificationCompat.CarExtender.UnreadConversation build(); 6559*344a7f5eSAndroid Build Coastguard Worker method public android.support.v4.app.NotificationCompat.CarExtender.UnreadConversation.Builder setLatestTimestamp(long); 6560*344a7f5eSAndroid Build Coastguard Worker method public android.support.v4.app.NotificationCompat.CarExtender.UnreadConversation.Builder setReadPendingIntent(android.app.PendingIntent); 6561*344a7f5eSAndroid Build Coastguard Worker method public android.support.v4.app.NotificationCompat.CarExtender.UnreadConversation.Builder setReplyAction(android.app.PendingIntent, android.support.v4.app.RemoteInput); 6562*344a7f5eSAndroid Build Coastguard Worker } 6563*344a7f5eSAndroid Build Coastguard Worker 6564*344a7f5eSAndroid Build Coastguard Worker public static abstract interface NotificationCompat.Extender { 6565*344a7f5eSAndroid Build Coastguard Worker method public abstract android.support.v4.app.NotificationCompat.Builder extend(android.support.v4.app.NotificationCompat.Builder); 6566*344a7f5eSAndroid Build Coastguard Worker } 6567*344a7f5eSAndroid Build Coastguard Worker 6568*344a7f5eSAndroid Build Coastguard Worker public static class NotificationCompat.InboxStyle extends android.support.v4.app.NotificationCompat.Style { 6569*344a7f5eSAndroid Build Coastguard Worker ctor public NotificationCompat.InboxStyle(); 6570*344a7f5eSAndroid Build Coastguard Worker ctor public NotificationCompat.InboxStyle(android.support.v4.app.NotificationCompat.Builder); 6571*344a7f5eSAndroid Build Coastguard Worker method public android.support.v4.app.NotificationCompat.InboxStyle addLine(java.lang.CharSequence); 6572*344a7f5eSAndroid Build Coastguard Worker method public android.support.v4.app.NotificationCompat.InboxStyle setBigContentTitle(java.lang.CharSequence); 6573*344a7f5eSAndroid Build Coastguard Worker method public android.support.v4.app.NotificationCompat.InboxStyle setSummaryText(java.lang.CharSequence); 6574*344a7f5eSAndroid Build Coastguard Worker } 6575*344a7f5eSAndroid Build Coastguard Worker 6576*344a7f5eSAndroid Build Coastguard Worker public static class NotificationCompat.MessagingStyle extends android.support.v4.app.NotificationCompat.Style { 6577*344a7f5eSAndroid Build Coastguard Worker ctor public NotificationCompat.MessagingStyle(java.lang.CharSequence); 6578*344a7f5eSAndroid Build Coastguard Worker method public void addCompatExtras(android.os.Bundle); 6579*344a7f5eSAndroid Build Coastguard Worker method public android.support.v4.app.NotificationCompat.MessagingStyle addMessage(java.lang.CharSequence, long, java.lang.CharSequence); 6580*344a7f5eSAndroid Build Coastguard Worker method public android.support.v4.app.NotificationCompat.MessagingStyle addMessage(android.support.v4.app.NotificationCompat.MessagingStyle.Message); 6581*344a7f5eSAndroid Build Coastguard Worker method public static android.support.v4.app.NotificationCompat.MessagingStyle extractMessagingStyleFromNotification(android.app.Notification); 6582*344a7f5eSAndroid Build Coastguard Worker method public java.lang.CharSequence getConversationTitle(); 6583*344a7f5eSAndroid Build Coastguard Worker method public java.util.List<android.support.v4.app.NotificationCompat.MessagingStyle.Message> getMessages(); 6584*344a7f5eSAndroid Build Coastguard Worker method public java.lang.CharSequence getUserDisplayName(); 6585*344a7f5eSAndroid Build Coastguard Worker method public android.support.v4.app.NotificationCompat.MessagingStyle setConversationTitle(java.lang.CharSequence); 6586*344a7f5eSAndroid Build Coastguard Worker field public static final int MAXIMUM_RETAINED_MESSAGES = 25; // 0x19 6587*344a7f5eSAndroid Build Coastguard Worker } 6588*344a7f5eSAndroid Build Coastguard Worker 6589*344a7f5eSAndroid Build Coastguard Worker public static final class NotificationCompat.MessagingStyle.Message { 6590*344a7f5eSAndroid Build Coastguard Worker ctor public NotificationCompat.MessagingStyle.Message(java.lang.CharSequence, long, java.lang.CharSequence); 6591*344a7f5eSAndroid Build Coastguard Worker method public java.lang.String getDataMimeType(); 6592*344a7f5eSAndroid Build Coastguard Worker method public android.net.Uri getDataUri(); 6593*344a7f5eSAndroid Build Coastguard Worker method public android.os.Bundle getExtras(); 6594*344a7f5eSAndroid Build Coastguard Worker method public java.lang.CharSequence getSender(); 6595*344a7f5eSAndroid Build Coastguard Worker method public java.lang.CharSequence getText(); 6596*344a7f5eSAndroid Build Coastguard Worker method public long getTimestamp(); 6597*344a7f5eSAndroid Build Coastguard Worker method public android.support.v4.app.NotificationCompat.MessagingStyle.Message setData(java.lang.String, android.net.Uri); 6598*344a7f5eSAndroid Build Coastguard Worker } 6599*344a7f5eSAndroid Build Coastguard Worker 6600*344a7f5eSAndroid Build Coastguard Worker public static abstract class NotificationCompat.Style { 6601*344a7f5eSAndroid Build Coastguard Worker ctor public NotificationCompat.Style(); 6602*344a7f5eSAndroid Build Coastguard Worker method public android.app.Notification build(); 6603*344a7f5eSAndroid Build Coastguard Worker method public void setBuilder(android.support.v4.app.NotificationCompat.Builder); 6604*344a7f5eSAndroid Build Coastguard Worker } 6605*344a7f5eSAndroid Build Coastguard Worker 6606*344a7f5eSAndroid Build Coastguard Worker public static final class NotificationCompat.WearableExtender implements android.support.v4.app.NotificationCompat.Extender { 6607*344a7f5eSAndroid Build Coastguard Worker ctor public NotificationCompat.WearableExtender(); 6608*344a7f5eSAndroid Build Coastguard Worker ctor public NotificationCompat.WearableExtender(android.app.Notification); 6609*344a7f5eSAndroid Build Coastguard Worker method public android.support.v4.app.NotificationCompat.WearableExtender addAction(android.support.v4.app.NotificationCompat.Action); 6610*344a7f5eSAndroid Build Coastguard Worker method public android.support.v4.app.NotificationCompat.WearableExtender addActions(java.util.List<android.support.v4.app.NotificationCompat.Action>); 6611*344a7f5eSAndroid Build Coastguard Worker method public android.support.v4.app.NotificationCompat.WearableExtender addPage(android.app.Notification); 6612*344a7f5eSAndroid Build Coastguard Worker method public android.support.v4.app.NotificationCompat.WearableExtender addPages(java.util.List<android.app.Notification>); 6613*344a7f5eSAndroid Build Coastguard Worker method public android.support.v4.app.NotificationCompat.WearableExtender clearActions(); 6614*344a7f5eSAndroid Build Coastguard Worker method public android.support.v4.app.NotificationCompat.WearableExtender clearPages(); 6615*344a7f5eSAndroid Build Coastguard Worker method public android.support.v4.app.NotificationCompat.WearableExtender clone(); 6616*344a7f5eSAndroid Build Coastguard Worker method public android.support.v4.app.NotificationCompat.Builder extend(android.support.v4.app.NotificationCompat.Builder); 6617*344a7f5eSAndroid Build Coastguard Worker method public java.util.List<android.support.v4.app.NotificationCompat.Action> getActions(); 6618*344a7f5eSAndroid Build Coastguard Worker method public android.graphics.Bitmap getBackground(); 6619*344a7f5eSAndroid Build Coastguard Worker method public java.lang.String getBridgeTag(); 6620*344a7f5eSAndroid Build Coastguard Worker method public int getContentAction(); 6621*344a7f5eSAndroid Build Coastguard Worker method public int getContentIcon(); 6622*344a7f5eSAndroid Build Coastguard Worker method public int getContentIconGravity(); 6623*344a7f5eSAndroid Build Coastguard Worker method public boolean getContentIntentAvailableOffline(); 6624*344a7f5eSAndroid Build Coastguard Worker method public int getCustomContentHeight(); 6625*344a7f5eSAndroid Build Coastguard Worker method public int getCustomSizePreset(); 6626*344a7f5eSAndroid Build Coastguard Worker method public java.lang.String getDismissalId(); 6627*344a7f5eSAndroid Build Coastguard Worker method public android.app.PendingIntent getDisplayIntent(); 6628*344a7f5eSAndroid Build Coastguard Worker method public int getGravity(); 6629*344a7f5eSAndroid Build Coastguard Worker method public boolean getHintAmbientBigPicture(); 6630*344a7f5eSAndroid Build Coastguard Worker method public boolean getHintAvoidBackgroundClipping(); 6631*344a7f5eSAndroid Build Coastguard Worker method public boolean getHintContentIntentLaunchesActivity(); 6632*344a7f5eSAndroid Build Coastguard Worker method public boolean getHintHideIcon(); 6633*344a7f5eSAndroid Build Coastguard Worker method public int getHintScreenTimeout(); 6634*344a7f5eSAndroid Build Coastguard Worker method public boolean getHintShowBackgroundOnly(); 6635*344a7f5eSAndroid Build Coastguard Worker method public java.util.List<android.app.Notification> getPages(); 6636*344a7f5eSAndroid Build Coastguard Worker method public boolean getStartScrollBottom(); 6637*344a7f5eSAndroid Build Coastguard Worker method public android.support.v4.app.NotificationCompat.WearableExtender setBackground(android.graphics.Bitmap); 6638*344a7f5eSAndroid Build Coastguard Worker method public android.support.v4.app.NotificationCompat.WearableExtender setBridgeTag(java.lang.String); 6639*344a7f5eSAndroid Build Coastguard Worker method public android.support.v4.app.NotificationCompat.WearableExtender setContentAction(int); 6640*344a7f5eSAndroid Build Coastguard Worker method public android.support.v4.app.NotificationCompat.WearableExtender setContentIcon(int); 6641*344a7f5eSAndroid Build Coastguard Worker method public android.support.v4.app.NotificationCompat.WearableExtender setContentIconGravity(int); 6642*344a7f5eSAndroid Build Coastguard Worker method public android.support.v4.app.NotificationCompat.WearableExtender setContentIntentAvailableOffline(boolean); 6643*344a7f5eSAndroid Build Coastguard Worker method public android.support.v4.app.NotificationCompat.WearableExtender setCustomContentHeight(int); 6644*344a7f5eSAndroid Build Coastguard Worker method public android.support.v4.app.NotificationCompat.WearableExtender setCustomSizePreset(int); 6645*344a7f5eSAndroid Build Coastguard Worker method public android.support.v4.app.NotificationCompat.WearableExtender setDismissalId(java.lang.String); 6646*344a7f5eSAndroid Build Coastguard Worker method public android.support.v4.app.NotificationCompat.WearableExtender setDisplayIntent(android.app.PendingIntent); 6647*344a7f5eSAndroid Build Coastguard Worker method public android.support.v4.app.NotificationCompat.WearableExtender setGravity(int); 6648*344a7f5eSAndroid Build Coastguard Worker method public android.support.v4.app.NotificationCompat.WearableExtender setHintAmbientBigPicture(boolean); 6649*344a7f5eSAndroid Build Coastguard Worker method public android.support.v4.app.NotificationCompat.WearableExtender setHintAvoidBackgroundClipping(boolean); 6650*344a7f5eSAndroid Build Coastguard Worker method public android.support.v4.app.NotificationCompat.WearableExtender setHintContentIntentLaunchesActivity(boolean); 6651*344a7f5eSAndroid Build Coastguard Worker method public android.support.v4.app.NotificationCompat.WearableExtender setHintHideIcon(boolean); 6652*344a7f5eSAndroid Build Coastguard Worker method public android.support.v4.app.NotificationCompat.WearableExtender setHintScreenTimeout(int); 6653*344a7f5eSAndroid Build Coastguard Worker method public android.support.v4.app.NotificationCompat.WearableExtender setHintShowBackgroundOnly(boolean); 6654*344a7f5eSAndroid Build Coastguard Worker method public android.support.v4.app.NotificationCompat.WearableExtender setStartScrollBottom(boolean); 6655*344a7f5eSAndroid Build Coastguard Worker field public static final int SCREEN_TIMEOUT_LONG = -1; // 0xffffffff 6656*344a7f5eSAndroid Build Coastguard Worker field public static final int SCREEN_TIMEOUT_SHORT = 0; // 0x0 6657*344a7f5eSAndroid Build Coastguard Worker field public static final int SIZE_DEFAULT = 0; // 0x0 6658*344a7f5eSAndroid Build Coastguard Worker field public static final int SIZE_FULL_SCREEN = 5; // 0x5 6659*344a7f5eSAndroid Build Coastguard Worker field public static final int SIZE_LARGE = 4; // 0x4 6660*344a7f5eSAndroid Build Coastguard Worker field public static final int SIZE_MEDIUM = 3; // 0x3 6661*344a7f5eSAndroid Build Coastguard Worker field public static final int SIZE_SMALL = 2; // 0x2 6662*344a7f5eSAndroid Build Coastguard Worker field public static final int SIZE_XSMALL = 1; // 0x1 6663*344a7f5eSAndroid Build Coastguard Worker field public static final int UNSET_ACTION_INDEX = -1; // 0xffffffff 6664*344a7f5eSAndroid Build Coastguard Worker } 6665*344a7f5eSAndroid Build Coastguard Worker 6666*344a7f5eSAndroid Build Coastguard Worker public final class NotificationCompatExtras { 6667*344a7f5eSAndroid Build Coastguard Worker field public static final java.lang.String EXTRA_ACTION_EXTRAS = "android.support.actionExtras"; 6668*344a7f5eSAndroid Build Coastguard Worker field public static final java.lang.String EXTRA_GROUP_KEY = "android.support.groupKey"; 6669*344a7f5eSAndroid Build Coastguard Worker field public static final java.lang.String EXTRA_GROUP_SUMMARY = "android.support.isGroupSummary"; 6670*344a7f5eSAndroid Build Coastguard Worker field public static final java.lang.String EXTRA_LOCAL_ONLY = "android.support.localOnly"; 6671*344a7f5eSAndroid Build Coastguard Worker field public static final java.lang.String EXTRA_REMOTE_INPUTS = "android.support.remoteInputs"; 6672*344a7f5eSAndroid Build Coastguard Worker field public static final java.lang.String EXTRA_SORT_KEY = "android.support.sortKey"; 6673*344a7f5eSAndroid Build Coastguard Worker } 6674*344a7f5eSAndroid Build Coastguard Worker 6675*344a7f5eSAndroid Build Coastguard Worker public abstract class NotificationCompatSideChannelService extends android.app.Service { 6676*344a7f5eSAndroid Build Coastguard Worker ctor public NotificationCompatSideChannelService(); 6677*344a7f5eSAndroid Build Coastguard Worker method public abstract void cancel(java.lang.String, int, java.lang.String); 6678*344a7f5eSAndroid Build Coastguard Worker method public abstract void cancelAll(java.lang.String); 6679*344a7f5eSAndroid Build Coastguard Worker method public abstract void notify(java.lang.String, int, java.lang.String, android.app.Notification); 6680*344a7f5eSAndroid Build Coastguard Worker method public android.os.IBinder onBind(android.content.Intent); 6681*344a7f5eSAndroid Build Coastguard Worker } 6682*344a7f5eSAndroid Build Coastguard Worker 6683*344a7f5eSAndroid Build Coastguard Worker public final class NotificationManagerCompat { 6684*344a7f5eSAndroid Build Coastguard Worker method public boolean areNotificationsEnabled(); 6685*344a7f5eSAndroid Build Coastguard Worker method public void cancel(int); 6686*344a7f5eSAndroid Build Coastguard Worker method public void cancel(java.lang.String, int); 6687*344a7f5eSAndroid Build Coastguard Worker method public void cancelAll(); 6688*344a7f5eSAndroid Build Coastguard Worker method public static android.support.v4.app.NotificationManagerCompat from(android.content.Context); 6689*344a7f5eSAndroid Build Coastguard Worker method public static java.util.Set<java.lang.String> getEnabledListenerPackages(android.content.Context); 6690*344a7f5eSAndroid Build Coastguard Worker method public int getImportance(); 6691*344a7f5eSAndroid Build Coastguard Worker method public void notify(int, android.app.Notification); 6692*344a7f5eSAndroid Build Coastguard Worker method public void notify(java.lang.String, int, android.app.Notification); 6693*344a7f5eSAndroid Build Coastguard Worker field public static final java.lang.String ACTION_BIND_SIDE_CHANNEL = "android.support.BIND_NOTIFICATION_SIDE_CHANNEL"; 6694*344a7f5eSAndroid Build Coastguard Worker field public static final java.lang.String EXTRA_USE_SIDE_CHANNEL = "android.support.useSideChannel"; 6695*344a7f5eSAndroid Build Coastguard Worker field public static final int IMPORTANCE_DEFAULT = 3; // 0x3 6696*344a7f5eSAndroid Build Coastguard Worker field public static final int IMPORTANCE_HIGH = 4; // 0x4 6697*344a7f5eSAndroid Build Coastguard Worker field public static final int IMPORTANCE_LOW = 2; // 0x2 6698*344a7f5eSAndroid Build Coastguard Worker field public static final int IMPORTANCE_MAX = 5; // 0x5 6699*344a7f5eSAndroid Build Coastguard Worker field public static final int IMPORTANCE_MIN = 1; // 0x1 6700*344a7f5eSAndroid Build Coastguard Worker field public static final int IMPORTANCE_NONE = 0; // 0x0 6701*344a7f5eSAndroid Build Coastguard Worker field public static final int IMPORTANCE_UNSPECIFIED = -1000; // 0xfffffc18 6702*344a7f5eSAndroid Build Coastguard Worker } 6703*344a7f5eSAndroid Build Coastguard Worker 6704*344a7f5eSAndroid Build Coastguard Worker public final class RemoteInput extends android.support.v4.app.RemoteInputCompatBase.RemoteInput { 6705*344a7f5eSAndroid Build Coastguard Worker method public static void addDataResultToIntent(android.support.v4.app.RemoteInput, android.content.Intent, java.util.Map<java.lang.String, android.net.Uri>); 6706*344a7f5eSAndroid Build Coastguard Worker method public static void addResultsToIntent(android.support.v4.app.RemoteInput[], android.content.Intent, android.os.Bundle); 6707*344a7f5eSAndroid Build Coastguard Worker method public boolean getAllowFreeFormInput(); 6708*344a7f5eSAndroid Build Coastguard Worker method public java.util.Set<java.lang.String> getAllowedDataTypes(); 6709*344a7f5eSAndroid Build Coastguard Worker method public java.lang.CharSequence[] getChoices(); 6710*344a7f5eSAndroid Build Coastguard Worker method public static java.util.Map<java.lang.String, android.net.Uri> getDataResultsFromIntent(android.content.Intent, java.lang.String); 6711*344a7f5eSAndroid Build Coastguard Worker method public android.os.Bundle getExtras(); 6712*344a7f5eSAndroid Build Coastguard Worker method public java.lang.CharSequence getLabel(); 6713*344a7f5eSAndroid Build Coastguard Worker method public java.lang.String getResultKey(); 6714*344a7f5eSAndroid Build Coastguard Worker method public static android.os.Bundle getResultsFromIntent(android.content.Intent); 6715*344a7f5eSAndroid Build Coastguard Worker method public boolean isDataOnly(); 6716*344a7f5eSAndroid Build Coastguard Worker field public static final java.lang.String EXTRA_RESULTS_DATA = "android.remoteinput.resultsData"; 6717*344a7f5eSAndroid Build Coastguard Worker field public static final java.lang.String RESULTS_CLIP_LABEL = "android.remoteinput.results"; 6718*344a7f5eSAndroid Build Coastguard Worker } 6719*344a7f5eSAndroid Build Coastguard Worker 6720*344a7f5eSAndroid Build Coastguard Worker public static final class RemoteInput.Builder { 6721*344a7f5eSAndroid Build Coastguard Worker ctor public RemoteInput.Builder(java.lang.String); 6722*344a7f5eSAndroid Build Coastguard Worker method public android.support.v4.app.RemoteInput.Builder addExtras(android.os.Bundle); 6723*344a7f5eSAndroid Build Coastguard Worker method public android.support.v4.app.RemoteInput build(); 6724*344a7f5eSAndroid Build Coastguard Worker method public android.os.Bundle getExtras(); 6725*344a7f5eSAndroid Build Coastguard Worker method public android.support.v4.app.RemoteInput.Builder setAllowDataType(java.lang.String, boolean); 6726*344a7f5eSAndroid Build Coastguard Worker method public android.support.v4.app.RemoteInput.Builder setAllowFreeFormInput(boolean); 6727*344a7f5eSAndroid Build Coastguard Worker method public android.support.v4.app.RemoteInput.Builder setChoices(java.lang.CharSequence[]); 6728*344a7f5eSAndroid Build Coastguard Worker method public android.support.v4.app.RemoteInput.Builder setLabel(java.lang.CharSequence); 6729*344a7f5eSAndroid Build Coastguard Worker } 6730*344a7f5eSAndroid Build Coastguard Worker 6731*344a7f5eSAndroid Build Coastguard Worker deprecated class RemoteInputCompatBase { 6732*344a7f5eSAndroid Build Coastguard Worker } 6733*344a7f5eSAndroid Build Coastguard Worker 6734*344a7f5eSAndroid Build Coastguard Worker public static abstract class RemoteInputCompatBase.RemoteInput { 6735*344a7f5eSAndroid Build Coastguard Worker ctor public RemoteInputCompatBase.RemoteInput(); 6736*344a7f5eSAndroid Build Coastguard Worker method protected abstract boolean getAllowFreeFormInput(); 6737*344a7f5eSAndroid Build Coastguard Worker method protected abstract java.util.Set<java.lang.String> getAllowedDataTypes(); 6738*344a7f5eSAndroid Build Coastguard Worker method protected abstract java.lang.CharSequence[] getChoices(); 6739*344a7f5eSAndroid Build Coastguard Worker method protected abstract android.os.Bundle getExtras(); 6740*344a7f5eSAndroid Build Coastguard Worker method protected abstract java.lang.CharSequence getLabel(); 6741*344a7f5eSAndroid Build Coastguard Worker method protected abstract java.lang.String getResultKey(); 6742*344a7f5eSAndroid Build Coastguard Worker } 6743*344a7f5eSAndroid Build Coastguard Worker 6744*344a7f5eSAndroid Build Coastguard Worker public final class ServiceCompat { 6745*344a7f5eSAndroid Build Coastguard Worker method public static void stopForeground(android.app.Service, int); 6746*344a7f5eSAndroid Build Coastguard Worker field public static final int START_STICKY = 1; // 0x1 6747*344a7f5eSAndroid Build Coastguard Worker field public static final int STOP_FOREGROUND_DETACH = 2; // 0x2 6748*344a7f5eSAndroid Build Coastguard Worker field public static final int STOP_FOREGROUND_REMOVE = 1; // 0x1 6749*344a7f5eSAndroid Build Coastguard Worker } 6750*344a7f5eSAndroid Build Coastguard Worker 6751*344a7f5eSAndroid Build Coastguard Worker public final class ShareCompat { 6752*344a7f5eSAndroid Build Coastguard Worker method public static void configureMenuItem(android.view.MenuItem, android.support.v4.app.ShareCompat.IntentBuilder); 6753*344a7f5eSAndroid Build Coastguard Worker method public static void configureMenuItem(android.view.Menu, int, android.support.v4.app.ShareCompat.IntentBuilder); 6754*344a7f5eSAndroid Build Coastguard Worker method public static android.content.ComponentName getCallingActivity(android.app.Activity); 6755*344a7f5eSAndroid Build Coastguard Worker method public static java.lang.String getCallingPackage(android.app.Activity); 6756*344a7f5eSAndroid Build Coastguard Worker field public static final java.lang.String EXTRA_CALLING_ACTIVITY = "android.support.v4.app.EXTRA_CALLING_ACTIVITY"; 6757*344a7f5eSAndroid Build Coastguard Worker field public static final java.lang.String EXTRA_CALLING_PACKAGE = "android.support.v4.app.EXTRA_CALLING_PACKAGE"; 6758*344a7f5eSAndroid Build Coastguard Worker } 6759*344a7f5eSAndroid Build Coastguard Worker 6760*344a7f5eSAndroid Build Coastguard Worker public static class ShareCompat.IntentBuilder { 6761*344a7f5eSAndroid Build Coastguard Worker method public android.support.v4.app.ShareCompat.IntentBuilder addEmailBcc(java.lang.String); 6762*344a7f5eSAndroid Build Coastguard Worker method public android.support.v4.app.ShareCompat.IntentBuilder addEmailBcc(java.lang.String[]); 6763*344a7f5eSAndroid Build Coastguard Worker method public android.support.v4.app.ShareCompat.IntentBuilder addEmailCc(java.lang.String); 6764*344a7f5eSAndroid Build Coastguard Worker method public android.support.v4.app.ShareCompat.IntentBuilder addEmailCc(java.lang.String[]); 6765*344a7f5eSAndroid Build Coastguard Worker method public android.support.v4.app.ShareCompat.IntentBuilder addEmailTo(java.lang.String); 6766*344a7f5eSAndroid Build Coastguard Worker method public android.support.v4.app.ShareCompat.IntentBuilder addEmailTo(java.lang.String[]); 6767*344a7f5eSAndroid Build Coastguard Worker method public android.support.v4.app.ShareCompat.IntentBuilder addStream(android.net.Uri); 6768*344a7f5eSAndroid Build Coastguard Worker method public android.content.Intent createChooserIntent(); 6769*344a7f5eSAndroid Build Coastguard Worker method public static android.support.v4.app.ShareCompat.IntentBuilder from(android.app.Activity); 6770*344a7f5eSAndroid Build Coastguard Worker method public android.content.Intent getIntent(); 6771*344a7f5eSAndroid Build Coastguard Worker method public android.support.v4.app.ShareCompat.IntentBuilder setChooserTitle(java.lang.CharSequence); 6772*344a7f5eSAndroid Build Coastguard Worker method public android.support.v4.app.ShareCompat.IntentBuilder setChooserTitle(int); 6773*344a7f5eSAndroid Build Coastguard Worker method public android.support.v4.app.ShareCompat.IntentBuilder setEmailBcc(java.lang.String[]); 6774*344a7f5eSAndroid Build Coastguard Worker method public android.support.v4.app.ShareCompat.IntentBuilder setEmailCc(java.lang.String[]); 6775*344a7f5eSAndroid Build Coastguard Worker method public android.support.v4.app.ShareCompat.IntentBuilder setEmailTo(java.lang.String[]); 6776*344a7f5eSAndroid Build Coastguard Worker method public android.support.v4.app.ShareCompat.IntentBuilder setHtmlText(java.lang.String); 6777*344a7f5eSAndroid Build Coastguard Worker method public android.support.v4.app.ShareCompat.IntentBuilder setStream(android.net.Uri); 6778*344a7f5eSAndroid Build Coastguard Worker method public android.support.v4.app.ShareCompat.IntentBuilder setSubject(java.lang.String); 6779*344a7f5eSAndroid Build Coastguard Worker method public android.support.v4.app.ShareCompat.IntentBuilder setText(java.lang.CharSequence); 6780*344a7f5eSAndroid Build Coastguard Worker method public android.support.v4.app.ShareCompat.IntentBuilder setType(java.lang.String); 6781*344a7f5eSAndroid Build Coastguard Worker method public void startChooser(); 6782*344a7f5eSAndroid Build Coastguard Worker } 6783*344a7f5eSAndroid Build Coastguard Worker 6784*344a7f5eSAndroid Build Coastguard Worker public static class ShareCompat.IntentReader { 6785*344a7f5eSAndroid Build Coastguard Worker method public static android.support.v4.app.ShareCompat.IntentReader from(android.app.Activity); 6786*344a7f5eSAndroid Build Coastguard Worker method public android.content.ComponentName getCallingActivity(); 6787*344a7f5eSAndroid Build Coastguard Worker method public android.graphics.drawable.Drawable getCallingActivityIcon(); 6788*344a7f5eSAndroid Build Coastguard Worker method public android.graphics.drawable.Drawable getCallingApplicationIcon(); 6789*344a7f5eSAndroid Build Coastguard Worker method public java.lang.CharSequence getCallingApplicationLabel(); 6790*344a7f5eSAndroid Build Coastguard Worker method public java.lang.String getCallingPackage(); 6791*344a7f5eSAndroid Build Coastguard Worker method public java.lang.String[] getEmailBcc(); 6792*344a7f5eSAndroid Build Coastguard Worker method public java.lang.String[] getEmailCc(); 6793*344a7f5eSAndroid Build Coastguard Worker method public java.lang.String[] getEmailTo(); 6794*344a7f5eSAndroid Build Coastguard Worker method public java.lang.String getHtmlText(); 6795*344a7f5eSAndroid Build Coastguard Worker method public android.net.Uri getStream(); 6796*344a7f5eSAndroid Build Coastguard Worker method public android.net.Uri getStream(int); 6797*344a7f5eSAndroid Build Coastguard Worker method public int getStreamCount(); 6798*344a7f5eSAndroid Build Coastguard Worker method public java.lang.String getSubject(); 6799*344a7f5eSAndroid Build Coastguard Worker method public java.lang.CharSequence getText(); 6800*344a7f5eSAndroid Build Coastguard Worker method public java.lang.String getType(); 6801*344a7f5eSAndroid Build Coastguard Worker method public boolean isMultipleShare(); 6802*344a7f5eSAndroid Build Coastguard Worker method public boolean isShareIntent(); 6803*344a7f5eSAndroid Build Coastguard Worker method public boolean isSingleShare(); 6804*344a7f5eSAndroid Build Coastguard Worker } 6805*344a7f5eSAndroid Build Coastguard Worker 6806*344a7f5eSAndroid Build Coastguard Worker public abstract class SharedElementCallback { 6807*344a7f5eSAndroid Build Coastguard Worker ctor public SharedElementCallback(); 6808*344a7f5eSAndroid Build Coastguard Worker method public android.os.Parcelable onCaptureSharedElementSnapshot(android.view.View, android.graphics.Matrix, android.graphics.RectF); 6809*344a7f5eSAndroid Build Coastguard Worker method public android.view.View onCreateSnapshotView(android.content.Context, android.os.Parcelable); 6810*344a7f5eSAndroid Build Coastguard Worker method public void onMapSharedElements(java.util.List<java.lang.String>, java.util.Map<java.lang.String, android.view.View>); 6811*344a7f5eSAndroid Build Coastguard Worker method public void onRejectSharedElements(java.util.List<android.view.View>); 6812*344a7f5eSAndroid Build Coastguard Worker method public void onSharedElementEnd(java.util.List<java.lang.String>, java.util.List<android.view.View>, java.util.List<android.view.View>); 6813*344a7f5eSAndroid Build Coastguard Worker method public void onSharedElementStart(java.util.List<java.lang.String>, java.util.List<android.view.View>, java.util.List<android.view.View>); 6814*344a7f5eSAndroid Build Coastguard Worker method public void onSharedElementsArrived(java.util.List<java.lang.String>, java.util.List<android.view.View>, android.support.v4.app.SharedElementCallback.OnSharedElementsReadyListener); 6815*344a7f5eSAndroid Build Coastguard Worker } 6816*344a7f5eSAndroid Build Coastguard Worker 6817*344a7f5eSAndroid Build Coastguard Worker public static abstract interface SharedElementCallback.OnSharedElementsReadyListener { 6818*344a7f5eSAndroid Build Coastguard Worker method public abstract void onSharedElementsReady(); 6819*344a7f5eSAndroid Build Coastguard Worker } 6820*344a7f5eSAndroid Build Coastguard Worker 6821*344a7f5eSAndroid Build Coastguard Worker public final class TaskStackBuilder implements java.lang.Iterable { 6822*344a7f5eSAndroid Build Coastguard Worker method public android.support.v4.app.TaskStackBuilder addNextIntent(android.content.Intent); 6823*344a7f5eSAndroid Build Coastguard Worker method public android.support.v4.app.TaskStackBuilder addNextIntentWithParentStack(android.content.Intent); 6824*344a7f5eSAndroid Build Coastguard Worker method public android.support.v4.app.TaskStackBuilder addParentStack(android.app.Activity); 6825*344a7f5eSAndroid Build Coastguard Worker method public android.support.v4.app.TaskStackBuilder addParentStack(java.lang.Class<?>); 6826*344a7f5eSAndroid Build Coastguard Worker method public android.support.v4.app.TaskStackBuilder addParentStack(android.content.ComponentName); 6827*344a7f5eSAndroid Build Coastguard Worker method public static android.support.v4.app.TaskStackBuilder create(android.content.Context); 6828*344a7f5eSAndroid Build Coastguard Worker method public android.content.Intent editIntentAt(int); 6829*344a7f5eSAndroid Build Coastguard Worker method public static deprecated android.support.v4.app.TaskStackBuilder from(android.content.Context); 6830*344a7f5eSAndroid Build Coastguard Worker method public deprecated android.content.Intent getIntent(int); 6831*344a7f5eSAndroid Build Coastguard Worker method public int getIntentCount(); 6832*344a7f5eSAndroid Build Coastguard Worker method public android.content.Intent[] getIntents(); 6833*344a7f5eSAndroid Build Coastguard Worker method public android.app.PendingIntent getPendingIntent(int, int); 6834*344a7f5eSAndroid Build Coastguard Worker method public android.app.PendingIntent getPendingIntent(int, int, android.os.Bundle); 6835*344a7f5eSAndroid Build Coastguard Worker method public deprecated java.util.Iterator<android.content.Intent> iterator(); 6836*344a7f5eSAndroid Build Coastguard Worker method public void startActivities(); 6837*344a7f5eSAndroid Build Coastguard Worker method public void startActivities(android.os.Bundle); 6838*344a7f5eSAndroid Build Coastguard Worker } 6839*344a7f5eSAndroid Build Coastguard Worker 6840*344a7f5eSAndroid Build Coastguard Worker public static abstract interface TaskStackBuilder.SupportParentable { 6841*344a7f5eSAndroid Build Coastguard Worker method public abstract android.content.Intent getSupportParentActivityIntent(); 6842*344a7f5eSAndroid Build Coastguard Worker } 6843*344a7f5eSAndroid Build Coastguard Worker 6844*344a7f5eSAndroid Build Coastguard Worker} 6845*344a7f5eSAndroid Build Coastguard Worker 6846*344a7f5eSAndroid Build Coastguard Workerpackage android.support.v4.content { 6847*344a7f5eSAndroid Build Coastguard Worker 6848*344a7f5eSAndroid Build Coastguard Worker public abstract class AsyncTaskLoader<D> extends android.support.v4.content.Loader { 6849*344a7f5eSAndroid Build Coastguard Worker ctor public AsyncTaskLoader(android.content.Context); 6850*344a7f5eSAndroid Build Coastguard Worker method public void cancelLoadInBackground(); 6851*344a7f5eSAndroid Build Coastguard Worker method public boolean isLoadInBackgroundCanceled(); 6852*344a7f5eSAndroid Build Coastguard Worker method public abstract D loadInBackground(); 6853*344a7f5eSAndroid Build Coastguard Worker method public void onCanceled(D); 6854*344a7f5eSAndroid Build Coastguard Worker method protected D onLoadInBackground(); 6855*344a7f5eSAndroid Build Coastguard Worker method public void setUpdateThrottle(long); 6856*344a7f5eSAndroid Build Coastguard Worker } 6857*344a7f5eSAndroid Build Coastguard Worker 6858*344a7f5eSAndroid Build Coastguard Worker public final class ContentResolverCompat { 6859*344a7f5eSAndroid Build Coastguard Worker method public static android.database.Cursor query(android.content.ContentResolver, android.net.Uri, java.lang.String[], java.lang.String, java.lang.String[], java.lang.String, android.support.v4.os.CancellationSignal); 6860*344a7f5eSAndroid Build Coastguard Worker } 6861*344a7f5eSAndroid Build Coastguard Worker 6862*344a7f5eSAndroid Build Coastguard Worker public class ContextCompat { 6863*344a7f5eSAndroid Build Coastguard Worker ctor protected ContextCompat(); 6864*344a7f5eSAndroid Build Coastguard Worker method public static int checkSelfPermission(android.content.Context, java.lang.String); 6865*344a7f5eSAndroid Build Coastguard Worker method public static android.content.Context createDeviceProtectedStorageContext(android.content.Context); 6866*344a7f5eSAndroid Build Coastguard Worker method public static java.io.File getCodeCacheDir(android.content.Context); 6867*344a7f5eSAndroid Build Coastguard Worker method public static final int getColor(android.content.Context, int); 6868*344a7f5eSAndroid Build Coastguard Worker method public static final android.content.res.ColorStateList getColorStateList(android.content.Context, int); 6869*344a7f5eSAndroid Build Coastguard Worker method public static java.io.File getDataDir(android.content.Context); 6870*344a7f5eSAndroid Build Coastguard Worker method public static final android.graphics.drawable.Drawable getDrawable(android.content.Context, int); 6871*344a7f5eSAndroid Build Coastguard Worker method public static java.io.File[] getExternalCacheDirs(android.content.Context); 6872*344a7f5eSAndroid Build Coastguard Worker method public static java.io.File[] getExternalFilesDirs(android.content.Context, java.lang.String); 6873*344a7f5eSAndroid Build Coastguard Worker method public static final java.io.File getNoBackupFilesDir(android.content.Context); 6874*344a7f5eSAndroid Build Coastguard Worker method public static java.io.File[] getObbDirs(android.content.Context); 6875*344a7f5eSAndroid Build Coastguard Worker method public static boolean isDeviceProtectedStorage(android.content.Context); 6876*344a7f5eSAndroid Build Coastguard Worker method public static boolean startActivities(android.content.Context, android.content.Intent[]); 6877*344a7f5eSAndroid Build Coastguard Worker method public static boolean startActivities(android.content.Context, android.content.Intent[], android.os.Bundle); 6878*344a7f5eSAndroid Build Coastguard Worker method public static void startActivity(android.content.Context, android.content.Intent, android.os.Bundle); 6879*344a7f5eSAndroid Build Coastguard Worker method public static void startForegroundService(android.content.Context, android.content.Intent); 6880*344a7f5eSAndroid Build Coastguard Worker } 6881*344a7f5eSAndroid Build Coastguard Worker 6882*344a7f5eSAndroid Build Coastguard Worker public class CursorLoader extends android.support.v4.content.AsyncTaskLoader { 6883*344a7f5eSAndroid Build Coastguard Worker ctor public CursorLoader(android.content.Context); 6884*344a7f5eSAndroid Build Coastguard Worker ctor public CursorLoader(android.content.Context, android.net.Uri, java.lang.String[], java.lang.String, java.lang.String[], java.lang.String); 6885*344a7f5eSAndroid Build Coastguard Worker method public void deliverResult(android.database.Cursor); 6886*344a7f5eSAndroid Build Coastguard Worker method public java.lang.String[] getProjection(); 6887*344a7f5eSAndroid Build Coastguard Worker method public java.lang.String getSelection(); 6888*344a7f5eSAndroid Build Coastguard Worker method public java.lang.String[] getSelectionArgs(); 6889*344a7f5eSAndroid Build Coastguard Worker method public java.lang.String getSortOrder(); 6890*344a7f5eSAndroid Build Coastguard Worker method public android.net.Uri getUri(); 6891*344a7f5eSAndroid Build Coastguard Worker method public android.database.Cursor loadInBackground(); 6892*344a7f5eSAndroid Build Coastguard Worker method public void onCanceled(android.database.Cursor); 6893*344a7f5eSAndroid Build Coastguard Worker method public void setProjection(java.lang.String[]); 6894*344a7f5eSAndroid Build Coastguard Worker method public void setSelection(java.lang.String); 6895*344a7f5eSAndroid Build Coastguard Worker method public void setSelectionArgs(java.lang.String[]); 6896*344a7f5eSAndroid Build Coastguard Worker method public void setSortOrder(java.lang.String); 6897*344a7f5eSAndroid Build Coastguard Worker method public void setUri(android.net.Uri); 6898*344a7f5eSAndroid Build Coastguard Worker } 6899*344a7f5eSAndroid Build Coastguard Worker 6900*344a7f5eSAndroid Build Coastguard Worker public class FileProvider extends android.content.ContentProvider { 6901*344a7f5eSAndroid Build Coastguard Worker ctor public FileProvider(); 6902*344a7f5eSAndroid Build Coastguard Worker method public int delete(android.net.Uri, java.lang.String, java.lang.String[]); 6903*344a7f5eSAndroid Build Coastguard Worker method public java.lang.String getType(android.net.Uri); 6904*344a7f5eSAndroid Build Coastguard Worker method public static android.net.Uri getUriForFile(android.content.Context, java.lang.String, java.io.File); 6905*344a7f5eSAndroid Build Coastguard Worker method public android.net.Uri insert(android.net.Uri, android.content.ContentValues); 6906*344a7f5eSAndroid Build Coastguard Worker method public boolean onCreate(); 6907*344a7f5eSAndroid Build Coastguard Worker method public android.database.Cursor query(android.net.Uri, java.lang.String[], java.lang.String, java.lang.String[], java.lang.String); 6908*344a7f5eSAndroid Build Coastguard Worker method public int update(android.net.Uri, android.content.ContentValues, java.lang.String, java.lang.String[]); 6909*344a7f5eSAndroid Build Coastguard Worker } 6910*344a7f5eSAndroid Build Coastguard Worker 6911*344a7f5eSAndroid Build Coastguard Worker public final class IntentCompat { 6912*344a7f5eSAndroid Build Coastguard Worker method public static deprecated android.content.Intent makeMainActivity(android.content.ComponentName); 6913*344a7f5eSAndroid Build Coastguard Worker method public static android.content.Intent makeMainSelectorActivity(java.lang.String, java.lang.String); 6914*344a7f5eSAndroid Build Coastguard Worker method public static deprecated android.content.Intent makeRestartActivityTask(android.content.ComponentName); 6915*344a7f5eSAndroid Build Coastguard Worker field public static final deprecated java.lang.String ACTION_EXTERNAL_APPLICATIONS_AVAILABLE = "android.intent.action.EXTERNAL_APPLICATIONS_AVAILABLE"; 6916*344a7f5eSAndroid Build Coastguard Worker field public static final deprecated java.lang.String ACTION_EXTERNAL_APPLICATIONS_UNAVAILABLE = "android.intent.action.EXTERNAL_APPLICATIONS_UNAVAILABLE"; 6917*344a7f5eSAndroid Build Coastguard Worker field public static final java.lang.String CATEGORY_LEANBACK_LAUNCHER = "android.intent.category.LEANBACK_LAUNCHER"; 6918*344a7f5eSAndroid Build Coastguard Worker field public static final deprecated java.lang.String EXTRA_CHANGED_PACKAGE_LIST = "android.intent.extra.changed_package_list"; 6919*344a7f5eSAndroid Build Coastguard Worker field public static final deprecated java.lang.String EXTRA_CHANGED_UID_LIST = "android.intent.extra.changed_uid_list"; 6920*344a7f5eSAndroid Build Coastguard Worker field public static final java.lang.String EXTRA_HTML_TEXT = "android.intent.extra.HTML_TEXT"; 6921*344a7f5eSAndroid Build Coastguard Worker field public static final java.lang.String EXTRA_START_PLAYBACK = "android.intent.extra.START_PLAYBACK"; 6922*344a7f5eSAndroid Build Coastguard Worker field public static final deprecated int FLAG_ACTIVITY_CLEAR_TASK = 32768; // 0x8000 6923*344a7f5eSAndroid Build Coastguard Worker field public static final deprecated int FLAG_ACTIVITY_TASK_ON_HOME = 16384; // 0x4000 6924*344a7f5eSAndroid Build Coastguard Worker } 6925*344a7f5eSAndroid Build Coastguard Worker 6926*344a7f5eSAndroid Build Coastguard Worker public class Loader<D> { 6927*344a7f5eSAndroid Build Coastguard Worker ctor public Loader(android.content.Context); 6928*344a7f5eSAndroid Build Coastguard Worker method public void abandon(); 6929*344a7f5eSAndroid Build Coastguard Worker method public boolean cancelLoad(); 6930*344a7f5eSAndroid Build Coastguard Worker method public void commitContentChanged(); 6931*344a7f5eSAndroid Build Coastguard Worker method public java.lang.String dataToString(D); 6932*344a7f5eSAndroid Build Coastguard Worker method public void deliverCancellation(); 6933*344a7f5eSAndroid Build Coastguard Worker method public void deliverResult(D); 6934*344a7f5eSAndroid Build Coastguard Worker method public void dump(java.lang.String, java.io.FileDescriptor, java.io.PrintWriter, java.lang.String[]); 6935*344a7f5eSAndroid Build Coastguard Worker method public void forceLoad(); 6936*344a7f5eSAndroid Build Coastguard Worker method public android.content.Context getContext(); 6937*344a7f5eSAndroid Build Coastguard Worker method public int getId(); 6938*344a7f5eSAndroid Build Coastguard Worker method public boolean isAbandoned(); 6939*344a7f5eSAndroid Build Coastguard Worker method public boolean isReset(); 6940*344a7f5eSAndroid Build Coastguard Worker method public boolean isStarted(); 6941*344a7f5eSAndroid Build Coastguard Worker method protected void onAbandon(); 6942*344a7f5eSAndroid Build Coastguard Worker method protected boolean onCancelLoad(); 6943*344a7f5eSAndroid Build Coastguard Worker method public void onContentChanged(); 6944*344a7f5eSAndroid Build Coastguard Worker method protected void onForceLoad(); 6945*344a7f5eSAndroid Build Coastguard Worker method protected void onReset(); 6946*344a7f5eSAndroid Build Coastguard Worker method protected void onStartLoading(); 6947*344a7f5eSAndroid Build Coastguard Worker method protected void onStopLoading(); 6948*344a7f5eSAndroid Build Coastguard Worker method public void registerListener(int, android.support.v4.content.Loader.OnLoadCompleteListener<D>); 6949*344a7f5eSAndroid Build Coastguard Worker method public void registerOnLoadCanceledListener(android.support.v4.content.Loader.OnLoadCanceledListener<D>); 6950*344a7f5eSAndroid Build Coastguard Worker method public void reset(); 6951*344a7f5eSAndroid Build Coastguard Worker method public void rollbackContentChanged(); 6952*344a7f5eSAndroid Build Coastguard Worker method public final void startLoading(); 6953*344a7f5eSAndroid Build Coastguard Worker method public void stopLoading(); 6954*344a7f5eSAndroid Build Coastguard Worker method public boolean takeContentChanged(); 6955*344a7f5eSAndroid Build Coastguard Worker method public void unregisterListener(android.support.v4.content.Loader.OnLoadCompleteListener<D>); 6956*344a7f5eSAndroid Build Coastguard Worker method public void unregisterOnLoadCanceledListener(android.support.v4.content.Loader.OnLoadCanceledListener<D>); 6957*344a7f5eSAndroid Build Coastguard Worker } 6958*344a7f5eSAndroid Build Coastguard Worker 6959*344a7f5eSAndroid Build Coastguard Worker public final class Loader.ForceLoadContentObserver extends android.database.ContentObserver { 6960*344a7f5eSAndroid Build Coastguard Worker ctor public Loader.ForceLoadContentObserver(); 6961*344a7f5eSAndroid Build Coastguard Worker } 6962*344a7f5eSAndroid Build Coastguard Worker 6963*344a7f5eSAndroid Build Coastguard Worker public static abstract interface Loader.OnLoadCanceledListener<D> { 6964*344a7f5eSAndroid Build Coastguard Worker method public abstract void onLoadCanceled(android.support.v4.content.Loader<D>); 6965*344a7f5eSAndroid Build Coastguard Worker } 6966*344a7f5eSAndroid Build Coastguard Worker 6967*344a7f5eSAndroid Build Coastguard Worker public static abstract interface Loader.OnLoadCompleteListener<D> { 6968*344a7f5eSAndroid Build Coastguard Worker method public abstract void onLoadComplete(android.support.v4.content.Loader<D>, D); 6969*344a7f5eSAndroid Build Coastguard Worker } 6970*344a7f5eSAndroid Build Coastguard Worker 6971*344a7f5eSAndroid Build Coastguard Worker public final class LocalBroadcastManager { 6972*344a7f5eSAndroid Build Coastguard Worker method public static android.support.v4.content.LocalBroadcastManager getInstance(android.content.Context); 6973*344a7f5eSAndroid Build Coastguard Worker method public void registerReceiver(android.content.BroadcastReceiver, android.content.IntentFilter); 6974*344a7f5eSAndroid Build Coastguard Worker method public boolean sendBroadcast(android.content.Intent); 6975*344a7f5eSAndroid Build Coastguard Worker method public void sendBroadcastSync(android.content.Intent); 6976*344a7f5eSAndroid Build Coastguard Worker method public void unregisterReceiver(android.content.BroadcastReceiver); 6977*344a7f5eSAndroid Build Coastguard Worker } 6978*344a7f5eSAndroid Build Coastguard Worker 6979*344a7f5eSAndroid Build Coastguard Worker public final class MimeTypeFilter { 6980*344a7f5eSAndroid Build Coastguard Worker method public static boolean matches(java.lang.String, java.lang.String); 6981*344a7f5eSAndroid Build Coastguard Worker method public static java.lang.String matches(java.lang.String, java.lang.String[]); 6982*344a7f5eSAndroid Build Coastguard Worker method public static java.lang.String matches(java.lang.String[], java.lang.String); 6983*344a7f5eSAndroid Build Coastguard Worker method public static java.lang.String[] matchesMany(java.lang.String[], java.lang.String); 6984*344a7f5eSAndroid Build Coastguard Worker } 6985*344a7f5eSAndroid Build Coastguard Worker 6986*344a7f5eSAndroid Build Coastguard Worker public final deprecated class ParallelExecutorCompat { 6987*344a7f5eSAndroid Build Coastguard Worker method public static deprecated java.util.concurrent.Executor getParallelExecutor(); 6988*344a7f5eSAndroid Build Coastguard Worker } 6989*344a7f5eSAndroid Build Coastguard Worker 6990*344a7f5eSAndroid Build Coastguard Worker public final class PermissionChecker { 6991*344a7f5eSAndroid Build Coastguard Worker method public static int checkCallingOrSelfPermission(android.content.Context, java.lang.String); 6992*344a7f5eSAndroid Build Coastguard Worker method public static int checkCallingPermission(android.content.Context, java.lang.String, java.lang.String); 6993*344a7f5eSAndroid Build Coastguard Worker method public static int checkPermission(android.content.Context, java.lang.String, int, int, java.lang.String); 6994*344a7f5eSAndroid Build Coastguard Worker method public static int checkSelfPermission(android.content.Context, java.lang.String); 6995*344a7f5eSAndroid Build Coastguard Worker field public static final int PERMISSION_DENIED = -1; // 0xffffffff 6996*344a7f5eSAndroid Build Coastguard Worker field public static final int PERMISSION_DENIED_APP_OP = -2; // 0xfffffffe 6997*344a7f5eSAndroid Build Coastguard Worker field public static final int PERMISSION_GRANTED = 0; // 0x0 6998*344a7f5eSAndroid Build Coastguard Worker } 6999*344a7f5eSAndroid Build Coastguard Worker 7000*344a7f5eSAndroid Build Coastguard Worker public final class SharedPreferencesCompat { 7001*344a7f5eSAndroid Build Coastguard Worker } 7002*344a7f5eSAndroid Build Coastguard Worker 7003*344a7f5eSAndroid Build Coastguard Worker public static final class SharedPreferencesCompat.EditorCompat { 7004*344a7f5eSAndroid Build Coastguard Worker method public void apply(android.content.SharedPreferences.Editor); 7005*344a7f5eSAndroid Build Coastguard Worker method public static android.support.v4.content.SharedPreferencesCompat.EditorCompat getInstance(); 7006*344a7f5eSAndroid Build Coastguard Worker } 7007*344a7f5eSAndroid Build Coastguard Worker 7008*344a7f5eSAndroid Build Coastguard Worker public abstract deprecated class WakefulBroadcastReceiver extends android.content.BroadcastReceiver { 7009*344a7f5eSAndroid Build Coastguard Worker ctor public WakefulBroadcastReceiver(); 7010*344a7f5eSAndroid Build Coastguard Worker method public static boolean completeWakefulIntent(android.content.Intent); 7011*344a7f5eSAndroid Build Coastguard Worker method public static android.content.ComponentName startWakefulService(android.content.Context, android.content.Intent); 7012*344a7f5eSAndroid Build Coastguard Worker } 7013*344a7f5eSAndroid Build Coastguard Worker 7014*344a7f5eSAndroid Build Coastguard Worker} 7015*344a7f5eSAndroid Build Coastguard Worker 7016*344a7f5eSAndroid Build Coastguard Workerpackage android.support.v4.content.pm { 7017*344a7f5eSAndroid Build Coastguard Worker 7018*344a7f5eSAndroid Build Coastguard Worker public final class ActivityInfoCompat { 7019*344a7f5eSAndroid Build Coastguard Worker field public static final int CONFIG_UI_MODE = 512; // 0x200 7020*344a7f5eSAndroid Build Coastguard Worker } 7021*344a7f5eSAndroid Build Coastguard Worker 7022*344a7f5eSAndroid Build Coastguard Worker public class ShortcutInfoCompat { 7023*344a7f5eSAndroid Build Coastguard Worker method public android.content.ComponentName getActivity(); 7024*344a7f5eSAndroid Build Coastguard Worker method public java.lang.CharSequence getDisabledMessage(); 7025*344a7f5eSAndroid Build Coastguard Worker method public java.lang.String getId(); 7026*344a7f5eSAndroid Build Coastguard Worker method public android.content.Intent getIntent(); 7027*344a7f5eSAndroid Build Coastguard Worker method public android.content.Intent[] getIntents(); 7028*344a7f5eSAndroid Build Coastguard Worker method public java.lang.CharSequence getLongLabel(); 7029*344a7f5eSAndroid Build Coastguard Worker method public java.lang.CharSequence getShortLabel(); 7030*344a7f5eSAndroid Build Coastguard Worker } 7031*344a7f5eSAndroid Build Coastguard Worker 7032*344a7f5eSAndroid Build Coastguard Worker public static class ShortcutInfoCompat.Builder { 7033*344a7f5eSAndroid Build Coastguard Worker ctor public ShortcutInfoCompat.Builder(android.content.Context, java.lang.String); 7034*344a7f5eSAndroid Build Coastguard Worker method public android.support.v4.content.pm.ShortcutInfoCompat build(); 7035*344a7f5eSAndroid Build Coastguard Worker method public android.support.v4.content.pm.ShortcutInfoCompat.Builder setActivity(android.content.ComponentName); 7036*344a7f5eSAndroid Build Coastguard Worker method public android.support.v4.content.pm.ShortcutInfoCompat.Builder setDisabledMessage(java.lang.CharSequence); 7037*344a7f5eSAndroid Build Coastguard Worker method public deprecated android.support.v4.content.pm.ShortcutInfoCompat.Builder setIcon(android.graphics.Bitmap); 7038*344a7f5eSAndroid Build Coastguard Worker method public deprecated android.support.v4.content.pm.ShortcutInfoCompat.Builder setIcon(int); 7039*344a7f5eSAndroid Build Coastguard Worker method public android.support.v4.content.pm.ShortcutInfoCompat.Builder setIcon(android.support.v4.graphics.drawable.IconCompat); 7040*344a7f5eSAndroid Build Coastguard Worker method public android.support.v4.content.pm.ShortcutInfoCompat.Builder setIntent(android.content.Intent); 7041*344a7f5eSAndroid Build Coastguard Worker method public android.support.v4.content.pm.ShortcutInfoCompat.Builder setIntents(android.content.Intent[]); 7042*344a7f5eSAndroid Build Coastguard Worker method public android.support.v4.content.pm.ShortcutInfoCompat.Builder setLongLabel(java.lang.CharSequence); 7043*344a7f5eSAndroid Build Coastguard Worker method public android.support.v4.content.pm.ShortcutInfoCompat.Builder setShortLabel(java.lang.CharSequence); 7044*344a7f5eSAndroid Build Coastguard Worker } 7045*344a7f5eSAndroid Build Coastguard Worker 7046*344a7f5eSAndroid Build Coastguard Worker public class ShortcutManagerCompat { 7047*344a7f5eSAndroid Build Coastguard Worker method public static android.content.Intent createShortcutResultIntent(android.content.Context, android.support.v4.content.pm.ShortcutInfoCompat); 7048*344a7f5eSAndroid Build Coastguard Worker method public static boolean isRequestPinShortcutSupported(android.content.Context); 7049*344a7f5eSAndroid Build Coastguard Worker method public static boolean requestPinShortcut(android.content.Context, android.support.v4.content.pm.ShortcutInfoCompat, android.content.IntentSender); 7050*344a7f5eSAndroid Build Coastguard Worker } 7051*344a7f5eSAndroid Build Coastguard Worker 7052*344a7f5eSAndroid Build Coastguard Worker} 7053*344a7f5eSAndroid Build Coastguard Worker 7054*344a7f5eSAndroid Build Coastguard Workerpackage android.support.v4.content.res { 7055*344a7f5eSAndroid Build Coastguard Worker 7056*344a7f5eSAndroid Build Coastguard Worker public final class ConfigurationHelper { 7057*344a7f5eSAndroid Build Coastguard Worker method public static int getDensityDpi(android.content.res.Resources); 7058*344a7f5eSAndroid Build Coastguard Worker method public static deprecated int getScreenHeightDp(android.content.res.Resources); 7059*344a7f5eSAndroid Build Coastguard Worker method public static deprecated int getScreenWidthDp(android.content.res.Resources); 7060*344a7f5eSAndroid Build Coastguard Worker method public static deprecated int getSmallestScreenWidthDp(android.content.res.Resources); 7061*344a7f5eSAndroid Build Coastguard Worker } 7062*344a7f5eSAndroid Build Coastguard Worker 7063*344a7f5eSAndroid Build Coastguard Worker public final class ResourcesCompat { 7064*344a7f5eSAndroid Build Coastguard Worker method public static int getColor(android.content.res.Resources, int, android.content.res.Resources.Theme) throws android.content.res.Resources.NotFoundException; 7065*344a7f5eSAndroid Build Coastguard Worker method public static android.content.res.ColorStateList getColorStateList(android.content.res.Resources, int, android.content.res.Resources.Theme) throws android.content.res.Resources.NotFoundException; 7066*344a7f5eSAndroid Build Coastguard Worker method public static android.graphics.drawable.Drawable getDrawable(android.content.res.Resources, int, android.content.res.Resources.Theme) throws android.content.res.Resources.NotFoundException; 7067*344a7f5eSAndroid Build Coastguard Worker method public static android.graphics.drawable.Drawable getDrawableForDensity(android.content.res.Resources, int, int, android.content.res.Resources.Theme) throws android.content.res.Resources.NotFoundException; 7068*344a7f5eSAndroid Build Coastguard Worker method public static android.graphics.Typeface getFont(android.content.Context, int) throws android.content.res.Resources.NotFoundException; 7069*344a7f5eSAndroid Build Coastguard Worker } 7070*344a7f5eSAndroid Build Coastguard Worker 7071*344a7f5eSAndroid Build Coastguard Worker} 7072*344a7f5eSAndroid Build Coastguard Worker 7073*344a7f5eSAndroid Build Coastguard Workerpackage android.support.v4.database { 7074*344a7f5eSAndroid Build Coastguard Worker 7075*344a7f5eSAndroid Build Coastguard Worker public final class DatabaseUtilsCompat { 7076*344a7f5eSAndroid Build Coastguard Worker method public static java.lang.String[] appendSelectionArgs(java.lang.String[], java.lang.String[]); 7077*344a7f5eSAndroid Build Coastguard Worker method public static java.lang.String concatenateWhere(java.lang.String, java.lang.String); 7078*344a7f5eSAndroid Build Coastguard Worker } 7079*344a7f5eSAndroid Build Coastguard Worker 7080*344a7f5eSAndroid Build Coastguard Worker} 7081*344a7f5eSAndroid Build Coastguard Worker 7082*344a7f5eSAndroid Build Coastguard Workerpackage android.support.v4.graphics { 7083*344a7f5eSAndroid Build Coastguard Worker 7084*344a7f5eSAndroid Build Coastguard Worker public final class BitmapCompat { 7085*344a7f5eSAndroid Build Coastguard Worker method public static int getAllocationByteCount(android.graphics.Bitmap); 7086*344a7f5eSAndroid Build Coastguard Worker method public static boolean hasMipMap(android.graphics.Bitmap); 7087*344a7f5eSAndroid Build Coastguard Worker method public static void setHasMipMap(android.graphics.Bitmap, boolean); 7088*344a7f5eSAndroid Build Coastguard Worker } 7089*344a7f5eSAndroid Build Coastguard Worker 7090*344a7f5eSAndroid Build Coastguard Worker public final class ColorUtils { 7091*344a7f5eSAndroid Build Coastguard Worker method public static int HSLToColor(float[]); 7092*344a7f5eSAndroid Build Coastguard Worker method public static int LABToColor(double, double, double); 7093*344a7f5eSAndroid Build Coastguard Worker method public static void LABToXYZ(double, double, double, double[]); 7094*344a7f5eSAndroid Build Coastguard Worker method public static void RGBToHSL(int, int, int, float[]); 7095*344a7f5eSAndroid Build Coastguard Worker method public static void RGBToLAB(int, int, int, double[]); 7096*344a7f5eSAndroid Build Coastguard Worker method public static void RGBToXYZ(int, int, int, double[]); 7097*344a7f5eSAndroid Build Coastguard Worker method public static int XYZToColor(double, double, double); 7098*344a7f5eSAndroid Build Coastguard Worker method public static void XYZToLAB(double, double, double, double[]); 7099*344a7f5eSAndroid Build Coastguard Worker method public static int blendARGB(int, int, float); 7100*344a7f5eSAndroid Build Coastguard Worker method public static void blendHSL(float[], float[], float, float[]); 7101*344a7f5eSAndroid Build Coastguard Worker method public static void blendLAB(double[], double[], double, double[]); 7102*344a7f5eSAndroid Build Coastguard Worker method public static double calculateContrast(int, int); 7103*344a7f5eSAndroid Build Coastguard Worker method public static double calculateLuminance(int); 7104*344a7f5eSAndroid Build Coastguard Worker method public static int calculateMinimumAlpha(int, int, float); 7105*344a7f5eSAndroid Build Coastguard Worker method public static void colorToHSL(int, float[]); 7106*344a7f5eSAndroid Build Coastguard Worker method public static void colorToLAB(int, double[]); 7107*344a7f5eSAndroid Build Coastguard Worker method public static void colorToXYZ(int, double[]); 7108*344a7f5eSAndroid Build Coastguard Worker method public static int compositeColors(int, int); 7109*344a7f5eSAndroid Build Coastguard Worker method public static double distanceEuclidean(double[], double[]); 7110*344a7f5eSAndroid Build Coastguard Worker method public static int setAlphaComponent(int, int); 7111*344a7f5eSAndroid Build Coastguard Worker } 7112*344a7f5eSAndroid Build Coastguard Worker 7113*344a7f5eSAndroid Build Coastguard Worker public final class PaintCompat { 7114*344a7f5eSAndroid Build Coastguard Worker method public static boolean hasGlyph(android.graphics.Paint, java.lang.String); 7115*344a7f5eSAndroid Build Coastguard Worker } 7116*344a7f5eSAndroid Build Coastguard Worker 7117*344a7f5eSAndroid Build Coastguard Worker} 7118*344a7f5eSAndroid Build Coastguard Worker 7119*344a7f5eSAndroid Build Coastguard Workerpackage android.support.v4.graphics.drawable { 7120*344a7f5eSAndroid Build Coastguard Worker 7121*344a7f5eSAndroid Build Coastguard Worker public final class DrawableCompat { 7122*344a7f5eSAndroid Build Coastguard Worker method public static void applyTheme(android.graphics.drawable.Drawable, android.content.res.Resources.Theme); 7123*344a7f5eSAndroid Build Coastguard Worker method public static boolean canApplyTheme(android.graphics.drawable.Drawable); 7124*344a7f5eSAndroid Build Coastguard Worker method public static void clearColorFilter(android.graphics.drawable.Drawable); 7125*344a7f5eSAndroid Build Coastguard Worker method public static int getAlpha(android.graphics.drawable.Drawable); 7126*344a7f5eSAndroid Build Coastguard Worker method public static android.graphics.ColorFilter getColorFilter(android.graphics.drawable.Drawable); 7127*344a7f5eSAndroid Build Coastguard Worker method public static int getLayoutDirection(android.graphics.drawable.Drawable); 7128*344a7f5eSAndroid Build Coastguard Worker method public static void inflate(android.graphics.drawable.Drawable, android.content.res.Resources, org.xmlpull.v1.XmlPullParser, android.util.AttributeSet, android.content.res.Resources.Theme) throws java.io.IOException, org.xmlpull.v1.XmlPullParserException; 7129*344a7f5eSAndroid Build Coastguard Worker method public static boolean isAutoMirrored(android.graphics.drawable.Drawable); 7130*344a7f5eSAndroid Build Coastguard Worker method public static void jumpToCurrentState(android.graphics.drawable.Drawable); 7131*344a7f5eSAndroid Build Coastguard Worker method public static void setAutoMirrored(android.graphics.drawable.Drawable, boolean); 7132*344a7f5eSAndroid Build Coastguard Worker method public static void setHotspot(android.graphics.drawable.Drawable, float, float); 7133*344a7f5eSAndroid Build Coastguard Worker method public static void setHotspotBounds(android.graphics.drawable.Drawable, int, int, int, int); 7134*344a7f5eSAndroid Build Coastguard Worker method public static boolean setLayoutDirection(android.graphics.drawable.Drawable, int); 7135*344a7f5eSAndroid Build Coastguard Worker method public static void setTint(android.graphics.drawable.Drawable, int); 7136*344a7f5eSAndroid Build Coastguard Worker method public static void setTintList(android.graphics.drawable.Drawable, android.content.res.ColorStateList); 7137*344a7f5eSAndroid Build Coastguard Worker method public static void setTintMode(android.graphics.drawable.Drawable, android.graphics.PorterDuff.Mode); 7138*344a7f5eSAndroid Build Coastguard Worker method public static <T extends android.graphics.drawable.Drawable> T unwrap(android.graphics.drawable.Drawable); 7139*344a7f5eSAndroid Build Coastguard Worker method public static android.graphics.drawable.Drawable wrap(android.graphics.drawable.Drawable); 7140*344a7f5eSAndroid Build Coastguard Worker } 7141*344a7f5eSAndroid Build Coastguard Worker 7142*344a7f5eSAndroid Build Coastguard Worker public class IconCompat { 7143*344a7f5eSAndroid Build Coastguard Worker method public static android.support.v4.graphics.drawable.IconCompat createWithAdaptiveBitmap(android.graphics.Bitmap); 7144*344a7f5eSAndroid Build Coastguard Worker method public static android.support.v4.graphics.drawable.IconCompat createWithBitmap(android.graphics.Bitmap); 7145*344a7f5eSAndroid Build Coastguard Worker method public static android.support.v4.graphics.drawable.IconCompat createWithContentUri(java.lang.String); 7146*344a7f5eSAndroid Build Coastguard Worker method public static android.support.v4.graphics.drawable.IconCompat createWithContentUri(android.net.Uri); 7147*344a7f5eSAndroid Build Coastguard Worker method public static android.support.v4.graphics.drawable.IconCompat createWithData(byte[], int, int); 7148*344a7f5eSAndroid Build Coastguard Worker method public static android.support.v4.graphics.drawable.IconCompat createWithResource(android.content.Context, int); 7149*344a7f5eSAndroid Build Coastguard Worker } 7150*344a7f5eSAndroid Build Coastguard Worker 7151*344a7f5eSAndroid Build Coastguard Worker public abstract class RoundedBitmapDrawable extends android.graphics.drawable.Drawable { 7152*344a7f5eSAndroid Build Coastguard Worker method public void draw(android.graphics.Canvas); 7153*344a7f5eSAndroid Build Coastguard Worker method public final android.graphics.Bitmap getBitmap(); 7154*344a7f5eSAndroid Build Coastguard Worker method public float getCornerRadius(); 7155*344a7f5eSAndroid Build Coastguard Worker method public int getGravity(); 7156*344a7f5eSAndroid Build Coastguard Worker method public int getOpacity(); 7157*344a7f5eSAndroid Build Coastguard Worker method public final android.graphics.Paint getPaint(); 7158*344a7f5eSAndroid Build Coastguard Worker method public boolean hasAntiAlias(); 7159*344a7f5eSAndroid Build Coastguard Worker method public boolean hasMipMap(); 7160*344a7f5eSAndroid Build Coastguard Worker method public boolean isCircular(); 7161*344a7f5eSAndroid Build Coastguard Worker method public void setAlpha(int); 7162*344a7f5eSAndroid Build Coastguard Worker method public void setAntiAlias(boolean); 7163*344a7f5eSAndroid Build Coastguard Worker method public void setCircular(boolean); 7164*344a7f5eSAndroid Build Coastguard Worker method public void setColorFilter(android.graphics.ColorFilter); 7165*344a7f5eSAndroid Build Coastguard Worker method public void setCornerRadius(float); 7166*344a7f5eSAndroid Build Coastguard Worker method public void setGravity(int); 7167*344a7f5eSAndroid Build Coastguard Worker method public void setMipMap(boolean); 7168*344a7f5eSAndroid Build Coastguard Worker method public void setTargetDensity(android.graphics.Canvas); 7169*344a7f5eSAndroid Build Coastguard Worker method public void setTargetDensity(android.util.DisplayMetrics); 7170*344a7f5eSAndroid Build Coastguard Worker method public void setTargetDensity(int); 7171*344a7f5eSAndroid Build Coastguard Worker } 7172*344a7f5eSAndroid Build Coastguard Worker 7173*344a7f5eSAndroid Build Coastguard Worker public final class RoundedBitmapDrawableFactory { 7174*344a7f5eSAndroid Build Coastguard Worker method public static android.support.v4.graphics.drawable.RoundedBitmapDrawable create(android.content.res.Resources, android.graphics.Bitmap); 7175*344a7f5eSAndroid Build Coastguard Worker method public static android.support.v4.graphics.drawable.RoundedBitmapDrawable create(android.content.res.Resources, java.lang.String); 7176*344a7f5eSAndroid Build Coastguard Worker method public static android.support.v4.graphics.drawable.RoundedBitmapDrawable create(android.content.res.Resources, java.io.InputStream); 7177*344a7f5eSAndroid Build Coastguard Worker } 7178*344a7f5eSAndroid Build Coastguard Worker 7179*344a7f5eSAndroid Build Coastguard Worker} 7180*344a7f5eSAndroid Build Coastguard Worker 7181*344a7f5eSAndroid Build Coastguard Workerpackage android.support.v4.hardware.display { 7182*344a7f5eSAndroid Build Coastguard Worker 7183*344a7f5eSAndroid Build Coastguard Worker public abstract class DisplayManagerCompat { 7184*344a7f5eSAndroid Build Coastguard Worker method public abstract android.view.Display getDisplay(int); 7185*344a7f5eSAndroid Build Coastguard Worker method public abstract android.view.Display[] getDisplays(); 7186*344a7f5eSAndroid Build Coastguard Worker method public abstract android.view.Display[] getDisplays(java.lang.String); 7187*344a7f5eSAndroid Build Coastguard Worker method public static android.support.v4.hardware.display.DisplayManagerCompat getInstance(android.content.Context); 7188*344a7f5eSAndroid Build Coastguard Worker field public static final java.lang.String DISPLAY_CATEGORY_PRESENTATION = "android.hardware.display.category.PRESENTATION"; 7189*344a7f5eSAndroid Build Coastguard Worker } 7190*344a7f5eSAndroid Build Coastguard Worker 7191*344a7f5eSAndroid Build Coastguard Worker} 7192*344a7f5eSAndroid Build Coastguard Worker 7193*344a7f5eSAndroid Build Coastguard Workerpackage android.support.v4.hardware.fingerprint { 7194*344a7f5eSAndroid Build Coastguard Worker 7195*344a7f5eSAndroid Build Coastguard Worker public final class FingerprintManagerCompat { 7196*344a7f5eSAndroid Build Coastguard Worker method public void authenticate(android.support.v4.hardware.fingerprint.FingerprintManagerCompat.CryptoObject, int, android.support.v4.os.CancellationSignal, android.support.v4.hardware.fingerprint.FingerprintManagerCompat.AuthenticationCallback, android.os.Handler); 7197*344a7f5eSAndroid Build Coastguard Worker method public static android.support.v4.hardware.fingerprint.FingerprintManagerCompat from(android.content.Context); 7198*344a7f5eSAndroid Build Coastguard Worker method public boolean hasEnrolledFingerprints(); 7199*344a7f5eSAndroid Build Coastguard Worker method public boolean isHardwareDetected(); 7200*344a7f5eSAndroid Build Coastguard Worker } 7201*344a7f5eSAndroid Build Coastguard Worker 7202*344a7f5eSAndroid Build Coastguard Worker public static abstract class FingerprintManagerCompat.AuthenticationCallback { 7203*344a7f5eSAndroid Build Coastguard Worker ctor public FingerprintManagerCompat.AuthenticationCallback(); 7204*344a7f5eSAndroid Build Coastguard Worker method public void onAuthenticationError(int, java.lang.CharSequence); 7205*344a7f5eSAndroid Build Coastguard Worker method public void onAuthenticationFailed(); 7206*344a7f5eSAndroid Build Coastguard Worker method public void onAuthenticationHelp(int, java.lang.CharSequence); 7207*344a7f5eSAndroid Build Coastguard Worker method public void onAuthenticationSucceeded(android.support.v4.hardware.fingerprint.FingerprintManagerCompat.AuthenticationResult); 7208*344a7f5eSAndroid Build Coastguard Worker } 7209*344a7f5eSAndroid Build Coastguard Worker 7210*344a7f5eSAndroid Build Coastguard Worker public static final class FingerprintManagerCompat.AuthenticationResult { 7211*344a7f5eSAndroid Build Coastguard Worker ctor public FingerprintManagerCompat.AuthenticationResult(android.support.v4.hardware.fingerprint.FingerprintManagerCompat.CryptoObject); 7212*344a7f5eSAndroid Build Coastguard Worker method public android.support.v4.hardware.fingerprint.FingerprintManagerCompat.CryptoObject getCryptoObject(); 7213*344a7f5eSAndroid Build Coastguard Worker } 7214*344a7f5eSAndroid Build Coastguard Worker 7215*344a7f5eSAndroid Build Coastguard Worker public static class FingerprintManagerCompat.CryptoObject { 7216*344a7f5eSAndroid Build Coastguard Worker ctor public FingerprintManagerCompat.CryptoObject(java.security.Signature); 7217*344a7f5eSAndroid Build Coastguard Worker ctor public FingerprintManagerCompat.CryptoObject(javax.crypto.Cipher); 7218*344a7f5eSAndroid Build Coastguard Worker ctor public FingerprintManagerCompat.CryptoObject(javax.crypto.Mac); 7219*344a7f5eSAndroid Build Coastguard Worker method public javax.crypto.Cipher getCipher(); 7220*344a7f5eSAndroid Build Coastguard Worker method public javax.crypto.Mac getMac(); 7221*344a7f5eSAndroid Build Coastguard Worker method public java.security.Signature getSignature(); 7222*344a7f5eSAndroid Build Coastguard Worker } 7223*344a7f5eSAndroid Build Coastguard Worker 7224*344a7f5eSAndroid Build Coastguard Worker} 7225*344a7f5eSAndroid Build Coastguard Worker 7226*344a7f5eSAndroid Build Coastguard Workerpackage android.support.v4.math { 7227*344a7f5eSAndroid Build Coastguard Worker 7228*344a7f5eSAndroid Build Coastguard Worker public class MathUtils { 7229*344a7f5eSAndroid Build Coastguard Worker method public static float clamp(float, float, float); 7230*344a7f5eSAndroid Build Coastguard Worker method public static double clamp(double, double, double); 7231*344a7f5eSAndroid Build Coastguard Worker method public static int clamp(int, int, int); 7232*344a7f5eSAndroid Build Coastguard Worker } 7233*344a7f5eSAndroid Build Coastguard Worker 7234*344a7f5eSAndroid Build Coastguard Worker} 7235*344a7f5eSAndroid Build Coastguard Worker 7236*344a7f5eSAndroid Build Coastguard Workerpackage android.support.v4.media { 7237*344a7f5eSAndroid Build Coastguard Worker 7238*344a7f5eSAndroid Build Coastguard Worker public class AudioAttributesCompat { 7239*344a7f5eSAndroid Build Coastguard Worker method public int getContentType(); 7240*344a7f5eSAndroid Build Coastguard Worker method public int getFlags(); 7241*344a7f5eSAndroid Build Coastguard Worker method public int getLegacyStreamType(); 7242*344a7f5eSAndroid Build Coastguard Worker method public int getUsage(); 7243*344a7f5eSAndroid Build Coastguard Worker method public int getVolumeControlStream(); 7244*344a7f5eSAndroid Build Coastguard Worker method public java.lang.Object unwrap(); 7245*344a7f5eSAndroid Build Coastguard Worker method public static android.support.v4.media.AudioAttributesCompat wrap(java.lang.Object); 7246*344a7f5eSAndroid Build Coastguard Worker field public static final int CONTENT_TYPE_MOVIE = 3; // 0x3 7247*344a7f5eSAndroid Build Coastguard Worker field public static final int CONTENT_TYPE_MUSIC = 2; // 0x2 7248*344a7f5eSAndroid Build Coastguard Worker field public static final int CONTENT_TYPE_SONIFICATION = 4; // 0x4 7249*344a7f5eSAndroid Build Coastguard Worker field public static final int CONTENT_TYPE_SPEECH = 1; // 0x1 7250*344a7f5eSAndroid Build Coastguard Worker field public static final int CONTENT_TYPE_UNKNOWN = 0; // 0x0 7251*344a7f5eSAndroid Build Coastguard Worker field public static final int FLAG_AUDIBILITY_ENFORCED = 1; // 0x1 7252*344a7f5eSAndroid Build Coastguard Worker field public static final int FLAG_HW_AV_SYNC = 16; // 0x10 7253*344a7f5eSAndroid Build Coastguard Worker field public static final int USAGE_ALARM = 4; // 0x4 7254*344a7f5eSAndroid Build Coastguard Worker field public static final int USAGE_ASSISTANCE_ACCESSIBILITY = 11; // 0xb 7255*344a7f5eSAndroid Build Coastguard Worker field public static final int USAGE_ASSISTANCE_NAVIGATION_GUIDANCE = 12; // 0xc 7256*344a7f5eSAndroid Build Coastguard Worker field public static final int USAGE_ASSISTANCE_SONIFICATION = 13; // 0xd 7257*344a7f5eSAndroid Build Coastguard Worker field public static final int USAGE_ASSISTANT = 16; // 0x10 7258*344a7f5eSAndroid Build Coastguard Worker field public static final int USAGE_GAME = 14; // 0xe 7259*344a7f5eSAndroid Build Coastguard Worker field public static final int USAGE_MEDIA = 1; // 0x1 7260*344a7f5eSAndroid Build Coastguard Worker field public static final int USAGE_NOTIFICATION = 5; // 0x5 7261*344a7f5eSAndroid Build Coastguard Worker field public static final int USAGE_NOTIFICATION_COMMUNICATION_DELAYED = 9; // 0x9 7262*344a7f5eSAndroid Build Coastguard Worker field public static final int USAGE_NOTIFICATION_COMMUNICATION_INSTANT = 8; // 0x8 7263*344a7f5eSAndroid Build Coastguard Worker field public static final int USAGE_NOTIFICATION_COMMUNICATION_REQUEST = 7; // 0x7 7264*344a7f5eSAndroid Build Coastguard Worker field public static final int USAGE_NOTIFICATION_EVENT = 10; // 0xa 7265*344a7f5eSAndroid Build Coastguard Worker field public static final int USAGE_NOTIFICATION_RINGTONE = 6; // 0x6 7266*344a7f5eSAndroid Build Coastguard Worker field public static final int USAGE_UNKNOWN = 0; // 0x0 7267*344a7f5eSAndroid Build Coastguard Worker field public static final int USAGE_VOICE_COMMUNICATION = 2; // 0x2 7268*344a7f5eSAndroid Build Coastguard Worker field public static final int USAGE_VOICE_COMMUNICATION_SIGNALLING = 3; // 0x3 7269*344a7f5eSAndroid Build Coastguard Worker } 7270*344a7f5eSAndroid Build Coastguard Worker 7271*344a7f5eSAndroid Build Coastguard Worker public static class AudioAttributesCompat.Builder { 7272*344a7f5eSAndroid Build Coastguard Worker ctor public AudioAttributesCompat.Builder(); 7273*344a7f5eSAndroid Build Coastguard Worker ctor public AudioAttributesCompat.Builder(android.support.v4.media.AudioAttributesCompat); 7274*344a7f5eSAndroid Build Coastguard Worker method public android.support.v4.media.AudioAttributesCompat build(); 7275*344a7f5eSAndroid Build Coastguard Worker method public android.support.v4.media.AudioAttributesCompat.Builder setContentType(int); 7276*344a7f5eSAndroid Build Coastguard Worker method public android.support.v4.media.AudioAttributesCompat.Builder setFlags(int); 7277*344a7f5eSAndroid Build Coastguard Worker method public android.support.v4.media.AudioAttributesCompat.Builder setLegacyStreamType(int); 7278*344a7f5eSAndroid Build Coastguard Worker method public android.support.v4.media.AudioAttributesCompat.Builder setUsage(int); 7279*344a7f5eSAndroid Build Coastguard Worker } 7280*344a7f5eSAndroid Build Coastguard Worker 7281*344a7f5eSAndroid Build Coastguard Worker public final class MediaBrowserCompat { 7282*344a7f5eSAndroid Build Coastguard Worker ctor public MediaBrowserCompat(android.content.Context, android.content.ComponentName, android.support.v4.media.MediaBrowserCompat.ConnectionCallback, android.os.Bundle); 7283*344a7f5eSAndroid Build Coastguard Worker method public void connect(); 7284*344a7f5eSAndroid Build Coastguard Worker method public void disconnect(); 7285*344a7f5eSAndroid Build Coastguard Worker method public android.os.Bundle getExtras(); 7286*344a7f5eSAndroid Build Coastguard Worker method public void getItem(java.lang.String, android.support.v4.media.MediaBrowserCompat.ItemCallback); 7287*344a7f5eSAndroid Build Coastguard Worker method public java.lang.String getRoot(); 7288*344a7f5eSAndroid Build Coastguard Worker method public android.content.ComponentName getServiceComponent(); 7289*344a7f5eSAndroid Build Coastguard Worker method public android.support.v4.media.session.MediaSessionCompat.Token getSessionToken(); 7290*344a7f5eSAndroid Build Coastguard Worker method public boolean isConnected(); 7291*344a7f5eSAndroid Build Coastguard Worker method public void search(java.lang.String, android.os.Bundle, android.support.v4.media.MediaBrowserCompat.SearchCallback); 7292*344a7f5eSAndroid Build Coastguard Worker method public void sendCustomAction(java.lang.String, android.os.Bundle, android.support.v4.media.MediaBrowserCompat.CustomActionCallback); 7293*344a7f5eSAndroid Build Coastguard Worker method public void subscribe(java.lang.String, android.support.v4.media.MediaBrowserCompat.SubscriptionCallback); 7294*344a7f5eSAndroid Build Coastguard Worker method public void subscribe(java.lang.String, android.os.Bundle, android.support.v4.media.MediaBrowserCompat.SubscriptionCallback); 7295*344a7f5eSAndroid Build Coastguard Worker method public void unsubscribe(java.lang.String); 7296*344a7f5eSAndroid Build Coastguard Worker method public void unsubscribe(java.lang.String, android.support.v4.media.MediaBrowserCompat.SubscriptionCallback); 7297*344a7f5eSAndroid Build Coastguard Worker field public static final java.lang.String CUSTOM_ACTION_DOWNLOAD = "android.support.v4.media.action.DOWNLOAD"; 7298*344a7f5eSAndroid Build Coastguard Worker field public static final java.lang.String CUSTOM_ACTION_REMOVE_DOWNLOADED_FILE = "android.support.v4.media.action.REMOVE_DOWNLOADED_FILE"; 7299*344a7f5eSAndroid Build Coastguard Worker field public static final java.lang.String EXTRA_DOWNLOAD_PROGRESS = "android.media.browse.extra.DOWNLOAD_PROGRESS"; 7300*344a7f5eSAndroid Build Coastguard Worker field public static final java.lang.String EXTRA_MEDIA_ID = "android.media.browse.extra.MEDIA_ID"; 7301*344a7f5eSAndroid Build Coastguard Worker field public static final java.lang.String EXTRA_PAGE = "android.media.browse.extra.PAGE"; 7302*344a7f5eSAndroid Build Coastguard Worker field public static final java.lang.String EXTRA_PAGE_SIZE = "android.media.browse.extra.PAGE_SIZE"; 7303*344a7f5eSAndroid Build Coastguard Worker } 7304*344a7f5eSAndroid Build Coastguard Worker 7305*344a7f5eSAndroid Build Coastguard Worker public static class MediaBrowserCompat.ConnectionCallback { 7306*344a7f5eSAndroid Build Coastguard Worker ctor public MediaBrowserCompat.ConnectionCallback(); 7307*344a7f5eSAndroid Build Coastguard Worker method public void onConnected(); 7308*344a7f5eSAndroid Build Coastguard Worker method public void onConnectionFailed(); 7309*344a7f5eSAndroid Build Coastguard Worker method public void onConnectionSuspended(); 7310*344a7f5eSAndroid Build Coastguard Worker } 7311*344a7f5eSAndroid Build Coastguard Worker 7312*344a7f5eSAndroid Build Coastguard Worker public static abstract class MediaBrowserCompat.CustomActionCallback { 7313*344a7f5eSAndroid Build Coastguard Worker ctor public MediaBrowserCompat.CustomActionCallback(); 7314*344a7f5eSAndroid Build Coastguard Worker method public void onError(java.lang.String, android.os.Bundle, android.os.Bundle); 7315*344a7f5eSAndroid Build Coastguard Worker method public void onProgressUpdate(java.lang.String, android.os.Bundle, android.os.Bundle); 7316*344a7f5eSAndroid Build Coastguard Worker method public void onResult(java.lang.String, android.os.Bundle, android.os.Bundle); 7317*344a7f5eSAndroid Build Coastguard Worker } 7318*344a7f5eSAndroid Build Coastguard Worker 7319*344a7f5eSAndroid Build Coastguard Worker public static abstract class MediaBrowserCompat.ItemCallback { 7320*344a7f5eSAndroid Build Coastguard Worker ctor public MediaBrowserCompat.ItemCallback(); 7321*344a7f5eSAndroid Build Coastguard Worker method public void onError(java.lang.String); 7322*344a7f5eSAndroid Build Coastguard Worker method public void onItemLoaded(android.support.v4.media.MediaBrowserCompat.MediaItem); 7323*344a7f5eSAndroid Build Coastguard Worker } 7324*344a7f5eSAndroid Build Coastguard Worker 7325*344a7f5eSAndroid Build Coastguard Worker public static class MediaBrowserCompat.MediaItem implements android.os.Parcelable { 7326*344a7f5eSAndroid Build Coastguard Worker ctor public MediaBrowserCompat.MediaItem(android.support.v4.media.MediaDescriptionCompat, int); 7327*344a7f5eSAndroid Build Coastguard Worker method public int describeContents(); 7328*344a7f5eSAndroid Build Coastguard Worker method public static android.support.v4.media.MediaBrowserCompat.MediaItem fromMediaItem(java.lang.Object); 7329*344a7f5eSAndroid Build Coastguard Worker method public static java.util.List<android.support.v4.media.MediaBrowserCompat.MediaItem> fromMediaItemList(java.util.List<?>); 7330*344a7f5eSAndroid Build Coastguard Worker method public android.support.v4.media.MediaDescriptionCompat getDescription(); 7331*344a7f5eSAndroid Build Coastguard Worker method public int getFlags(); 7332*344a7f5eSAndroid Build Coastguard Worker method public java.lang.String getMediaId(); 7333*344a7f5eSAndroid Build Coastguard Worker method public boolean isBrowsable(); 7334*344a7f5eSAndroid Build Coastguard Worker method public boolean isPlayable(); 7335*344a7f5eSAndroid Build Coastguard Worker method public void writeToParcel(android.os.Parcel, int); 7336*344a7f5eSAndroid Build Coastguard Worker field public static final android.os.Parcelable.Creator<android.support.v4.media.MediaBrowserCompat.MediaItem> CREATOR; 7337*344a7f5eSAndroid Build Coastguard Worker field public static final int FLAG_BROWSABLE = 1; // 0x1 7338*344a7f5eSAndroid Build Coastguard Worker field public static final int FLAG_PLAYABLE = 2; // 0x2 7339*344a7f5eSAndroid Build Coastguard Worker } 7340*344a7f5eSAndroid Build Coastguard Worker 7341*344a7f5eSAndroid Build Coastguard Worker public static abstract class MediaBrowserCompat.SearchCallback { 7342*344a7f5eSAndroid Build Coastguard Worker ctor public MediaBrowserCompat.SearchCallback(); 7343*344a7f5eSAndroid Build Coastguard Worker method public void onError(java.lang.String, android.os.Bundle); 7344*344a7f5eSAndroid Build Coastguard Worker method public void onSearchResult(java.lang.String, android.os.Bundle, java.util.List<android.support.v4.media.MediaBrowserCompat.MediaItem>); 7345*344a7f5eSAndroid Build Coastguard Worker } 7346*344a7f5eSAndroid Build Coastguard Worker 7347*344a7f5eSAndroid Build Coastguard Worker public static abstract class MediaBrowserCompat.SubscriptionCallback { 7348*344a7f5eSAndroid Build Coastguard Worker ctor public MediaBrowserCompat.SubscriptionCallback(); 7349*344a7f5eSAndroid Build Coastguard Worker method public void onChildrenLoaded(java.lang.String, java.util.List<android.support.v4.media.MediaBrowserCompat.MediaItem>); 7350*344a7f5eSAndroid Build Coastguard Worker method public void onChildrenLoaded(java.lang.String, java.util.List<android.support.v4.media.MediaBrowserCompat.MediaItem>, android.os.Bundle); 7351*344a7f5eSAndroid Build Coastguard Worker method public void onError(java.lang.String); 7352*344a7f5eSAndroid Build Coastguard Worker method public void onError(java.lang.String, android.os.Bundle); 7353*344a7f5eSAndroid Build Coastguard Worker } 7354*344a7f5eSAndroid Build Coastguard Worker 7355*344a7f5eSAndroid Build Coastguard Worker public abstract class MediaBrowserServiceCompat extends android.app.Service { 7356*344a7f5eSAndroid Build Coastguard Worker ctor public MediaBrowserServiceCompat(); 7357*344a7f5eSAndroid Build Coastguard Worker method public void dump(java.io.FileDescriptor, java.io.PrintWriter, java.lang.String[]); 7358*344a7f5eSAndroid Build Coastguard Worker method public final android.os.Bundle getBrowserRootHints(); 7359*344a7f5eSAndroid Build Coastguard Worker method public android.support.v4.media.session.MediaSessionCompat.Token getSessionToken(); 7360*344a7f5eSAndroid Build Coastguard Worker method public void notifyChildrenChanged(java.lang.String); 7361*344a7f5eSAndroid Build Coastguard Worker method public void notifyChildrenChanged(java.lang.String, android.os.Bundle); 7362*344a7f5eSAndroid Build Coastguard Worker method public android.os.IBinder onBind(android.content.Intent); 7363*344a7f5eSAndroid Build Coastguard Worker method public void onCustomAction(java.lang.String, android.os.Bundle, android.support.v4.media.MediaBrowserServiceCompat.Result<android.os.Bundle>); 7364*344a7f5eSAndroid Build Coastguard Worker method public abstract android.support.v4.media.MediaBrowserServiceCompat.BrowserRoot onGetRoot(java.lang.String, int, android.os.Bundle); 7365*344a7f5eSAndroid Build Coastguard Worker method public abstract void onLoadChildren(java.lang.String, android.support.v4.media.MediaBrowserServiceCompat.Result<java.util.List<android.support.v4.media.MediaBrowserCompat.MediaItem>>); 7366*344a7f5eSAndroid Build Coastguard Worker method public void onLoadChildren(java.lang.String, android.support.v4.media.MediaBrowserServiceCompat.Result<java.util.List<android.support.v4.media.MediaBrowserCompat.MediaItem>>, android.os.Bundle); 7367*344a7f5eSAndroid Build Coastguard Worker method public void onLoadItem(java.lang.String, android.support.v4.media.MediaBrowserServiceCompat.Result<android.support.v4.media.MediaBrowserCompat.MediaItem>); 7368*344a7f5eSAndroid Build Coastguard Worker method public void onSearch(java.lang.String, android.os.Bundle, android.support.v4.media.MediaBrowserServiceCompat.Result<java.util.List<android.support.v4.media.MediaBrowserCompat.MediaItem>>); 7369*344a7f5eSAndroid Build Coastguard Worker method public void setSessionToken(android.support.v4.media.session.MediaSessionCompat.Token); 7370*344a7f5eSAndroid Build Coastguard Worker field public static final java.lang.String SERVICE_INTERFACE = "android.media.browse.MediaBrowserService"; 7371*344a7f5eSAndroid Build Coastguard Worker } 7372*344a7f5eSAndroid Build Coastguard Worker 7373*344a7f5eSAndroid Build Coastguard Worker public static final class MediaBrowserServiceCompat.BrowserRoot { 7374*344a7f5eSAndroid Build Coastguard Worker ctor public MediaBrowserServiceCompat.BrowserRoot(java.lang.String, android.os.Bundle); 7375*344a7f5eSAndroid Build Coastguard Worker method public android.os.Bundle getExtras(); 7376*344a7f5eSAndroid Build Coastguard Worker method public java.lang.String getRootId(); 7377*344a7f5eSAndroid Build Coastguard Worker field public static final java.lang.String EXTRA_OFFLINE = "android.service.media.extra.OFFLINE"; 7378*344a7f5eSAndroid Build Coastguard Worker field public static final java.lang.String EXTRA_RECENT = "android.service.media.extra.RECENT"; 7379*344a7f5eSAndroid Build Coastguard Worker field public static final java.lang.String EXTRA_SUGGESTED = "android.service.media.extra.SUGGESTED"; 7380*344a7f5eSAndroid Build Coastguard Worker field public static final deprecated java.lang.String EXTRA_SUGGESTION_KEYWORDS = "android.service.media.extra.SUGGESTION_KEYWORDS"; 7381*344a7f5eSAndroid Build Coastguard Worker } 7382*344a7f5eSAndroid Build Coastguard Worker 7383*344a7f5eSAndroid Build Coastguard Worker public static class MediaBrowserServiceCompat.Result<T> { 7384*344a7f5eSAndroid Build Coastguard Worker method public void detach(); 7385*344a7f5eSAndroid Build Coastguard Worker method public void sendError(android.os.Bundle); 7386*344a7f5eSAndroid Build Coastguard Worker method public void sendProgressUpdate(android.os.Bundle); 7387*344a7f5eSAndroid Build Coastguard Worker method public void sendResult(T); 7388*344a7f5eSAndroid Build Coastguard Worker } 7389*344a7f5eSAndroid Build Coastguard Worker 7390*344a7f5eSAndroid Build Coastguard Worker public final class MediaDescriptionCompat implements android.os.Parcelable { 7391*344a7f5eSAndroid Build Coastguard Worker method public int describeContents(); 7392*344a7f5eSAndroid Build Coastguard Worker method public static android.support.v4.media.MediaDescriptionCompat fromMediaDescription(java.lang.Object); 7393*344a7f5eSAndroid Build Coastguard Worker method public java.lang.CharSequence getDescription(); 7394*344a7f5eSAndroid Build Coastguard Worker method public android.os.Bundle getExtras(); 7395*344a7f5eSAndroid Build Coastguard Worker method public android.graphics.Bitmap getIconBitmap(); 7396*344a7f5eSAndroid Build Coastguard Worker method public android.net.Uri getIconUri(); 7397*344a7f5eSAndroid Build Coastguard Worker method public java.lang.Object getMediaDescription(); 7398*344a7f5eSAndroid Build Coastguard Worker method public java.lang.String getMediaId(); 7399*344a7f5eSAndroid Build Coastguard Worker method public android.net.Uri getMediaUri(); 7400*344a7f5eSAndroid Build Coastguard Worker method public java.lang.CharSequence getSubtitle(); 7401*344a7f5eSAndroid Build Coastguard Worker method public java.lang.CharSequence getTitle(); 7402*344a7f5eSAndroid Build Coastguard Worker method public void writeToParcel(android.os.Parcel, int); 7403*344a7f5eSAndroid Build Coastguard Worker field public static final long BT_FOLDER_TYPE_ALBUMS = 2L; // 0x2L 7404*344a7f5eSAndroid Build Coastguard Worker field public static final long BT_FOLDER_TYPE_ARTISTS = 3L; // 0x3L 7405*344a7f5eSAndroid Build Coastguard Worker field public static final long BT_FOLDER_TYPE_GENRES = 4L; // 0x4L 7406*344a7f5eSAndroid Build Coastguard Worker field public static final long BT_FOLDER_TYPE_MIXED = 0L; // 0x0L 7407*344a7f5eSAndroid Build Coastguard Worker field public static final long BT_FOLDER_TYPE_PLAYLISTS = 5L; // 0x5L 7408*344a7f5eSAndroid Build Coastguard Worker field public static final long BT_FOLDER_TYPE_TITLES = 1L; // 0x1L 7409*344a7f5eSAndroid Build Coastguard Worker field public static final long BT_FOLDER_TYPE_YEARS = 6L; // 0x6L 7410*344a7f5eSAndroid Build Coastguard Worker field public static final android.os.Parcelable.Creator<android.support.v4.media.MediaDescriptionCompat> CREATOR; 7411*344a7f5eSAndroid Build Coastguard Worker field public static final java.lang.String EXTRA_BT_FOLDER_TYPE = "android.media.extra.BT_FOLDER_TYPE"; 7412*344a7f5eSAndroid Build Coastguard Worker field public static final java.lang.String EXTRA_DOWNLOAD_STATUS = "android.media.extra.DOWNLOAD_STATUS"; 7413*344a7f5eSAndroid Build Coastguard Worker field public static final long STATUS_DOWNLOADED = 2L; // 0x2L 7414*344a7f5eSAndroid Build Coastguard Worker field public static final long STATUS_DOWNLOADING = 1L; // 0x1L 7415*344a7f5eSAndroid Build Coastguard Worker field public static final long STATUS_NOT_DOWNLOADED = 0L; // 0x0L 7416*344a7f5eSAndroid Build Coastguard Worker } 7417*344a7f5eSAndroid Build Coastguard Worker 7418*344a7f5eSAndroid Build Coastguard Worker public static final class MediaDescriptionCompat.Builder { 7419*344a7f5eSAndroid Build Coastguard Worker ctor public MediaDescriptionCompat.Builder(); 7420*344a7f5eSAndroid Build Coastguard Worker method public android.support.v4.media.MediaDescriptionCompat build(); 7421*344a7f5eSAndroid Build Coastguard Worker method public android.support.v4.media.MediaDescriptionCompat.Builder setDescription(java.lang.CharSequence); 7422*344a7f5eSAndroid Build Coastguard Worker method public android.support.v4.media.MediaDescriptionCompat.Builder setExtras(android.os.Bundle); 7423*344a7f5eSAndroid Build Coastguard Worker method public android.support.v4.media.MediaDescriptionCompat.Builder setIconBitmap(android.graphics.Bitmap); 7424*344a7f5eSAndroid Build Coastguard Worker method public android.support.v4.media.MediaDescriptionCompat.Builder setIconUri(android.net.Uri); 7425*344a7f5eSAndroid Build Coastguard Worker method public android.support.v4.media.MediaDescriptionCompat.Builder setMediaId(java.lang.String); 7426*344a7f5eSAndroid Build Coastguard Worker method public android.support.v4.media.MediaDescriptionCompat.Builder setMediaUri(android.net.Uri); 7427*344a7f5eSAndroid Build Coastguard Worker method public android.support.v4.media.MediaDescriptionCompat.Builder setSubtitle(java.lang.CharSequence); 7428*344a7f5eSAndroid Build Coastguard Worker method public android.support.v4.media.MediaDescriptionCompat.Builder setTitle(java.lang.CharSequence); 7429*344a7f5eSAndroid Build Coastguard Worker } 7430*344a7f5eSAndroid Build Coastguard Worker 7431*344a7f5eSAndroid Build Coastguard Worker public final class MediaMetadataCompat implements android.os.Parcelable { 7432*344a7f5eSAndroid Build Coastguard Worker method public boolean containsKey(java.lang.String); 7433*344a7f5eSAndroid Build Coastguard Worker method public int describeContents(); 7434*344a7f5eSAndroid Build Coastguard Worker method public static android.support.v4.media.MediaMetadataCompat fromMediaMetadata(java.lang.Object); 7435*344a7f5eSAndroid Build Coastguard Worker method public android.graphics.Bitmap getBitmap(java.lang.String); 7436*344a7f5eSAndroid Build Coastguard Worker method public android.os.Bundle getBundle(); 7437*344a7f5eSAndroid Build Coastguard Worker method public android.support.v4.media.MediaDescriptionCompat getDescription(); 7438*344a7f5eSAndroid Build Coastguard Worker method public long getLong(java.lang.String); 7439*344a7f5eSAndroid Build Coastguard Worker method public java.lang.Object getMediaMetadata(); 7440*344a7f5eSAndroid Build Coastguard Worker method public android.support.v4.media.RatingCompat getRating(java.lang.String); 7441*344a7f5eSAndroid Build Coastguard Worker method public java.lang.String getString(java.lang.String); 7442*344a7f5eSAndroid Build Coastguard Worker method public java.lang.CharSequence getText(java.lang.String); 7443*344a7f5eSAndroid Build Coastguard Worker method public java.util.Set<java.lang.String> keySet(); 7444*344a7f5eSAndroid Build Coastguard Worker method public int size(); 7445*344a7f5eSAndroid Build Coastguard Worker method public void writeToParcel(android.os.Parcel, int); 7446*344a7f5eSAndroid Build Coastguard Worker field public static final android.os.Parcelable.Creator<android.support.v4.media.MediaMetadataCompat> CREATOR; 7447*344a7f5eSAndroid Build Coastguard Worker field public static final java.lang.String METADATA_KEY_ADVERTISEMENT = "android.media.metadata.ADVERTISEMENT"; 7448*344a7f5eSAndroid Build Coastguard Worker field public static final java.lang.String METADATA_KEY_ALBUM = "android.media.metadata.ALBUM"; 7449*344a7f5eSAndroid Build Coastguard Worker field public static final java.lang.String METADATA_KEY_ALBUM_ART = "android.media.metadata.ALBUM_ART"; 7450*344a7f5eSAndroid Build Coastguard Worker field public static final java.lang.String METADATA_KEY_ALBUM_ARTIST = "android.media.metadata.ALBUM_ARTIST"; 7451*344a7f5eSAndroid Build Coastguard Worker field public static final java.lang.String METADATA_KEY_ALBUM_ART_URI = "android.media.metadata.ALBUM_ART_URI"; 7452*344a7f5eSAndroid Build Coastguard Worker field public static final java.lang.String METADATA_KEY_ART = "android.media.metadata.ART"; 7453*344a7f5eSAndroid Build Coastguard Worker field public static final java.lang.String METADATA_KEY_ARTIST = "android.media.metadata.ARTIST"; 7454*344a7f5eSAndroid Build Coastguard Worker field public static final java.lang.String METADATA_KEY_ART_URI = "android.media.metadata.ART_URI"; 7455*344a7f5eSAndroid Build Coastguard Worker field public static final java.lang.String METADATA_KEY_AUTHOR = "android.media.metadata.AUTHOR"; 7456*344a7f5eSAndroid Build Coastguard Worker field public static final java.lang.String METADATA_KEY_BT_FOLDER_TYPE = "android.media.metadata.BT_FOLDER_TYPE"; 7457*344a7f5eSAndroid Build Coastguard Worker field public static final java.lang.String METADATA_KEY_COMPILATION = "android.media.metadata.COMPILATION"; 7458*344a7f5eSAndroid Build Coastguard Worker field public static final java.lang.String METADATA_KEY_COMPOSER = "android.media.metadata.COMPOSER"; 7459*344a7f5eSAndroid Build Coastguard Worker field public static final java.lang.String METADATA_KEY_DATE = "android.media.metadata.DATE"; 7460*344a7f5eSAndroid Build Coastguard Worker field public static final java.lang.String METADATA_KEY_DISC_NUMBER = "android.media.metadata.DISC_NUMBER"; 7461*344a7f5eSAndroid Build Coastguard Worker field public static final java.lang.String METADATA_KEY_DISPLAY_DESCRIPTION = "android.media.metadata.DISPLAY_DESCRIPTION"; 7462*344a7f5eSAndroid Build Coastguard Worker field public static final java.lang.String METADATA_KEY_DISPLAY_ICON = "android.media.metadata.DISPLAY_ICON"; 7463*344a7f5eSAndroid Build Coastguard Worker field public static final java.lang.String METADATA_KEY_DISPLAY_ICON_URI = "android.media.metadata.DISPLAY_ICON_URI"; 7464*344a7f5eSAndroid Build Coastguard Worker field public static final java.lang.String METADATA_KEY_DISPLAY_SUBTITLE = "android.media.metadata.DISPLAY_SUBTITLE"; 7465*344a7f5eSAndroid Build Coastguard Worker field public static final java.lang.String METADATA_KEY_DISPLAY_TITLE = "android.media.metadata.DISPLAY_TITLE"; 7466*344a7f5eSAndroid Build Coastguard Worker field public static final java.lang.String METADATA_KEY_DOWNLOAD_STATUS = "android.media.metadata.DOWNLOAD_STATUS"; 7467*344a7f5eSAndroid Build Coastguard Worker field public static final java.lang.String METADATA_KEY_DURATION = "android.media.metadata.DURATION"; 7468*344a7f5eSAndroid Build Coastguard Worker field public static final java.lang.String METADATA_KEY_GENRE = "android.media.metadata.GENRE"; 7469*344a7f5eSAndroid Build Coastguard Worker field public static final java.lang.String METADATA_KEY_MEDIA_ID = "android.media.metadata.MEDIA_ID"; 7470*344a7f5eSAndroid Build Coastguard Worker field public static final java.lang.String METADATA_KEY_MEDIA_URI = "android.media.metadata.MEDIA_URI"; 7471*344a7f5eSAndroid Build Coastguard Worker field public static final java.lang.String METADATA_KEY_NUM_TRACKS = "android.media.metadata.NUM_TRACKS"; 7472*344a7f5eSAndroid Build Coastguard Worker field public static final java.lang.String METADATA_KEY_RATING = "android.media.metadata.RATING"; 7473*344a7f5eSAndroid Build Coastguard Worker field public static final java.lang.String METADATA_KEY_TITLE = "android.media.metadata.TITLE"; 7474*344a7f5eSAndroid Build Coastguard Worker field public static final java.lang.String METADATA_KEY_TRACK_NUMBER = "android.media.metadata.TRACK_NUMBER"; 7475*344a7f5eSAndroid Build Coastguard Worker field public static final java.lang.String METADATA_KEY_USER_RATING = "android.media.metadata.USER_RATING"; 7476*344a7f5eSAndroid Build Coastguard Worker field public static final java.lang.String METADATA_KEY_WRITER = "android.media.metadata.WRITER"; 7477*344a7f5eSAndroid Build Coastguard Worker field public static final java.lang.String METADATA_KEY_YEAR = "android.media.metadata.YEAR"; 7478*344a7f5eSAndroid Build Coastguard Worker } 7479*344a7f5eSAndroid Build Coastguard Worker 7480*344a7f5eSAndroid Build Coastguard Worker public static final class MediaMetadataCompat.Builder { 7481*344a7f5eSAndroid Build Coastguard Worker ctor public MediaMetadataCompat.Builder(); 7482*344a7f5eSAndroid Build Coastguard Worker ctor public MediaMetadataCompat.Builder(android.support.v4.media.MediaMetadataCompat); 7483*344a7f5eSAndroid Build Coastguard Worker method public android.support.v4.media.MediaMetadataCompat build(); 7484*344a7f5eSAndroid Build Coastguard Worker method public android.support.v4.media.MediaMetadataCompat.Builder putBitmap(java.lang.String, android.graphics.Bitmap); 7485*344a7f5eSAndroid Build Coastguard Worker method public android.support.v4.media.MediaMetadataCompat.Builder putLong(java.lang.String, long); 7486*344a7f5eSAndroid Build Coastguard Worker method public android.support.v4.media.MediaMetadataCompat.Builder putRating(java.lang.String, android.support.v4.media.RatingCompat); 7487*344a7f5eSAndroid Build Coastguard Worker method public android.support.v4.media.MediaMetadataCompat.Builder putString(java.lang.String, java.lang.String); 7488*344a7f5eSAndroid Build Coastguard Worker method public android.support.v4.media.MediaMetadataCompat.Builder putText(java.lang.String, java.lang.CharSequence); 7489*344a7f5eSAndroid Build Coastguard Worker } 7490*344a7f5eSAndroid Build Coastguard Worker 7491*344a7f5eSAndroid Build Coastguard Worker public final class RatingCompat implements android.os.Parcelable { 7492*344a7f5eSAndroid Build Coastguard Worker method public int describeContents(); 7493*344a7f5eSAndroid Build Coastguard Worker method public static android.support.v4.media.RatingCompat fromRating(java.lang.Object); 7494*344a7f5eSAndroid Build Coastguard Worker method public float getPercentRating(); 7495*344a7f5eSAndroid Build Coastguard Worker method public java.lang.Object getRating(); 7496*344a7f5eSAndroid Build Coastguard Worker method public int getRatingStyle(); 7497*344a7f5eSAndroid Build Coastguard Worker method public float getStarRating(); 7498*344a7f5eSAndroid Build Coastguard Worker method public boolean hasHeart(); 7499*344a7f5eSAndroid Build Coastguard Worker method public boolean isRated(); 7500*344a7f5eSAndroid Build Coastguard Worker method public boolean isThumbUp(); 7501*344a7f5eSAndroid Build Coastguard Worker method public static android.support.v4.media.RatingCompat newHeartRating(boolean); 7502*344a7f5eSAndroid Build Coastguard Worker method public static android.support.v4.media.RatingCompat newPercentageRating(float); 7503*344a7f5eSAndroid Build Coastguard Worker method public static android.support.v4.media.RatingCompat newStarRating(int, float); 7504*344a7f5eSAndroid Build Coastguard Worker method public static android.support.v4.media.RatingCompat newThumbRating(boolean); 7505*344a7f5eSAndroid Build Coastguard Worker method public static android.support.v4.media.RatingCompat newUnratedRating(int); 7506*344a7f5eSAndroid Build Coastguard Worker method public void writeToParcel(android.os.Parcel, int); 7507*344a7f5eSAndroid Build Coastguard Worker field public static final android.os.Parcelable.Creator<android.support.v4.media.RatingCompat> CREATOR; 7508*344a7f5eSAndroid Build Coastguard Worker field public static final int RATING_3_STARS = 3; // 0x3 7509*344a7f5eSAndroid Build Coastguard Worker field public static final int RATING_4_STARS = 4; // 0x4 7510*344a7f5eSAndroid Build Coastguard Worker field public static final int RATING_5_STARS = 5; // 0x5 7511*344a7f5eSAndroid Build Coastguard Worker field public static final int RATING_HEART = 1; // 0x1 7512*344a7f5eSAndroid Build Coastguard Worker field public static final int RATING_NONE = 0; // 0x0 7513*344a7f5eSAndroid Build Coastguard Worker field public static final int RATING_PERCENTAGE = 6; // 0x6 7514*344a7f5eSAndroid Build Coastguard Worker field public static final int RATING_THUMB_UP_DOWN = 2; // 0x2 7515*344a7f5eSAndroid Build Coastguard Worker } 7516*344a7f5eSAndroid Build Coastguard Worker 7517*344a7f5eSAndroid Build Coastguard Worker public abstract class VolumeProviderCompat { 7518*344a7f5eSAndroid Build Coastguard Worker ctor public VolumeProviderCompat(int, int, int); 7519*344a7f5eSAndroid Build Coastguard Worker method public final int getCurrentVolume(); 7520*344a7f5eSAndroid Build Coastguard Worker method public final int getMaxVolume(); 7521*344a7f5eSAndroid Build Coastguard Worker method public final int getVolumeControl(); 7522*344a7f5eSAndroid Build Coastguard Worker method public java.lang.Object getVolumeProvider(); 7523*344a7f5eSAndroid Build Coastguard Worker method public void onAdjustVolume(int); 7524*344a7f5eSAndroid Build Coastguard Worker method public void onSetVolumeTo(int); 7525*344a7f5eSAndroid Build Coastguard Worker method public void setCallback(android.support.v4.media.VolumeProviderCompat.Callback); 7526*344a7f5eSAndroid Build Coastguard Worker method public final void setCurrentVolume(int); 7527*344a7f5eSAndroid Build Coastguard Worker field public static final int VOLUME_CONTROL_ABSOLUTE = 2; // 0x2 7528*344a7f5eSAndroid Build Coastguard Worker field public static final int VOLUME_CONTROL_FIXED = 0; // 0x0 7529*344a7f5eSAndroid Build Coastguard Worker field public static final int VOLUME_CONTROL_RELATIVE = 1; // 0x1 7530*344a7f5eSAndroid Build Coastguard Worker } 7531*344a7f5eSAndroid Build Coastguard Worker 7532*344a7f5eSAndroid Build Coastguard Worker public static abstract class VolumeProviderCompat.Callback { 7533*344a7f5eSAndroid Build Coastguard Worker ctor public VolumeProviderCompat.Callback(); 7534*344a7f5eSAndroid Build Coastguard Worker method public abstract void onVolumeChanged(android.support.v4.media.VolumeProviderCompat); 7535*344a7f5eSAndroid Build Coastguard Worker } 7536*344a7f5eSAndroid Build Coastguard Worker 7537*344a7f5eSAndroid Build Coastguard Worker} 7538*344a7f5eSAndroid Build Coastguard Worker 7539*344a7f5eSAndroid Build Coastguard Workerpackage android.support.v4.media.session { 7540*344a7f5eSAndroid Build Coastguard Worker 7541*344a7f5eSAndroid Build Coastguard Worker public class MediaButtonReceiver extends android.content.BroadcastReceiver { 7542*344a7f5eSAndroid Build Coastguard Worker ctor public MediaButtonReceiver(); 7543*344a7f5eSAndroid Build Coastguard Worker method public static android.app.PendingIntent buildMediaButtonPendingIntent(android.content.Context, long); 7544*344a7f5eSAndroid Build Coastguard Worker method public static android.app.PendingIntent buildMediaButtonPendingIntent(android.content.Context, android.content.ComponentName, long); 7545*344a7f5eSAndroid Build Coastguard Worker method public static android.view.KeyEvent handleIntent(android.support.v4.media.session.MediaSessionCompat, android.content.Intent); 7546*344a7f5eSAndroid Build Coastguard Worker method public void onReceive(android.content.Context, android.content.Intent); 7547*344a7f5eSAndroid Build Coastguard Worker } 7548*344a7f5eSAndroid Build Coastguard Worker 7549*344a7f5eSAndroid Build Coastguard Worker public final class MediaControllerCompat { 7550*344a7f5eSAndroid Build Coastguard Worker ctor public MediaControllerCompat(android.content.Context, android.support.v4.media.session.MediaSessionCompat); 7551*344a7f5eSAndroid Build Coastguard Worker ctor public MediaControllerCompat(android.content.Context, android.support.v4.media.session.MediaSessionCompat.Token) throws android.os.RemoteException; 7552*344a7f5eSAndroid Build Coastguard Worker method public void addQueueItem(android.support.v4.media.MediaDescriptionCompat); 7553*344a7f5eSAndroid Build Coastguard Worker method public void addQueueItem(android.support.v4.media.MediaDescriptionCompat, int); 7554*344a7f5eSAndroid Build Coastguard Worker method public void adjustVolume(int, int); 7555*344a7f5eSAndroid Build Coastguard Worker method public boolean dispatchMediaButtonEvent(android.view.KeyEvent); 7556*344a7f5eSAndroid Build Coastguard Worker method public android.os.Bundle getExtras(); 7557*344a7f5eSAndroid Build Coastguard Worker method public long getFlags(); 7558*344a7f5eSAndroid Build Coastguard Worker method public static android.support.v4.media.session.MediaControllerCompat getMediaController(android.app.Activity); 7559*344a7f5eSAndroid Build Coastguard Worker method public java.lang.Object getMediaController(); 7560*344a7f5eSAndroid Build Coastguard Worker method public android.support.v4.media.MediaMetadataCompat getMetadata(); 7561*344a7f5eSAndroid Build Coastguard Worker method public java.lang.String getPackageName(); 7562*344a7f5eSAndroid Build Coastguard Worker method public android.support.v4.media.session.MediaControllerCompat.PlaybackInfo getPlaybackInfo(); 7563*344a7f5eSAndroid Build Coastguard Worker method public android.support.v4.media.session.PlaybackStateCompat getPlaybackState(); 7564*344a7f5eSAndroid Build Coastguard Worker method public java.util.List<android.support.v4.media.session.MediaSessionCompat.QueueItem> getQueue(); 7565*344a7f5eSAndroid Build Coastguard Worker method public java.lang.CharSequence getQueueTitle(); 7566*344a7f5eSAndroid Build Coastguard Worker method public int getRatingType(); 7567*344a7f5eSAndroid Build Coastguard Worker method public int getRepeatMode(); 7568*344a7f5eSAndroid Build Coastguard Worker method public android.app.PendingIntent getSessionActivity(); 7569*344a7f5eSAndroid Build Coastguard Worker method public android.support.v4.media.session.MediaSessionCompat.Token getSessionToken(); 7570*344a7f5eSAndroid Build Coastguard Worker method public int getShuffleMode(); 7571*344a7f5eSAndroid Build Coastguard Worker method public android.support.v4.media.session.MediaControllerCompat.TransportControls getTransportControls(); 7572*344a7f5eSAndroid Build Coastguard Worker method public boolean isCaptioningEnabled(); 7573*344a7f5eSAndroid Build Coastguard Worker method public deprecated boolean isShuffleModeEnabled(); 7574*344a7f5eSAndroid Build Coastguard Worker method public void registerCallback(android.support.v4.media.session.MediaControllerCompat.Callback); 7575*344a7f5eSAndroid Build Coastguard Worker method public void registerCallback(android.support.v4.media.session.MediaControllerCompat.Callback, android.os.Handler); 7576*344a7f5eSAndroid Build Coastguard Worker method public void removeQueueItem(android.support.v4.media.MediaDescriptionCompat); 7577*344a7f5eSAndroid Build Coastguard Worker method public deprecated void removeQueueItemAt(int); 7578*344a7f5eSAndroid Build Coastguard Worker method public void sendCommand(java.lang.String, android.os.Bundle, android.os.ResultReceiver); 7579*344a7f5eSAndroid Build Coastguard Worker method public static void setMediaController(android.app.Activity, android.support.v4.media.session.MediaControllerCompat); 7580*344a7f5eSAndroid Build Coastguard Worker method public void setVolumeTo(int, int); 7581*344a7f5eSAndroid Build Coastguard Worker method public void unregisterCallback(android.support.v4.media.session.MediaControllerCompat.Callback); 7582*344a7f5eSAndroid Build Coastguard Worker } 7583*344a7f5eSAndroid Build Coastguard Worker 7584*344a7f5eSAndroid Build Coastguard Worker public static abstract class MediaControllerCompat.Callback implements android.os.IBinder.DeathRecipient { 7585*344a7f5eSAndroid Build Coastguard Worker ctor public MediaControllerCompat.Callback(); 7586*344a7f5eSAndroid Build Coastguard Worker method public void binderDied(); 7587*344a7f5eSAndroid Build Coastguard Worker method public void onAudioInfoChanged(android.support.v4.media.session.MediaControllerCompat.PlaybackInfo); 7588*344a7f5eSAndroid Build Coastguard Worker method public void onCaptioningEnabledChanged(boolean); 7589*344a7f5eSAndroid Build Coastguard Worker method public void onExtrasChanged(android.os.Bundle); 7590*344a7f5eSAndroid Build Coastguard Worker method public void onMetadataChanged(android.support.v4.media.MediaMetadataCompat); 7591*344a7f5eSAndroid Build Coastguard Worker method public void onPlaybackStateChanged(android.support.v4.media.session.PlaybackStateCompat); 7592*344a7f5eSAndroid Build Coastguard Worker method public void onQueueChanged(java.util.List<android.support.v4.media.session.MediaSessionCompat.QueueItem>); 7593*344a7f5eSAndroid Build Coastguard Worker method public void onQueueTitleChanged(java.lang.CharSequence); 7594*344a7f5eSAndroid Build Coastguard Worker method public void onRepeatModeChanged(int); 7595*344a7f5eSAndroid Build Coastguard Worker method public void onSessionDestroyed(); 7596*344a7f5eSAndroid Build Coastguard Worker method public void onSessionEvent(java.lang.String, android.os.Bundle); 7597*344a7f5eSAndroid Build Coastguard Worker method public deprecated void onShuffleModeChanged(boolean); 7598*344a7f5eSAndroid Build Coastguard Worker method public void onShuffleModeChanged(int); 7599*344a7f5eSAndroid Build Coastguard Worker } 7600*344a7f5eSAndroid Build Coastguard Worker 7601*344a7f5eSAndroid Build Coastguard Worker public static final class MediaControllerCompat.PlaybackInfo { 7602*344a7f5eSAndroid Build Coastguard Worker method public int getAudioStream(); 7603*344a7f5eSAndroid Build Coastguard Worker method public int getCurrentVolume(); 7604*344a7f5eSAndroid Build Coastguard Worker method public int getMaxVolume(); 7605*344a7f5eSAndroid Build Coastguard Worker method public int getPlaybackType(); 7606*344a7f5eSAndroid Build Coastguard Worker method public int getVolumeControl(); 7607*344a7f5eSAndroid Build Coastguard Worker field public static final int PLAYBACK_TYPE_LOCAL = 1; // 0x1 7608*344a7f5eSAndroid Build Coastguard Worker field public static final int PLAYBACK_TYPE_REMOTE = 2; // 0x2 7609*344a7f5eSAndroid Build Coastguard Worker } 7610*344a7f5eSAndroid Build Coastguard Worker 7611*344a7f5eSAndroid Build Coastguard Worker public static abstract class MediaControllerCompat.TransportControls { 7612*344a7f5eSAndroid Build Coastguard Worker method public abstract void fastForward(); 7613*344a7f5eSAndroid Build Coastguard Worker method public abstract void pause(); 7614*344a7f5eSAndroid Build Coastguard Worker method public abstract void play(); 7615*344a7f5eSAndroid Build Coastguard Worker method public abstract void playFromMediaId(java.lang.String, android.os.Bundle); 7616*344a7f5eSAndroid Build Coastguard Worker method public abstract void playFromSearch(java.lang.String, android.os.Bundle); 7617*344a7f5eSAndroid Build Coastguard Worker method public abstract void playFromUri(android.net.Uri, android.os.Bundle); 7618*344a7f5eSAndroid Build Coastguard Worker method public abstract void prepare(); 7619*344a7f5eSAndroid Build Coastguard Worker method public abstract void prepareFromMediaId(java.lang.String, android.os.Bundle); 7620*344a7f5eSAndroid Build Coastguard Worker method public abstract void prepareFromSearch(java.lang.String, android.os.Bundle); 7621*344a7f5eSAndroid Build Coastguard Worker method public abstract void prepareFromUri(android.net.Uri, android.os.Bundle); 7622*344a7f5eSAndroid Build Coastguard Worker method public abstract void rewind(); 7623*344a7f5eSAndroid Build Coastguard Worker method public abstract void seekTo(long); 7624*344a7f5eSAndroid Build Coastguard Worker method public abstract void sendCustomAction(android.support.v4.media.session.PlaybackStateCompat.CustomAction, android.os.Bundle); 7625*344a7f5eSAndroid Build Coastguard Worker method public abstract void sendCustomAction(java.lang.String, android.os.Bundle); 7626*344a7f5eSAndroid Build Coastguard Worker method public abstract void setCaptioningEnabled(boolean); 7627*344a7f5eSAndroid Build Coastguard Worker method public abstract void setRating(android.support.v4.media.RatingCompat); 7628*344a7f5eSAndroid Build Coastguard Worker method public abstract void setRepeatMode(int); 7629*344a7f5eSAndroid Build Coastguard Worker method public abstract void setShuffleMode(int); 7630*344a7f5eSAndroid Build Coastguard Worker method public abstract deprecated void setShuffleModeEnabled(boolean); 7631*344a7f5eSAndroid Build Coastguard Worker method public abstract void skipToNext(); 7632*344a7f5eSAndroid Build Coastguard Worker method public abstract void skipToPrevious(); 7633*344a7f5eSAndroid Build Coastguard Worker method public abstract void skipToQueueItem(long); 7634*344a7f5eSAndroid Build Coastguard Worker method public abstract void stop(); 7635*344a7f5eSAndroid Build Coastguard Worker } 7636*344a7f5eSAndroid Build Coastguard Worker 7637*344a7f5eSAndroid Build Coastguard Worker public class MediaSessionCompat { 7638*344a7f5eSAndroid Build Coastguard Worker ctor public MediaSessionCompat(android.content.Context, java.lang.String); 7639*344a7f5eSAndroid Build Coastguard Worker ctor public MediaSessionCompat(android.content.Context, java.lang.String, android.content.ComponentName, android.app.PendingIntent); 7640*344a7f5eSAndroid Build Coastguard Worker method public void addOnActiveChangeListener(android.support.v4.media.session.MediaSessionCompat.OnActiveChangeListener); 7641*344a7f5eSAndroid Build Coastguard Worker method public static android.support.v4.media.session.MediaSessionCompat fromMediaSession(android.content.Context, java.lang.Object); 7642*344a7f5eSAndroid Build Coastguard Worker method public android.support.v4.media.session.MediaControllerCompat getController(); 7643*344a7f5eSAndroid Build Coastguard Worker method public java.lang.Object getMediaSession(); 7644*344a7f5eSAndroid Build Coastguard Worker method public java.lang.Object getRemoteControlClient(); 7645*344a7f5eSAndroid Build Coastguard Worker method public android.support.v4.media.session.MediaSessionCompat.Token getSessionToken(); 7646*344a7f5eSAndroid Build Coastguard Worker method public boolean isActive(); 7647*344a7f5eSAndroid Build Coastguard Worker method public void release(); 7648*344a7f5eSAndroid Build Coastguard Worker method public void removeOnActiveChangeListener(android.support.v4.media.session.MediaSessionCompat.OnActiveChangeListener); 7649*344a7f5eSAndroid Build Coastguard Worker method public void sendSessionEvent(java.lang.String, android.os.Bundle); 7650*344a7f5eSAndroid Build Coastguard Worker method public void setActive(boolean); 7651*344a7f5eSAndroid Build Coastguard Worker method public void setCallback(android.support.v4.media.session.MediaSessionCompat.Callback); 7652*344a7f5eSAndroid Build Coastguard Worker method public void setCallback(android.support.v4.media.session.MediaSessionCompat.Callback, android.os.Handler); 7653*344a7f5eSAndroid Build Coastguard Worker method public void setCaptioningEnabled(boolean); 7654*344a7f5eSAndroid Build Coastguard Worker method public void setExtras(android.os.Bundle); 7655*344a7f5eSAndroid Build Coastguard Worker method public void setFlags(int); 7656*344a7f5eSAndroid Build Coastguard Worker method public void setMediaButtonReceiver(android.app.PendingIntent); 7657*344a7f5eSAndroid Build Coastguard Worker method public void setMetadata(android.support.v4.media.MediaMetadataCompat); 7658*344a7f5eSAndroid Build Coastguard Worker method public void setPlaybackState(android.support.v4.media.session.PlaybackStateCompat); 7659*344a7f5eSAndroid Build Coastguard Worker method public void setPlaybackToLocal(int); 7660*344a7f5eSAndroid Build Coastguard Worker method public void setPlaybackToRemote(android.support.v4.media.VolumeProviderCompat); 7661*344a7f5eSAndroid Build Coastguard Worker method public void setQueue(java.util.List<android.support.v4.media.session.MediaSessionCompat.QueueItem>); 7662*344a7f5eSAndroid Build Coastguard Worker method public void setQueueTitle(java.lang.CharSequence); 7663*344a7f5eSAndroid Build Coastguard Worker method public void setRatingType(int); 7664*344a7f5eSAndroid Build Coastguard Worker method public void setRepeatMode(int); 7665*344a7f5eSAndroid Build Coastguard Worker method public void setSessionActivity(android.app.PendingIntent); 7666*344a7f5eSAndroid Build Coastguard Worker method public void setShuffleMode(int); 7667*344a7f5eSAndroid Build Coastguard Worker method public deprecated void setShuffleModeEnabled(boolean); 7668*344a7f5eSAndroid Build Coastguard Worker field public static final java.lang.String ACTION_ARGUMENT_MEDIA_ATTRIBUTE = "android.support.v4.media.session.action.ARGUMENT_MEDIA_ATTRIBUTE"; 7669*344a7f5eSAndroid Build Coastguard Worker field public static final java.lang.String ACTION_ARGUMENT_MEDIA_ATTRIBUTE_VALUE = "android.support.v4.media.session.action.ARGUMENT_MEDIA_ATTRIBUTE_VALUE"; 7670*344a7f5eSAndroid Build Coastguard Worker field public static final java.lang.String ACTION_FLAG_AS_INAPPROPRIATE = "android.support.v4.media.session.action.FLAG_AS_INAPPROPRIATE"; 7671*344a7f5eSAndroid Build Coastguard Worker field public static final java.lang.String ACTION_FOLLOW = "android.support.v4.media.session.action.FOLLOW"; 7672*344a7f5eSAndroid Build Coastguard Worker field public static final java.lang.String ACTION_SKIP_AD = "android.support.v4.media.session.action.SKIP_AD"; 7673*344a7f5eSAndroid Build Coastguard Worker field public static final java.lang.String ACTION_UNFOLLOW = "android.support.v4.media.session.action.UNFOLLOW"; 7674*344a7f5eSAndroid Build Coastguard Worker field public static final int FLAG_HANDLES_MEDIA_BUTTONS = 1; // 0x1 7675*344a7f5eSAndroid Build Coastguard Worker field public static final int FLAG_HANDLES_QUEUE_COMMANDS = 4; // 0x4 7676*344a7f5eSAndroid Build Coastguard Worker field public static final int FLAG_HANDLES_TRANSPORT_CONTROLS = 2; // 0x2 7677*344a7f5eSAndroid Build Coastguard Worker field public static final int MEDIA_ATTRIBUTE_ALBUM = 1; // 0x1 7678*344a7f5eSAndroid Build Coastguard Worker field public static final int MEDIA_ATTRIBUTE_ARTIST = 0; // 0x0 7679*344a7f5eSAndroid Build Coastguard Worker field public static final int MEDIA_ATTRIBUTE_PLAYLIST = 2; // 0x2 7680*344a7f5eSAndroid Build Coastguard Worker } 7681*344a7f5eSAndroid Build Coastguard Worker 7682*344a7f5eSAndroid Build Coastguard Worker public static abstract class MediaSessionCompat.Callback { 7683*344a7f5eSAndroid Build Coastguard Worker ctor public MediaSessionCompat.Callback(); 7684*344a7f5eSAndroid Build Coastguard Worker method public void onAddQueueItem(android.support.v4.media.MediaDescriptionCompat); 7685*344a7f5eSAndroid Build Coastguard Worker method public void onAddQueueItem(android.support.v4.media.MediaDescriptionCompat, int); 7686*344a7f5eSAndroid Build Coastguard Worker method public void onCommand(java.lang.String, android.os.Bundle, android.os.ResultReceiver); 7687*344a7f5eSAndroid Build Coastguard Worker method public void onCustomAction(java.lang.String, android.os.Bundle); 7688*344a7f5eSAndroid Build Coastguard Worker method public void onFastForward(); 7689*344a7f5eSAndroid Build Coastguard Worker method public boolean onMediaButtonEvent(android.content.Intent); 7690*344a7f5eSAndroid Build Coastguard Worker method public void onPause(); 7691*344a7f5eSAndroid Build Coastguard Worker method public void onPlay(); 7692*344a7f5eSAndroid Build Coastguard Worker method public void onPlayFromMediaId(java.lang.String, android.os.Bundle); 7693*344a7f5eSAndroid Build Coastguard Worker method public void onPlayFromSearch(java.lang.String, android.os.Bundle); 7694*344a7f5eSAndroid Build Coastguard Worker method public void onPlayFromUri(android.net.Uri, android.os.Bundle); 7695*344a7f5eSAndroid Build Coastguard Worker method public void onPrepare(); 7696*344a7f5eSAndroid Build Coastguard Worker method public void onPrepareFromMediaId(java.lang.String, android.os.Bundle); 7697*344a7f5eSAndroid Build Coastguard Worker method public void onPrepareFromSearch(java.lang.String, android.os.Bundle); 7698*344a7f5eSAndroid Build Coastguard Worker method public void onPrepareFromUri(android.net.Uri, android.os.Bundle); 7699*344a7f5eSAndroid Build Coastguard Worker method public void onRemoveQueueItem(android.support.v4.media.MediaDescriptionCompat); 7700*344a7f5eSAndroid Build Coastguard Worker method public deprecated void onRemoveQueueItemAt(int); 7701*344a7f5eSAndroid Build Coastguard Worker method public void onRewind(); 7702*344a7f5eSAndroid Build Coastguard Worker method public void onSeekTo(long); 7703*344a7f5eSAndroid Build Coastguard Worker method public void onSetCaptioningEnabled(boolean); 7704*344a7f5eSAndroid Build Coastguard Worker method public void onSetRating(android.support.v4.media.RatingCompat); 7705*344a7f5eSAndroid Build Coastguard Worker method public void onSetRepeatMode(int); 7706*344a7f5eSAndroid Build Coastguard Worker method public void onSetShuffleMode(int); 7707*344a7f5eSAndroid Build Coastguard Worker method public deprecated void onSetShuffleModeEnabled(boolean); 7708*344a7f5eSAndroid Build Coastguard Worker method public void onSkipToNext(); 7709*344a7f5eSAndroid Build Coastguard Worker method public void onSkipToPrevious(); 7710*344a7f5eSAndroid Build Coastguard Worker method public void onSkipToQueueItem(long); 7711*344a7f5eSAndroid Build Coastguard Worker method public void onStop(); 7712*344a7f5eSAndroid Build Coastguard Worker } 7713*344a7f5eSAndroid Build Coastguard Worker 7714*344a7f5eSAndroid Build Coastguard Worker public static abstract interface MediaSessionCompat.OnActiveChangeListener { 7715*344a7f5eSAndroid Build Coastguard Worker method public abstract void onActiveChanged(); 7716*344a7f5eSAndroid Build Coastguard Worker } 7717*344a7f5eSAndroid Build Coastguard Worker 7718*344a7f5eSAndroid Build Coastguard Worker public static final class MediaSessionCompat.QueueItem implements android.os.Parcelable { 7719*344a7f5eSAndroid Build Coastguard Worker ctor public MediaSessionCompat.QueueItem(android.support.v4.media.MediaDescriptionCompat, long); 7720*344a7f5eSAndroid Build Coastguard Worker method public int describeContents(); 7721*344a7f5eSAndroid Build Coastguard Worker method public static android.support.v4.media.session.MediaSessionCompat.QueueItem fromQueueItem(java.lang.Object); 7722*344a7f5eSAndroid Build Coastguard Worker method public static java.util.List<android.support.v4.media.session.MediaSessionCompat.QueueItem> fromQueueItemList(java.util.List<?>); 7723*344a7f5eSAndroid Build Coastguard Worker method public android.support.v4.media.MediaDescriptionCompat getDescription(); 7724*344a7f5eSAndroid Build Coastguard Worker method public long getQueueId(); 7725*344a7f5eSAndroid Build Coastguard Worker method public java.lang.Object getQueueItem(); 7726*344a7f5eSAndroid Build Coastguard Worker method public void writeToParcel(android.os.Parcel, int); 7727*344a7f5eSAndroid Build Coastguard Worker field public static final android.os.Parcelable.Creator<android.support.v4.media.session.MediaSessionCompat.QueueItem> CREATOR; 7728*344a7f5eSAndroid Build Coastguard Worker field public static final int UNKNOWN_ID = -1; // 0xffffffff 7729*344a7f5eSAndroid Build Coastguard Worker } 7730*344a7f5eSAndroid Build Coastguard Worker 7731*344a7f5eSAndroid Build Coastguard Worker public static final class MediaSessionCompat.Token implements android.os.Parcelable { 7732*344a7f5eSAndroid Build Coastguard Worker method public int describeContents(); 7733*344a7f5eSAndroid Build Coastguard Worker method public static android.support.v4.media.session.MediaSessionCompat.Token fromToken(java.lang.Object); 7734*344a7f5eSAndroid Build Coastguard Worker method public java.lang.Object getToken(); 7735*344a7f5eSAndroid Build Coastguard Worker method public void writeToParcel(android.os.Parcel, int); 7736*344a7f5eSAndroid Build Coastguard Worker field public static final android.os.Parcelable.Creator<android.support.v4.media.session.MediaSessionCompat.Token> CREATOR; 7737*344a7f5eSAndroid Build Coastguard Worker } 7738*344a7f5eSAndroid Build Coastguard Worker 7739*344a7f5eSAndroid Build Coastguard Worker public class ParcelableVolumeInfo implements android.os.Parcelable { 7740*344a7f5eSAndroid Build Coastguard Worker ctor public ParcelableVolumeInfo(int, int, int, int, int); 7741*344a7f5eSAndroid Build Coastguard Worker ctor public ParcelableVolumeInfo(android.os.Parcel); 7742*344a7f5eSAndroid Build Coastguard Worker method public int describeContents(); 7743*344a7f5eSAndroid Build Coastguard Worker method public void writeToParcel(android.os.Parcel, int); 7744*344a7f5eSAndroid Build Coastguard Worker field public static final android.os.Parcelable.Creator<android.support.v4.media.session.ParcelableVolumeInfo> CREATOR; 7745*344a7f5eSAndroid Build Coastguard Worker field public int audioStream; 7746*344a7f5eSAndroid Build Coastguard Worker field public int controlType; 7747*344a7f5eSAndroid Build Coastguard Worker field public int currentVolume; 7748*344a7f5eSAndroid Build Coastguard Worker field public int maxVolume; 7749*344a7f5eSAndroid Build Coastguard Worker field public int volumeType; 7750*344a7f5eSAndroid Build Coastguard Worker } 7751*344a7f5eSAndroid Build Coastguard Worker 7752*344a7f5eSAndroid Build Coastguard Worker public final class PlaybackStateCompat implements android.os.Parcelable { 7753*344a7f5eSAndroid Build Coastguard Worker method public int describeContents(); 7754*344a7f5eSAndroid Build Coastguard Worker method public static android.support.v4.media.session.PlaybackStateCompat fromPlaybackState(java.lang.Object); 7755*344a7f5eSAndroid Build Coastguard Worker method public long getActions(); 7756*344a7f5eSAndroid Build Coastguard Worker method public long getActiveQueueItemId(); 7757*344a7f5eSAndroid Build Coastguard Worker method public long getBufferedPosition(); 7758*344a7f5eSAndroid Build Coastguard Worker method public java.util.List<android.support.v4.media.session.PlaybackStateCompat.CustomAction> getCustomActions(); 7759*344a7f5eSAndroid Build Coastguard Worker method public int getErrorCode(); 7760*344a7f5eSAndroid Build Coastguard Worker method public java.lang.CharSequence getErrorMessage(); 7761*344a7f5eSAndroid Build Coastguard Worker method public android.os.Bundle getExtras(); 7762*344a7f5eSAndroid Build Coastguard Worker method public long getLastPositionUpdateTime(); 7763*344a7f5eSAndroid Build Coastguard Worker method public float getPlaybackSpeed(); 7764*344a7f5eSAndroid Build Coastguard Worker method public java.lang.Object getPlaybackState(); 7765*344a7f5eSAndroid Build Coastguard Worker method public long getPosition(); 7766*344a7f5eSAndroid Build Coastguard Worker method public int getState(); 7767*344a7f5eSAndroid Build Coastguard Worker method public static int toKeyCode(long); 7768*344a7f5eSAndroid Build Coastguard Worker method public void writeToParcel(android.os.Parcel, int); 7769*344a7f5eSAndroid Build Coastguard Worker field public static final long ACTION_FAST_FORWARD = 64L; // 0x40L 7770*344a7f5eSAndroid Build Coastguard Worker field public static final long ACTION_PAUSE = 2L; // 0x2L 7771*344a7f5eSAndroid Build Coastguard Worker field public static final long ACTION_PLAY = 4L; // 0x4L 7772*344a7f5eSAndroid Build Coastguard Worker field public static final long ACTION_PLAY_FROM_MEDIA_ID = 1024L; // 0x400L 7773*344a7f5eSAndroid Build Coastguard Worker field public static final long ACTION_PLAY_FROM_SEARCH = 2048L; // 0x800L 7774*344a7f5eSAndroid Build Coastguard Worker field public static final long ACTION_PLAY_FROM_URI = 8192L; // 0x2000L 7775*344a7f5eSAndroid Build Coastguard Worker field public static final long ACTION_PLAY_PAUSE = 512L; // 0x200L 7776*344a7f5eSAndroid Build Coastguard Worker field public static final long ACTION_PREPARE = 16384L; // 0x4000L 7777*344a7f5eSAndroid Build Coastguard Worker field public static final long ACTION_PREPARE_FROM_MEDIA_ID = 32768L; // 0x8000L 7778*344a7f5eSAndroid Build Coastguard Worker field public static final long ACTION_PREPARE_FROM_SEARCH = 65536L; // 0x10000L 7779*344a7f5eSAndroid Build Coastguard Worker field public static final long ACTION_PREPARE_FROM_URI = 131072L; // 0x20000L 7780*344a7f5eSAndroid Build Coastguard Worker field public static final long ACTION_REWIND = 8L; // 0x8L 7781*344a7f5eSAndroid Build Coastguard Worker field public static final long ACTION_SEEK_TO = 256L; // 0x100L 7782*344a7f5eSAndroid Build Coastguard Worker field public static final long ACTION_SET_CAPTIONING_ENABLED = 1048576L; // 0x100000L 7783*344a7f5eSAndroid Build Coastguard Worker field public static final long ACTION_SET_RATING = 128L; // 0x80L 7784*344a7f5eSAndroid Build Coastguard Worker field public static final long ACTION_SET_REPEAT_MODE = 262144L; // 0x40000L 7785*344a7f5eSAndroid Build Coastguard Worker field public static final long ACTION_SET_SHUFFLE_MODE_ENABLED = 524288L; // 0x80000L 7786*344a7f5eSAndroid Build Coastguard Worker field public static final long ACTION_SKIP_TO_NEXT = 32L; // 0x20L 7787*344a7f5eSAndroid Build Coastguard Worker field public static final long ACTION_SKIP_TO_PREVIOUS = 16L; // 0x10L 7788*344a7f5eSAndroid Build Coastguard Worker field public static final long ACTION_SKIP_TO_QUEUE_ITEM = 4096L; // 0x1000L 7789*344a7f5eSAndroid Build Coastguard Worker field public static final long ACTION_STOP = 1L; // 0x1L 7790*344a7f5eSAndroid Build Coastguard Worker field public static final android.os.Parcelable.Creator<android.support.v4.media.session.PlaybackStateCompat> CREATOR; 7791*344a7f5eSAndroid Build Coastguard Worker field public static final int ERROR_CODE_ACTION_ABORTED = 10; // 0xa 7792*344a7f5eSAndroid Build Coastguard Worker field public static final int ERROR_CODE_APP_ERROR = 1; // 0x1 7793*344a7f5eSAndroid Build Coastguard Worker field public static final int ERROR_CODE_AUTHENTICATION_EXPIRED = 3; // 0x3 7794*344a7f5eSAndroid Build Coastguard Worker field public static final int ERROR_CODE_CONCURRENT_STREAM_LIMIT = 5; // 0x5 7795*344a7f5eSAndroid Build Coastguard Worker field public static final int ERROR_CODE_CONTENT_ALREADY_PLAYING = 8; // 0x8 7796*344a7f5eSAndroid Build Coastguard Worker field public static final int ERROR_CODE_END_OF_QUEUE = 11; // 0xb 7797*344a7f5eSAndroid Build Coastguard Worker field public static final int ERROR_CODE_NOT_AVAILABLE_IN_REGION = 7; // 0x7 7798*344a7f5eSAndroid Build Coastguard Worker field public static final int ERROR_CODE_NOT_SUPPORTED = 2; // 0x2 7799*344a7f5eSAndroid Build Coastguard Worker field public static final int ERROR_CODE_PARENTAL_CONTROL_RESTRICTED = 6; // 0x6 7800*344a7f5eSAndroid Build Coastguard Worker field public static final int ERROR_CODE_PREMIUM_ACCOUNT_REQUIRED = 4; // 0x4 7801*344a7f5eSAndroid Build Coastguard Worker field public static final int ERROR_CODE_SKIP_LIMIT_REACHED = 9; // 0x9 7802*344a7f5eSAndroid Build Coastguard Worker field public static final int ERROR_CODE_UNKNOWN_ERROR = 0; // 0x0 7803*344a7f5eSAndroid Build Coastguard Worker field public static final long PLAYBACK_POSITION_UNKNOWN = -1L; // 0xffffffffffffffffL 7804*344a7f5eSAndroid Build Coastguard Worker field public static final int REPEAT_MODE_ALL = 2; // 0x2 7805*344a7f5eSAndroid Build Coastguard Worker field public static final int REPEAT_MODE_GROUP = 3; // 0x3 7806*344a7f5eSAndroid Build Coastguard Worker field public static final int REPEAT_MODE_NONE = 0; // 0x0 7807*344a7f5eSAndroid Build Coastguard Worker field public static final int REPEAT_MODE_ONE = 1; // 0x1 7808*344a7f5eSAndroid Build Coastguard Worker field public static final int SHUFFLE_MODE_ALL = 1; // 0x1 7809*344a7f5eSAndroid Build Coastguard Worker field public static final int SHUFFLE_MODE_GROUP = 2; // 0x2 7810*344a7f5eSAndroid Build Coastguard Worker field public static final int SHUFFLE_MODE_NONE = 0; // 0x0 7811*344a7f5eSAndroid Build Coastguard Worker field public static final int STATE_BUFFERING = 6; // 0x6 7812*344a7f5eSAndroid Build Coastguard Worker field public static final int STATE_CONNECTING = 8; // 0x8 7813*344a7f5eSAndroid Build Coastguard Worker field public static final int STATE_ERROR = 7; // 0x7 7814*344a7f5eSAndroid Build Coastguard Worker field public static final int STATE_FAST_FORWARDING = 4; // 0x4 7815*344a7f5eSAndroid Build Coastguard Worker field public static final int STATE_NONE = 0; // 0x0 7816*344a7f5eSAndroid Build Coastguard Worker field public static final int STATE_PAUSED = 2; // 0x2 7817*344a7f5eSAndroid Build Coastguard Worker field public static final int STATE_PLAYING = 3; // 0x3 7818*344a7f5eSAndroid Build Coastguard Worker field public static final int STATE_REWINDING = 5; // 0x5 7819*344a7f5eSAndroid Build Coastguard Worker field public static final int STATE_SKIPPING_TO_NEXT = 10; // 0xa 7820*344a7f5eSAndroid Build Coastguard Worker field public static final int STATE_SKIPPING_TO_PREVIOUS = 9; // 0x9 7821*344a7f5eSAndroid Build Coastguard Worker field public static final int STATE_SKIPPING_TO_QUEUE_ITEM = 11; // 0xb 7822*344a7f5eSAndroid Build Coastguard Worker field public static final int STATE_STOPPED = 1; // 0x1 7823*344a7f5eSAndroid Build Coastguard Worker } 7824*344a7f5eSAndroid Build Coastguard Worker 7825*344a7f5eSAndroid Build Coastguard Worker public static final class PlaybackStateCompat.Builder { 7826*344a7f5eSAndroid Build Coastguard Worker ctor public PlaybackStateCompat.Builder(); 7827*344a7f5eSAndroid Build Coastguard Worker ctor public PlaybackStateCompat.Builder(android.support.v4.media.session.PlaybackStateCompat); 7828*344a7f5eSAndroid Build Coastguard Worker method public android.support.v4.media.session.PlaybackStateCompat.Builder addCustomAction(java.lang.String, java.lang.String, int); 7829*344a7f5eSAndroid Build Coastguard Worker method public android.support.v4.media.session.PlaybackStateCompat.Builder addCustomAction(android.support.v4.media.session.PlaybackStateCompat.CustomAction); 7830*344a7f5eSAndroid Build Coastguard Worker method public android.support.v4.media.session.PlaybackStateCompat build(); 7831*344a7f5eSAndroid Build Coastguard Worker method public android.support.v4.media.session.PlaybackStateCompat.Builder setActions(long); 7832*344a7f5eSAndroid Build Coastguard Worker method public android.support.v4.media.session.PlaybackStateCompat.Builder setActiveQueueItemId(long); 7833*344a7f5eSAndroid Build Coastguard Worker method public android.support.v4.media.session.PlaybackStateCompat.Builder setBufferedPosition(long); 7834*344a7f5eSAndroid Build Coastguard Worker method public deprecated android.support.v4.media.session.PlaybackStateCompat.Builder setErrorMessage(java.lang.CharSequence); 7835*344a7f5eSAndroid Build Coastguard Worker method public android.support.v4.media.session.PlaybackStateCompat.Builder setErrorMessage(int, java.lang.CharSequence); 7836*344a7f5eSAndroid Build Coastguard Worker method public android.support.v4.media.session.PlaybackStateCompat.Builder setExtras(android.os.Bundle); 7837*344a7f5eSAndroid Build Coastguard Worker method public android.support.v4.media.session.PlaybackStateCompat.Builder setState(int, long, float); 7838*344a7f5eSAndroid Build Coastguard Worker method public android.support.v4.media.session.PlaybackStateCompat.Builder setState(int, long, float, long); 7839*344a7f5eSAndroid Build Coastguard Worker } 7840*344a7f5eSAndroid Build Coastguard Worker 7841*344a7f5eSAndroid Build Coastguard Worker public static final class PlaybackStateCompat.CustomAction implements android.os.Parcelable { 7842*344a7f5eSAndroid Build Coastguard Worker method public int describeContents(); 7843*344a7f5eSAndroid Build Coastguard Worker method public static android.support.v4.media.session.PlaybackStateCompat.CustomAction fromCustomAction(java.lang.Object); 7844*344a7f5eSAndroid Build Coastguard Worker method public java.lang.String getAction(); 7845*344a7f5eSAndroid Build Coastguard Worker method public java.lang.Object getCustomAction(); 7846*344a7f5eSAndroid Build Coastguard Worker method public android.os.Bundle getExtras(); 7847*344a7f5eSAndroid Build Coastguard Worker method public int getIcon(); 7848*344a7f5eSAndroid Build Coastguard Worker method public java.lang.CharSequence getName(); 7849*344a7f5eSAndroid Build Coastguard Worker method public void writeToParcel(android.os.Parcel, int); 7850*344a7f5eSAndroid Build Coastguard Worker field public static final android.os.Parcelable.Creator<android.support.v4.media.session.PlaybackStateCompat.CustomAction> CREATOR; 7851*344a7f5eSAndroid Build Coastguard Worker } 7852*344a7f5eSAndroid Build Coastguard Worker 7853*344a7f5eSAndroid Build Coastguard Worker public static final class PlaybackStateCompat.CustomAction.Builder { 7854*344a7f5eSAndroid Build Coastguard Worker ctor public PlaybackStateCompat.CustomAction.Builder(java.lang.String, java.lang.CharSequence, int); 7855*344a7f5eSAndroid Build Coastguard Worker method public android.support.v4.media.session.PlaybackStateCompat.CustomAction build(); 7856*344a7f5eSAndroid Build Coastguard Worker method public android.support.v4.media.session.PlaybackStateCompat.CustomAction.Builder setExtras(android.os.Bundle); 7857*344a7f5eSAndroid Build Coastguard Worker } 7858*344a7f5eSAndroid Build Coastguard Worker 7859*344a7f5eSAndroid Build Coastguard Worker} 7860*344a7f5eSAndroid Build Coastguard Worker 7861*344a7f5eSAndroid Build Coastguard Workerpackage android.support.v4.net { 7862*344a7f5eSAndroid Build Coastguard Worker 7863*344a7f5eSAndroid Build Coastguard Worker public final class ConnectivityManagerCompat { 7864*344a7f5eSAndroid Build Coastguard Worker method public static android.net.NetworkInfo getNetworkInfoFromBroadcast(android.net.ConnectivityManager, android.content.Intent); 7865*344a7f5eSAndroid Build Coastguard Worker method public static int getRestrictBackgroundStatus(android.net.ConnectivityManager); 7866*344a7f5eSAndroid Build Coastguard Worker method public static boolean isActiveNetworkMetered(android.net.ConnectivityManager); 7867*344a7f5eSAndroid Build Coastguard Worker field public static final int RESTRICT_BACKGROUND_STATUS_DISABLED = 1; // 0x1 7868*344a7f5eSAndroid Build Coastguard Worker field public static final int RESTRICT_BACKGROUND_STATUS_ENABLED = 3; // 0x3 7869*344a7f5eSAndroid Build Coastguard Worker field public static final int RESTRICT_BACKGROUND_STATUS_WHITELISTED = 2; // 0x2 7870*344a7f5eSAndroid Build Coastguard Worker } 7871*344a7f5eSAndroid Build Coastguard Worker 7872*344a7f5eSAndroid Build Coastguard Worker public final class TrafficStatsCompat { 7873*344a7f5eSAndroid Build Coastguard Worker method public static deprecated void clearThreadStatsTag(); 7874*344a7f5eSAndroid Build Coastguard Worker method public static deprecated int getThreadStatsTag(); 7875*344a7f5eSAndroid Build Coastguard Worker method public static deprecated void incrementOperationCount(int); 7876*344a7f5eSAndroid Build Coastguard Worker method public static deprecated void incrementOperationCount(int, int); 7877*344a7f5eSAndroid Build Coastguard Worker method public static deprecated void setThreadStatsTag(int); 7878*344a7f5eSAndroid Build Coastguard Worker method public static void tagDatagramSocket(java.net.DatagramSocket) throws java.net.SocketException; 7879*344a7f5eSAndroid Build Coastguard Worker method public static deprecated void tagSocket(java.net.Socket) throws java.net.SocketException; 7880*344a7f5eSAndroid Build Coastguard Worker method public static void untagDatagramSocket(java.net.DatagramSocket) throws java.net.SocketException; 7881*344a7f5eSAndroid Build Coastguard Worker method public static deprecated void untagSocket(java.net.Socket) throws java.net.SocketException; 7882*344a7f5eSAndroid Build Coastguard Worker } 7883*344a7f5eSAndroid Build Coastguard Worker 7884*344a7f5eSAndroid Build Coastguard Worker} 7885*344a7f5eSAndroid Build Coastguard Worker 7886*344a7f5eSAndroid Build Coastguard Workerpackage android.support.v4.os { 7887*344a7f5eSAndroid Build Coastguard Worker 7888*344a7f5eSAndroid Build Coastguard Worker public final deprecated class AsyncTaskCompat { 7889*344a7f5eSAndroid Build Coastguard Worker method public static deprecated <Params, Progress, Result> android.os.AsyncTask<Params, Progress, Result> executeParallel(android.os.AsyncTask<Params, Progress, Result>, Params...); 7890*344a7f5eSAndroid Build Coastguard Worker } 7891*344a7f5eSAndroid Build Coastguard Worker 7892*344a7f5eSAndroid Build Coastguard Worker public class BuildCompat { 7893*344a7f5eSAndroid Build Coastguard Worker method public static deprecated boolean isAtLeastN(); 7894*344a7f5eSAndroid Build Coastguard Worker method public static deprecated boolean isAtLeastNMR1(); 7895*344a7f5eSAndroid Build Coastguard Worker method public static deprecated boolean isAtLeastO(); 7896*344a7f5eSAndroid Build Coastguard Worker method public static boolean isAtLeastOMR1(); 7897*344a7f5eSAndroid Build Coastguard Worker method public static boolean isAtLeastP(); 7898*344a7f5eSAndroid Build Coastguard Worker } 7899*344a7f5eSAndroid Build Coastguard Worker 7900*344a7f5eSAndroid Build Coastguard Worker public final class CancellationSignal { 7901*344a7f5eSAndroid Build Coastguard Worker ctor public CancellationSignal(); 7902*344a7f5eSAndroid Build Coastguard Worker method public void cancel(); 7903*344a7f5eSAndroid Build Coastguard Worker method public java.lang.Object getCancellationSignalObject(); 7904*344a7f5eSAndroid Build Coastguard Worker method public boolean isCanceled(); 7905*344a7f5eSAndroid Build Coastguard Worker method public void setOnCancelListener(android.support.v4.os.CancellationSignal.OnCancelListener); 7906*344a7f5eSAndroid Build Coastguard Worker method public void throwIfCanceled(); 7907*344a7f5eSAndroid Build Coastguard Worker } 7908*344a7f5eSAndroid Build Coastguard Worker 7909*344a7f5eSAndroid Build Coastguard Worker public static abstract interface CancellationSignal.OnCancelListener { 7910*344a7f5eSAndroid Build Coastguard Worker method public abstract void onCancel(); 7911*344a7f5eSAndroid Build Coastguard Worker } 7912*344a7f5eSAndroid Build Coastguard Worker 7913*344a7f5eSAndroid Build Coastguard Worker public final class ConfigurationCompat { 7914*344a7f5eSAndroid Build Coastguard Worker method public static android.support.v4.os.LocaleListCompat getLocales(android.content.res.Configuration); 7915*344a7f5eSAndroid Build Coastguard Worker } 7916*344a7f5eSAndroid Build Coastguard Worker 7917*344a7f5eSAndroid Build Coastguard Worker public final class EnvironmentCompat { 7918*344a7f5eSAndroid Build Coastguard Worker method public static java.lang.String getStorageState(java.io.File); 7919*344a7f5eSAndroid Build Coastguard Worker field public static final java.lang.String MEDIA_UNKNOWN = "unknown"; 7920*344a7f5eSAndroid Build Coastguard Worker } 7921*344a7f5eSAndroid Build Coastguard Worker 7922*344a7f5eSAndroid Build Coastguard Worker public final class LocaleListCompat { 7923*344a7f5eSAndroid Build Coastguard Worker method public static android.support.v4.os.LocaleListCompat create(java.util.Locale...); 7924*344a7f5eSAndroid Build Coastguard Worker method public static android.support.v4.os.LocaleListCompat forLanguageTags(java.lang.String); 7925*344a7f5eSAndroid Build Coastguard Worker method public java.util.Locale get(int); 7926*344a7f5eSAndroid Build Coastguard Worker method public static android.support.v4.os.LocaleListCompat getAdjustedDefault(); 7927*344a7f5eSAndroid Build Coastguard Worker method public static android.support.v4.os.LocaleListCompat getDefault(); 7928*344a7f5eSAndroid Build Coastguard Worker method public static android.support.v4.os.LocaleListCompat getEmptyLocaleList(); 7929*344a7f5eSAndroid Build Coastguard Worker method public java.util.Locale getFirstMatch(java.lang.String[]); 7930*344a7f5eSAndroid Build Coastguard Worker method public int indexOf(java.util.Locale); 7931*344a7f5eSAndroid Build Coastguard Worker method public boolean isEmpty(); 7932*344a7f5eSAndroid Build Coastguard Worker method public int size(); 7933*344a7f5eSAndroid Build Coastguard Worker method public java.lang.String toLanguageTags(); 7934*344a7f5eSAndroid Build Coastguard Worker method public java.lang.Object unwrap(); 7935*344a7f5eSAndroid Build Coastguard Worker method public static android.support.v4.os.LocaleListCompat wrap(java.lang.Object); 7936*344a7f5eSAndroid Build Coastguard Worker } 7937*344a7f5eSAndroid Build Coastguard Worker 7938*344a7f5eSAndroid Build Coastguard Worker public class OperationCanceledException extends java.lang.RuntimeException { 7939*344a7f5eSAndroid Build Coastguard Worker ctor public OperationCanceledException(); 7940*344a7f5eSAndroid Build Coastguard Worker ctor public OperationCanceledException(java.lang.String); 7941*344a7f5eSAndroid Build Coastguard Worker } 7942*344a7f5eSAndroid Build Coastguard Worker 7943*344a7f5eSAndroid Build Coastguard Worker public final deprecated class ParcelableCompat { 7944*344a7f5eSAndroid Build Coastguard Worker method public static deprecated <T> android.os.Parcelable.Creator<T> newCreator(android.support.v4.os.ParcelableCompatCreatorCallbacks<T>); 7945*344a7f5eSAndroid Build Coastguard Worker } 7946*344a7f5eSAndroid Build Coastguard Worker 7947*344a7f5eSAndroid Build Coastguard Worker public abstract deprecated interface ParcelableCompatCreatorCallbacks<T> { 7948*344a7f5eSAndroid Build Coastguard Worker method public abstract T createFromParcel(android.os.Parcel, java.lang.ClassLoader); 7949*344a7f5eSAndroid Build Coastguard Worker method public abstract T[] newArray(int); 7950*344a7f5eSAndroid Build Coastguard Worker } 7951*344a7f5eSAndroid Build Coastguard Worker 7952*344a7f5eSAndroid Build Coastguard Worker public final class TraceCompat { 7953*344a7f5eSAndroid Build Coastguard Worker method public static void beginSection(java.lang.String); 7954*344a7f5eSAndroid Build Coastguard Worker method public static void endSection(); 7955*344a7f5eSAndroid Build Coastguard Worker } 7956*344a7f5eSAndroid Build Coastguard Worker 7957*344a7f5eSAndroid Build Coastguard Worker public class UserManagerCompat { 7958*344a7f5eSAndroid Build Coastguard Worker method public static boolean isUserUnlocked(android.content.Context); 7959*344a7f5eSAndroid Build Coastguard Worker } 7960*344a7f5eSAndroid Build Coastguard Worker 7961*344a7f5eSAndroid Build Coastguard Worker} 7962*344a7f5eSAndroid Build Coastguard Worker 7963*344a7f5eSAndroid Build Coastguard Workerpackage android.support.v4.print { 7964*344a7f5eSAndroid Build Coastguard Worker 7965*344a7f5eSAndroid Build Coastguard Worker public final class PrintHelper { 7966*344a7f5eSAndroid Build Coastguard Worker ctor public PrintHelper(android.content.Context); 7967*344a7f5eSAndroid Build Coastguard Worker method public int getColorMode(); 7968*344a7f5eSAndroid Build Coastguard Worker method public int getOrientation(); 7969*344a7f5eSAndroid Build Coastguard Worker method public int getScaleMode(); 7970*344a7f5eSAndroid Build Coastguard Worker method public void printBitmap(java.lang.String, android.graphics.Bitmap); 7971*344a7f5eSAndroid Build Coastguard Worker method public void printBitmap(java.lang.String, android.graphics.Bitmap, android.support.v4.print.PrintHelper.OnPrintFinishCallback); 7972*344a7f5eSAndroid Build Coastguard Worker method public void printBitmap(java.lang.String, android.net.Uri) throws java.io.FileNotFoundException; 7973*344a7f5eSAndroid Build Coastguard Worker method public void printBitmap(java.lang.String, android.net.Uri, android.support.v4.print.PrintHelper.OnPrintFinishCallback) throws java.io.FileNotFoundException; 7974*344a7f5eSAndroid Build Coastguard Worker method public void setColorMode(int); 7975*344a7f5eSAndroid Build Coastguard Worker method public void setOrientation(int); 7976*344a7f5eSAndroid Build Coastguard Worker method public void setScaleMode(int); 7977*344a7f5eSAndroid Build Coastguard Worker method public static boolean systemSupportsPrint(); 7978*344a7f5eSAndroid Build Coastguard Worker field public static final int COLOR_MODE_COLOR = 2; // 0x2 7979*344a7f5eSAndroid Build Coastguard Worker field public static final int COLOR_MODE_MONOCHROME = 1; // 0x1 7980*344a7f5eSAndroid Build Coastguard Worker field public static final int ORIENTATION_LANDSCAPE = 1; // 0x1 7981*344a7f5eSAndroid Build Coastguard Worker field public static final int ORIENTATION_PORTRAIT = 2; // 0x2 7982*344a7f5eSAndroid Build Coastguard Worker field public static final int SCALE_MODE_FILL = 2; // 0x2 7983*344a7f5eSAndroid Build Coastguard Worker field public static final int SCALE_MODE_FIT = 1; // 0x1 7984*344a7f5eSAndroid Build Coastguard Worker } 7985*344a7f5eSAndroid Build Coastguard Worker 7986*344a7f5eSAndroid Build Coastguard Worker public static abstract interface PrintHelper.OnPrintFinishCallback { 7987*344a7f5eSAndroid Build Coastguard Worker method public abstract void onFinish(); 7988*344a7f5eSAndroid Build Coastguard Worker } 7989*344a7f5eSAndroid Build Coastguard Worker 7990*344a7f5eSAndroid Build Coastguard Worker} 7991*344a7f5eSAndroid Build Coastguard Worker 7992*344a7f5eSAndroid Build Coastguard Workerpackage android.support.v4.provider { 7993*344a7f5eSAndroid Build Coastguard Worker 7994*344a7f5eSAndroid Build Coastguard Worker public abstract class DocumentFile { 7995*344a7f5eSAndroid Build Coastguard Worker method public abstract boolean canRead(); 7996*344a7f5eSAndroid Build Coastguard Worker method public abstract boolean canWrite(); 7997*344a7f5eSAndroid Build Coastguard Worker method public abstract android.support.v4.provider.DocumentFile createDirectory(java.lang.String); 7998*344a7f5eSAndroid Build Coastguard Worker method public abstract android.support.v4.provider.DocumentFile createFile(java.lang.String, java.lang.String); 7999*344a7f5eSAndroid Build Coastguard Worker method public abstract boolean delete(); 8000*344a7f5eSAndroid Build Coastguard Worker method public abstract boolean exists(); 8001*344a7f5eSAndroid Build Coastguard Worker method public android.support.v4.provider.DocumentFile findFile(java.lang.String); 8002*344a7f5eSAndroid Build Coastguard Worker method public static android.support.v4.provider.DocumentFile fromFile(java.io.File); 8003*344a7f5eSAndroid Build Coastguard Worker method public static android.support.v4.provider.DocumentFile fromSingleUri(android.content.Context, android.net.Uri); 8004*344a7f5eSAndroid Build Coastguard Worker method public static android.support.v4.provider.DocumentFile fromTreeUri(android.content.Context, android.net.Uri); 8005*344a7f5eSAndroid Build Coastguard Worker method public abstract java.lang.String getName(); 8006*344a7f5eSAndroid Build Coastguard Worker method public android.support.v4.provider.DocumentFile getParentFile(); 8007*344a7f5eSAndroid Build Coastguard Worker method public abstract java.lang.String getType(); 8008*344a7f5eSAndroid Build Coastguard Worker method public abstract android.net.Uri getUri(); 8009*344a7f5eSAndroid Build Coastguard Worker method public abstract boolean isDirectory(); 8010*344a7f5eSAndroid Build Coastguard Worker method public static boolean isDocumentUri(android.content.Context, android.net.Uri); 8011*344a7f5eSAndroid Build Coastguard Worker method public abstract boolean isFile(); 8012*344a7f5eSAndroid Build Coastguard Worker method public abstract boolean isVirtual(); 8013*344a7f5eSAndroid Build Coastguard Worker method public abstract long lastModified(); 8014*344a7f5eSAndroid Build Coastguard Worker method public abstract long length(); 8015*344a7f5eSAndroid Build Coastguard Worker method public abstract android.support.v4.provider.DocumentFile[] listFiles(); 8016*344a7f5eSAndroid Build Coastguard Worker method public abstract boolean renameTo(java.lang.String); 8017*344a7f5eSAndroid Build Coastguard Worker } 8018*344a7f5eSAndroid Build Coastguard Worker 8019*344a7f5eSAndroid Build Coastguard Worker public final class FontRequest { 8020*344a7f5eSAndroid Build Coastguard Worker ctor public FontRequest(java.lang.String, java.lang.String, java.lang.String, java.util.List<java.util.List<byte[]>>); 8021*344a7f5eSAndroid Build Coastguard Worker ctor public FontRequest(java.lang.String, java.lang.String, java.lang.String, int); 8022*344a7f5eSAndroid Build Coastguard Worker method public java.util.List<java.util.List<byte[]>> getCertificates(); 8023*344a7f5eSAndroid Build Coastguard Worker method public int getCertificatesArrayResId(); 8024*344a7f5eSAndroid Build Coastguard Worker method public java.lang.String getProviderAuthority(); 8025*344a7f5eSAndroid Build Coastguard Worker method public java.lang.String getProviderPackage(); 8026*344a7f5eSAndroid Build Coastguard Worker method public java.lang.String getQuery(); 8027*344a7f5eSAndroid Build Coastguard Worker } 8028*344a7f5eSAndroid Build Coastguard Worker 8029*344a7f5eSAndroid Build Coastguard Worker public class FontsContractCompat { 8030*344a7f5eSAndroid Build Coastguard Worker method public static android.graphics.Typeface buildTypeface(android.content.Context, android.os.CancellationSignal, android.support.v4.provider.FontsContractCompat.FontInfo[]); 8031*344a7f5eSAndroid Build Coastguard Worker method public static android.support.v4.provider.FontsContractCompat.FontFamilyResult fetchFonts(android.content.Context, android.os.CancellationSignal, android.support.v4.provider.FontRequest) throws android.content.pm.PackageManager.NameNotFoundException; 8032*344a7f5eSAndroid Build Coastguard Worker method public static void requestFont(android.content.Context, android.support.v4.provider.FontRequest, android.support.v4.provider.FontsContractCompat.FontRequestCallback, android.os.Handler); 8033*344a7f5eSAndroid Build Coastguard Worker } 8034*344a7f5eSAndroid Build Coastguard Worker 8035*344a7f5eSAndroid Build Coastguard Worker public static final class FontsContractCompat.Columns { 8036*344a7f5eSAndroid Build Coastguard Worker ctor public FontsContractCompat.Columns(); 8037*344a7f5eSAndroid Build Coastguard Worker field public static final java.lang.String FILE_ID = "file_id"; 8038*344a7f5eSAndroid Build Coastguard Worker field public static final java.lang.String ITALIC = "font_italic"; 8039*344a7f5eSAndroid Build Coastguard Worker field public static final java.lang.String RESULT_CODE = "result_code"; 8040*344a7f5eSAndroid Build Coastguard Worker field public static final int RESULT_CODE_FONT_NOT_FOUND = 1; // 0x1 8041*344a7f5eSAndroid Build Coastguard Worker field public static final int RESULT_CODE_FONT_UNAVAILABLE = 2; // 0x2 8042*344a7f5eSAndroid Build Coastguard Worker field public static final int RESULT_CODE_MALFORMED_QUERY = 3; // 0x3 8043*344a7f5eSAndroid Build Coastguard Worker field public static final int RESULT_CODE_OK = 0; // 0x0 8044*344a7f5eSAndroid Build Coastguard Worker field public static final java.lang.String TTC_INDEX = "font_ttc_index"; 8045*344a7f5eSAndroid Build Coastguard Worker field public static final java.lang.String VARIATION_SETTINGS = "font_variation_settings"; 8046*344a7f5eSAndroid Build Coastguard Worker field public static final java.lang.String WEIGHT = "font_weight"; 8047*344a7f5eSAndroid Build Coastguard Worker } 8048*344a7f5eSAndroid Build Coastguard Worker 8049*344a7f5eSAndroid Build Coastguard Worker public static class FontsContractCompat.FontFamilyResult { 8050*344a7f5eSAndroid Build Coastguard Worker method public android.support.v4.provider.FontsContractCompat.FontInfo[] getFonts(); 8051*344a7f5eSAndroid Build Coastguard Worker method public int getStatusCode(); 8052*344a7f5eSAndroid Build Coastguard Worker field public static final int STATUS_OK = 0; // 0x0 8053*344a7f5eSAndroid Build Coastguard Worker field public static final int STATUS_UNEXPECTED_DATA_PROVIDED = 2; // 0x2 8054*344a7f5eSAndroid Build Coastguard Worker field public static final int STATUS_WRONG_CERTIFICATES = 1; // 0x1 8055*344a7f5eSAndroid Build Coastguard Worker } 8056*344a7f5eSAndroid Build Coastguard Worker 8057*344a7f5eSAndroid Build Coastguard Worker public static class FontsContractCompat.FontInfo { 8058*344a7f5eSAndroid Build Coastguard Worker method public int getResultCode(); 8059*344a7f5eSAndroid Build Coastguard Worker method public int getTtcIndex(); 8060*344a7f5eSAndroid Build Coastguard Worker method public android.net.Uri getUri(); 8061*344a7f5eSAndroid Build Coastguard Worker method public int getWeight(); 8062*344a7f5eSAndroid Build Coastguard Worker method public boolean isItalic(); 8063*344a7f5eSAndroid Build Coastguard Worker } 8064*344a7f5eSAndroid Build Coastguard Worker 8065*344a7f5eSAndroid Build Coastguard Worker public static class FontsContractCompat.FontRequestCallback { 8066*344a7f5eSAndroid Build Coastguard Worker ctor public FontsContractCompat.FontRequestCallback(); 8067*344a7f5eSAndroid Build Coastguard Worker method public void onTypefaceRequestFailed(int); 8068*344a7f5eSAndroid Build Coastguard Worker method public void onTypefaceRetrieved(android.graphics.Typeface); 8069*344a7f5eSAndroid Build Coastguard Worker field public static final int FAIL_REASON_FONT_LOAD_ERROR = -3; // 0xfffffffd 8070*344a7f5eSAndroid Build Coastguard Worker field public static final int FAIL_REASON_FONT_NOT_FOUND = 1; // 0x1 8071*344a7f5eSAndroid Build Coastguard Worker field public static final int FAIL_REASON_FONT_UNAVAILABLE = 2; // 0x2 8072*344a7f5eSAndroid Build Coastguard Worker field public static final int FAIL_REASON_MALFORMED_QUERY = 3; // 0x3 8073*344a7f5eSAndroid Build Coastguard Worker field public static final int FAIL_REASON_PROVIDER_NOT_FOUND = -1; // 0xffffffff 8074*344a7f5eSAndroid Build Coastguard Worker field public static final int FAIL_REASON_WRONG_CERTIFICATES = -2; // 0xfffffffe 8075*344a7f5eSAndroid Build Coastguard Worker } 8076*344a7f5eSAndroid Build Coastguard Worker 8077*344a7f5eSAndroid Build Coastguard Worker} 8078*344a7f5eSAndroid Build Coastguard Worker 8079*344a7f5eSAndroid Build Coastguard Workerpackage android.support.v4.text { 8080*344a7f5eSAndroid Build Coastguard Worker 8081*344a7f5eSAndroid Build Coastguard Worker public final class BidiFormatter { 8082*344a7f5eSAndroid Build Coastguard Worker method public static android.support.v4.text.BidiFormatter getInstance(); 8083*344a7f5eSAndroid Build Coastguard Worker method public static android.support.v4.text.BidiFormatter getInstance(boolean); 8084*344a7f5eSAndroid Build Coastguard Worker method public static android.support.v4.text.BidiFormatter getInstance(java.util.Locale); 8085*344a7f5eSAndroid Build Coastguard Worker method public boolean getStereoReset(); 8086*344a7f5eSAndroid Build Coastguard Worker method public boolean isRtl(java.lang.String); 8087*344a7f5eSAndroid Build Coastguard Worker method public boolean isRtl(java.lang.CharSequence); 8088*344a7f5eSAndroid Build Coastguard Worker method public boolean isRtlContext(); 8089*344a7f5eSAndroid Build Coastguard Worker method public java.lang.String unicodeWrap(java.lang.String, android.support.v4.text.TextDirectionHeuristicCompat, boolean); 8090*344a7f5eSAndroid Build Coastguard Worker method public java.lang.CharSequence unicodeWrap(java.lang.CharSequence, android.support.v4.text.TextDirectionHeuristicCompat, boolean); 8091*344a7f5eSAndroid Build Coastguard Worker method public java.lang.String unicodeWrap(java.lang.String, android.support.v4.text.TextDirectionHeuristicCompat); 8092*344a7f5eSAndroid Build Coastguard Worker method public java.lang.CharSequence unicodeWrap(java.lang.CharSequence, android.support.v4.text.TextDirectionHeuristicCompat); 8093*344a7f5eSAndroid Build Coastguard Worker method public java.lang.String unicodeWrap(java.lang.String, boolean); 8094*344a7f5eSAndroid Build Coastguard Worker method public java.lang.CharSequence unicodeWrap(java.lang.CharSequence, boolean); 8095*344a7f5eSAndroid Build Coastguard Worker method public java.lang.String unicodeWrap(java.lang.String); 8096*344a7f5eSAndroid Build Coastguard Worker method public java.lang.CharSequence unicodeWrap(java.lang.CharSequence); 8097*344a7f5eSAndroid Build Coastguard Worker } 8098*344a7f5eSAndroid Build Coastguard Worker 8099*344a7f5eSAndroid Build Coastguard Worker public static final class BidiFormatter.Builder { 8100*344a7f5eSAndroid Build Coastguard Worker ctor public BidiFormatter.Builder(); 8101*344a7f5eSAndroid Build Coastguard Worker ctor public BidiFormatter.Builder(boolean); 8102*344a7f5eSAndroid Build Coastguard Worker ctor public BidiFormatter.Builder(java.util.Locale); 8103*344a7f5eSAndroid Build Coastguard Worker method public android.support.v4.text.BidiFormatter build(); 8104*344a7f5eSAndroid Build Coastguard Worker method public android.support.v4.text.BidiFormatter.Builder setTextDirectionHeuristic(android.support.v4.text.TextDirectionHeuristicCompat); 8105*344a7f5eSAndroid Build Coastguard Worker method public android.support.v4.text.BidiFormatter.Builder stereoReset(boolean); 8106*344a7f5eSAndroid Build Coastguard Worker } 8107*344a7f5eSAndroid Build Coastguard Worker 8108*344a7f5eSAndroid Build Coastguard Worker public final class ICUCompat { 8109*344a7f5eSAndroid Build Coastguard Worker method public static java.lang.String maximizeAndGetScript(java.util.Locale); 8110*344a7f5eSAndroid Build Coastguard Worker } 8111*344a7f5eSAndroid Build Coastguard Worker 8112*344a7f5eSAndroid Build Coastguard Worker public abstract interface TextDirectionHeuristicCompat { 8113*344a7f5eSAndroid Build Coastguard Worker method public abstract boolean isRtl(char[], int, int); 8114*344a7f5eSAndroid Build Coastguard Worker method public abstract boolean isRtl(java.lang.CharSequence, int, int); 8115*344a7f5eSAndroid Build Coastguard Worker } 8116*344a7f5eSAndroid Build Coastguard Worker 8117*344a7f5eSAndroid Build Coastguard Worker public final class TextDirectionHeuristicsCompat { 8118*344a7f5eSAndroid Build Coastguard Worker field public static final android.support.v4.text.TextDirectionHeuristicCompat ANYRTL_LTR; 8119*344a7f5eSAndroid Build Coastguard Worker field public static final android.support.v4.text.TextDirectionHeuristicCompat FIRSTSTRONG_LTR; 8120*344a7f5eSAndroid Build Coastguard Worker field public static final android.support.v4.text.TextDirectionHeuristicCompat FIRSTSTRONG_RTL; 8121*344a7f5eSAndroid Build Coastguard Worker field public static final android.support.v4.text.TextDirectionHeuristicCompat LOCALE; 8122*344a7f5eSAndroid Build Coastguard Worker field public static final android.support.v4.text.TextDirectionHeuristicCompat LTR; 8123*344a7f5eSAndroid Build Coastguard Worker field public static final android.support.v4.text.TextDirectionHeuristicCompat RTL; 8124*344a7f5eSAndroid Build Coastguard Worker } 8125*344a7f5eSAndroid Build Coastguard Worker 8126*344a7f5eSAndroid Build Coastguard Worker public final class TextUtilsCompat { 8127*344a7f5eSAndroid Build Coastguard Worker method public static int getLayoutDirectionFromLocale(java.util.Locale); 8128*344a7f5eSAndroid Build Coastguard Worker method public static java.lang.String htmlEncode(java.lang.String); 8129*344a7f5eSAndroid Build Coastguard Worker field public static final deprecated java.util.Locale ROOT; 8130*344a7f5eSAndroid Build Coastguard Worker } 8131*344a7f5eSAndroid Build Coastguard Worker 8132*344a7f5eSAndroid Build Coastguard Worker} 8133*344a7f5eSAndroid Build Coastguard Worker 8134*344a7f5eSAndroid Build Coastguard Workerpackage android.support.v4.text.util { 8135*344a7f5eSAndroid Build Coastguard Worker 8136*344a7f5eSAndroid Build Coastguard Worker public final class LinkifyCompat { 8137*344a7f5eSAndroid Build Coastguard Worker method public static final boolean addLinks(android.text.Spannable, int); 8138*344a7f5eSAndroid Build Coastguard Worker method public static final boolean addLinks(android.widget.TextView, int); 8139*344a7f5eSAndroid Build Coastguard Worker method public static final void addLinks(android.widget.TextView, java.util.regex.Pattern, java.lang.String); 8140*344a7f5eSAndroid Build Coastguard Worker method public static final void addLinks(android.widget.TextView, java.util.regex.Pattern, java.lang.String, android.text.util.Linkify.MatchFilter, android.text.util.Linkify.TransformFilter); 8141*344a7f5eSAndroid Build Coastguard Worker method public static final void addLinks(android.widget.TextView, java.util.regex.Pattern, java.lang.String, java.lang.String[], android.text.util.Linkify.MatchFilter, android.text.util.Linkify.TransformFilter); 8142*344a7f5eSAndroid Build Coastguard Worker method public static final boolean addLinks(android.text.Spannable, java.util.regex.Pattern, java.lang.String); 8143*344a7f5eSAndroid Build Coastguard Worker method public static final boolean addLinks(android.text.Spannable, java.util.regex.Pattern, java.lang.String, android.text.util.Linkify.MatchFilter, android.text.util.Linkify.TransformFilter); 8144*344a7f5eSAndroid Build Coastguard Worker method public static final boolean addLinks(android.text.Spannable, java.util.regex.Pattern, java.lang.String, java.lang.String[], android.text.util.Linkify.MatchFilter, android.text.util.Linkify.TransformFilter); 8145*344a7f5eSAndroid Build Coastguard Worker } 8146*344a7f5eSAndroid Build Coastguard Worker 8147*344a7f5eSAndroid Build Coastguard Worker} 8148*344a7f5eSAndroid Build Coastguard Worker 8149*344a7f5eSAndroid Build Coastguard Workerpackage android.support.v4.util { 8150*344a7f5eSAndroid Build Coastguard Worker 8151*344a7f5eSAndroid Build Coastguard Worker public class ArrayMap<K, V> extends android.support.v4.util.SimpleArrayMap implements java.util.Map { 8152*344a7f5eSAndroid Build Coastguard Worker ctor public ArrayMap(); 8153*344a7f5eSAndroid Build Coastguard Worker ctor public ArrayMap(int); 8154*344a7f5eSAndroid Build Coastguard Worker ctor public ArrayMap(android.support.v4.util.SimpleArrayMap); 8155*344a7f5eSAndroid Build Coastguard Worker method public boolean containsAll(java.util.Collection<?>); 8156*344a7f5eSAndroid Build Coastguard Worker method public java.util.Set<java.util.Map.Entry<K, V>> entrySet(); 8157*344a7f5eSAndroid Build Coastguard Worker method public java.util.Set<K> keySet(); 8158*344a7f5eSAndroid Build Coastguard Worker method public void putAll(java.util.Map<? extends K, ? extends V>); 8159*344a7f5eSAndroid Build Coastguard Worker method public boolean removeAll(java.util.Collection<?>); 8160*344a7f5eSAndroid Build Coastguard Worker method public boolean retainAll(java.util.Collection<?>); 8161*344a7f5eSAndroid Build Coastguard Worker method public java.util.Collection<V> values(); 8162*344a7f5eSAndroid Build Coastguard Worker } 8163*344a7f5eSAndroid Build Coastguard Worker 8164*344a7f5eSAndroid Build Coastguard Worker public final class ArraySet<E> implements java.util.Collection java.util.Set { 8165*344a7f5eSAndroid Build Coastguard Worker ctor public ArraySet(); 8166*344a7f5eSAndroid Build Coastguard Worker ctor public ArraySet(int); 8167*344a7f5eSAndroid Build Coastguard Worker ctor public ArraySet(android.support.v4.util.ArraySet<E>); 8168*344a7f5eSAndroid Build Coastguard Worker method public boolean add(E); 8169*344a7f5eSAndroid Build Coastguard Worker method public void addAll(android.support.v4.util.ArraySet<? extends E>); 8170*344a7f5eSAndroid Build Coastguard Worker method public boolean addAll(java.util.Collection<? extends E>); 8171*344a7f5eSAndroid Build Coastguard Worker method public void clear(); 8172*344a7f5eSAndroid Build Coastguard Worker method public boolean contains(java.lang.Object); 8173*344a7f5eSAndroid Build Coastguard Worker method public boolean containsAll(java.util.Collection<?>); 8174*344a7f5eSAndroid Build Coastguard Worker method public void ensureCapacity(int); 8175*344a7f5eSAndroid Build Coastguard Worker method public int indexOf(java.lang.Object); 8176*344a7f5eSAndroid Build Coastguard Worker method public boolean isEmpty(); 8177*344a7f5eSAndroid Build Coastguard Worker method public java.util.Iterator<E> iterator(); 8178*344a7f5eSAndroid Build Coastguard Worker method public boolean remove(java.lang.Object); 8179*344a7f5eSAndroid Build Coastguard Worker method public boolean removeAll(android.support.v4.util.ArraySet<? extends E>); 8180*344a7f5eSAndroid Build Coastguard Worker method public boolean removeAll(java.util.Collection<?>); 8181*344a7f5eSAndroid Build Coastguard Worker method public E removeAt(int); 8182*344a7f5eSAndroid Build Coastguard Worker method public boolean retainAll(java.util.Collection<?>); 8183*344a7f5eSAndroid Build Coastguard Worker method public int size(); 8184*344a7f5eSAndroid Build Coastguard Worker method public java.lang.Object[] toArray(); 8185*344a7f5eSAndroid Build Coastguard Worker method public <T> T[] toArray(T[]); 8186*344a7f5eSAndroid Build Coastguard Worker method public E valueAt(int); 8187*344a7f5eSAndroid Build Coastguard Worker } 8188*344a7f5eSAndroid Build Coastguard Worker 8189*344a7f5eSAndroid Build Coastguard Worker public class AtomicFile { 8190*344a7f5eSAndroid Build Coastguard Worker ctor public AtomicFile(java.io.File); 8191*344a7f5eSAndroid Build Coastguard Worker method public void delete(); 8192*344a7f5eSAndroid Build Coastguard Worker method public void failWrite(java.io.FileOutputStream); 8193*344a7f5eSAndroid Build Coastguard Worker method public void finishWrite(java.io.FileOutputStream); 8194*344a7f5eSAndroid Build Coastguard Worker method public java.io.File getBaseFile(); 8195*344a7f5eSAndroid Build Coastguard Worker method public java.io.FileInputStream openRead() throws java.io.FileNotFoundException; 8196*344a7f5eSAndroid Build Coastguard Worker method public byte[] readFully() throws java.io.IOException; 8197*344a7f5eSAndroid Build Coastguard Worker method public java.io.FileOutputStream startWrite() throws java.io.IOException; 8198*344a7f5eSAndroid Build Coastguard Worker } 8199*344a7f5eSAndroid Build Coastguard Worker 8200*344a7f5eSAndroid Build Coastguard Worker public final class CircularArray<E> { 8201*344a7f5eSAndroid Build Coastguard Worker ctor public CircularArray(); 8202*344a7f5eSAndroid Build Coastguard Worker ctor public CircularArray(int); 8203*344a7f5eSAndroid Build Coastguard Worker method public void addFirst(E); 8204*344a7f5eSAndroid Build Coastguard Worker method public void addLast(E); 8205*344a7f5eSAndroid Build Coastguard Worker method public void clear(); 8206*344a7f5eSAndroid Build Coastguard Worker method public E get(int); 8207*344a7f5eSAndroid Build Coastguard Worker method public E getFirst(); 8208*344a7f5eSAndroid Build Coastguard Worker method public E getLast(); 8209*344a7f5eSAndroid Build Coastguard Worker method public boolean isEmpty(); 8210*344a7f5eSAndroid Build Coastguard Worker method public E popFirst(); 8211*344a7f5eSAndroid Build Coastguard Worker method public E popLast(); 8212*344a7f5eSAndroid Build Coastguard Worker method public void removeFromEnd(int); 8213*344a7f5eSAndroid Build Coastguard Worker method public void removeFromStart(int); 8214*344a7f5eSAndroid Build Coastguard Worker method public int size(); 8215*344a7f5eSAndroid Build Coastguard Worker } 8216*344a7f5eSAndroid Build Coastguard Worker 8217*344a7f5eSAndroid Build Coastguard Worker public final class CircularIntArray { 8218*344a7f5eSAndroid Build Coastguard Worker ctor public CircularIntArray(); 8219*344a7f5eSAndroid Build Coastguard Worker ctor public CircularIntArray(int); 8220*344a7f5eSAndroid Build Coastguard Worker method public void addFirst(int); 8221*344a7f5eSAndroid Build Coastguard Worker method public void addLast(int); 8222*344a7f5eSAndroid Build Coastguard Worker method public void clear(); 8223*344a7f5eSAndroid Build Coastguard Worker method public int get(int); 8224*344a7f5eSAndroid Build Coastguard Worker method public int getFirst(); 8225*344a7f5eSAndroid Build Coastguard Worker method public int getLast(); 8226*344a7f5eSAndroid Build Coastguard Worker method public boolean isEmpty(); 8227*344a7f5eSAndroid Build Coastguard Worker method public int popFirst(); 8228*344a7f5eSAndroid Build Coastguard Worker method public int popLast(); 8229*344a7f5eSAndroid Build Coastguard Worker method public void removeFromEnd(int); 8230*344a7f5eSAndroid Build Coastguard Worker method public void removeFromStart(int); 8231*344a7f5eSAndroid Build Coastguard Worker method public int size(); 8232*344a7f5eSAndroid Build Coastguard Worker } 8233*344a7f5eSAndroid Build Coastguard Worker 8234*344a7f5eSAndroid Build Coastguard Worker public class LongSparseArray<E> { 8235*344a7f5eSAndroid Build Coastguard Worker ctor public LongSparseArray(); 8236*344a7f5eSAndroid Build Coastguard Worker ctor public LongSparseArray(int); 8237*344a7f5eSAndroid Build Coastguard Worker method public void append(long, E); 8238*344a7f5eSAndroid Build Coastguard Worker method public void clear(); 8239*344a7f5eSAndroid Build Coastguard Worker method public android.support.v4.util.LongSparseArray<E> clone(); 8240*344a7f5eSAndroid Build Coastguard Worker method public void delete(long); 8241*344a7f5eSAndroid Build Coastguard Worker method public E get(long); 8242*344a7f5eSAndroid Build Coastguard Worker method public E get(long, E); 8243*344a7f5eSAndroid Build Coastguard Worker method public int indexOfKey(long); 8244*344a7f5eSAndroid Build Coastguard Worker method public int indexOfValue(E); 8245*344a7f5eSAndroid Build Coastguard Worker method public long keyAt(int); 8246*344a7f5eSAndroid Build Coastguard Worker method public void put(long, E); 8247*344a7f5eSAndroid Build Coastguard Worker method public void remove(long); 8248*344a7f5eSAndroid Build Coastguard Worker method public void removeAt(int); 8249*344a7f5eSAndroid Build Coastguard Worker method public void setValueAt(int, E); 8250*344a7f5eSAndroid Build Coastguard Worker method public int size(); 8251*344a7f5eSAndroid Build Coastguard Worker method public E valueAt(int); 8252*344a7f5eSAndroid Build Coastguard Worker } 8253*344a7f5eSAndroid Build Coastguard Worker 8254*344a7f5eSAndroid Build Coastguard Worker public class LruCache<K, V> { 8255*344a7f5eSAndroid Build Coastguard Worker ctor public LruCache(int); 8256*344a7f5eSAndroid Build Coastguard Worker method protected V create(K); 8257*344a7f5eSAndroid Build Coastguard Worker method public final synchronized int createCount(); 8258*344a7f5eSAndroid Build Coastguard Worker method protected void entryRemoved(boolean, K, V, V); 8259*344a7f5eSAndroid Build Coastguard Worker method public final void evictAll(); 8260*344a7f5eSAndroid Build Coastguard Worker method public final synchronized int evictionCount(); 8261*344a7f5eSAndroid Build Coastguard Worker method public final V get(K); 8262*344a7f5eSAndroid Build Coastguard Worker method public final synchronized int hitCount(); 8263*344a7f5eSAndroid Build Coastguard Worker method public final synchronized int maxSize(); 8264*344a7f5eSAndroid Build Coastguard Worker method public final synchronized int missCount(); 8265*344a7f5eSAndroid Build Coastguard Worker method public final V put(K, V); 8266*344a7f5eSAndroid Build Coastguard Worker method public final synchronized int putCount(); 8267*344a7f5eSAndroid Build Coastguard Worker method public final V remove(K); 8268*344a7f5eSAndroid Build Coastguard Worker method public void resize(int); 8269*344a7f5eSAndroid Build Coastguard Worker method public final synchronized int size(); 8270*344a7f5eSAndroid Build Coastguard Worker method protected int sizeOf(K, V); 8271*344a7f5eSAndroid Build Coastguard Worker method public final synchronized java.util.Map<K, V> snapshot(); 8272*344a7f5eSAndroid Build Coastguard Worker method public final synchronized java.lang.String toString(); 8273*344a7f5eSAndroid Build Coastguard Worker method public void trimToSize(int); 8274*344a7f5eSAndroid Build Coastguard Worker } 8275*344a7f5eSAndroid Build Coastguard Worker 8276*344a7f5eSAndroid Build Coastguard Worker public class Pair<F, S> { 8277*344a7f5eSAndroid Build Coastguard Worker ctor public Pair(F, S); 8278*344a7f5eSAndroid Build Coastguard Worker method public static <A, B> android.support.v4.util.Pair<A, B> create(A, B); 8279*344a7f5eSAndroid Build Coastguard Worker field public final F first; 8280*344a7f5eSAndroid Build Coastguard Worker field public final S second; 8281*344a7f5eSAndroid Build Coastguard Worker } 8282*344a7f5eSAndroid Build Coastguard Worker 8283*344a7f5eSAndroid Build Coastguard Worker public final class PatternsCompat { 8284*344a7f5eSAndroid Build Coastguard Worker field public static final java.util.regex.Pattern DOMAIN_NAME; 8285*344a7f5eSAndroid Build Coastguard Worker field public static final java.util.regex.Pattern EMAIL_ADDRESS; 8286*344a7f5eSAndroid Build Coastguard Worker field public static final java.util.regex.Pattern IP_ADDRESS; 8287*344a7f5eSAndroid Build Coastguard Worker field public static final java.util.regex.Pattern WEB_URL; 8288*344a7f5eSAndroid Build Coastguard Worker } 8289*344a7f5eSAndroid Build Coastguard Worker 8290*344a7f5eSAndroid Build Coastguard Worker public final class Pools { 8291*344a7f5eSAndroid Build Coastguard Worker } 8292*344a7f5eSAndroid Build Coastguard Worker 8293*344a7f5eSAndroid Build Coastguard Worker public static abstract interface Pools.Pool<T> { 8294*344a7f5eSAndroid Build Coastguard Worker method public abstract T acquire(); 8295*344a7f5eSAndroid Build Coastguard Worker method public abstract boolean release(T); 8296*344a7f5eSAndroid Build Coastguard Worker } 8297*344a7f5eSAndroid Build Coastguard Worker 8298*344a7f5eSAndroid Build Coastguard Worker public static class Pools.SimplePool<T> implements android.support.v4.util.Pools.Pool { 8299*344a7f5eSAndroid Build Coastguard Worker ctor public Pools.SimplePool(int); 8300*344a7f5eSAndroid Build Coastguard Worker method public T acquire(); 8301*344a7f5eSAndroid Build Coastguard Worker method public boolean release(T); 8302*344a7f5eSAndroid Build Coastguard Worker } 8303*344a7f5eSAndroid Build Coastguard Worker 8304*344a7f5eSAndroid Build Coastguard Worker public static class Pools.SynchronizedPool<T> extends android.support.v4.util.Pools.SimplePool { 8305*344a7f5eSAndroid Build Coastguard Worker ctor public Pools.SynchronizedPool(int); 8306*344a7f5eSAndroid Build Coastguard Worker } 8307*344a7f5eSAndroid Build Coastguard Worker 8308*344a7f5eSAndroid Build Coastguard Worker public class SimpleArrayMap<K, V> { 8309*344a7f5eSAndroid Build Coastguard Worker ctor public SimpleArrayMap(); 8310*344a7f5eSAndroid Build Coastguard Worker ctor public SimpleArrayMap(int); 8311*344a7f5eSAndroid Build Coastguard Worker ctor public SimpleArrayMap(android.support.v4.util.SimpleArrayMap<K, V>); 8312*344a7f5eSAndroid Build Coastguard Worker method public void clear(); 8313*344a7f5eSAndroid Build Coastguard Worker method public boolean containsKey(java.lang.Object); 8314*344a7f5eSAndroid Build Coastguard Worker method public boolean containsValue(java.lang.Object); 8315*344a7f5eSAndroid Build Coastguard Worker method public void ensureCapacity(int); 8316*344a7f5eSAndroid Build Coastguard Worker method public V get(java.lang.Object); 8317*344a7f5eSAndroid Build Coastguard Worker method public int indexOfKey(java.lang.Object); 8318*344a7f5eSAndroid Build Coastguard Worker method public boolean isEmpty(); 8319*344a7f5eSAndroid Build Coastguard Worker method public K keyAt(int); 8320*344a7f5eSAndroid Build Coastguard Worker method public V put(K, V); 8321*344a7f5eSAndroid Build Coastguard Worker method public void putAll(android.support.v4.util.SimpleArrayMap<? extends K, ? extends V>); 8322*344a7f5eSAndroid Build Coastguard Worker method public V remove(java.lang.Object); 8323*344a7f5eSAndroid Build Coastguard Worker method public V removeAt(int); 8324*344a7f5eSAndroid Build Coastguard Worker method public V setValueAt(int, V); 8325*344a7f5eSAndroid Build Coastguard Worker method public int size(); 8326*344a7f5eSAndroid Build Coastguard Worker method public V valueAt(int); 8327*344a7f5eSAndroid Build Coastguard Worker } 8328*344a7f5eSAndroid Build Coastguard Worker 8329*344a7f5eSAndroid Build Coastguard Worker public class SparseArrayCompat<E> { 8330*344a7f5eSAndroid Build Coastguard Worker ctor public SparseArrayCompat(); 8331*344a7f5eSAndroid Build Coastguard Worker ctor public SparseArrayCompat(int); 8332*344a7f5eSAndroid Build Coastguard Worker method public void append(int, E); 8333*344a7f5eSAndroid Build Coastguard Worker method public void clear(); 8334*344a7f5eSAndroid Build Coastguard Worker method public android.support.v4.util.SparseArrayCompat<E> clone(); 8335*344a7f5eSAndroid Build Coastguard Worker method public void delete(int); 8336*344a7f5eSAndroid Build Coastguard Worker method public E get(int); 8337*344a7f5eSAndroid Build Coastguard Worker method public E get(int, E); 8338*344a7f5eSAndroid Build Coastguard Worker method public int indexOfKey(int); 8339*344a7f5eSAndroid Build Coastguard Worker method public int indexOfValue(E); 8340*344a7f5eSAndroid Build Coastguard Worker method public int keyAt(int); 8341*344a7f5eSAndroid Build Coastguard Worker method public void put(int, E); 8342*344a7f5eSAndroid Build Coastguard Worker method public void remove(int); 8343*344a7f5eSAndroid Build Coastguard Worker method public void removeAt(int); 8344*344a7f5eSAndroid Build Coastguard Worker method public void removeAtRange(int, int); 8345*344a7f5eSAndroid Build Coastguard Worker method public void setValueAt(int, E); 8346*344a7f5eSAndroid Build Coastguard Worker method public int size(); 8347*344a7f5eSAndroid Build Coastguard Worker method public E valueAt(int); 8348*344a7f5eSAndroid Build Coastguard Worker } 8349*344a7f5eSAndroid Build Coastguard Worker 8350*344a7f5eSAndroid Build Coastguard Worker} 8351*344a7f5eSAndroid Build Coastguard Worker 8352*344a7f5eSAndroid Build Coastguard Workerpackage android.support.v4.utils { 8353*344a7f5eSAndroid Build Coastguard Worker 8354*344a7f5eSAndroid Build Coastguard Worker public class ObjectUtils { 8355*344a7f5eSAndroid Build Coastguard Worker method public static boolean objectEquals(java.lang.Object, java.lang.Object); 8356*344a7f5eSAndroid Build Coastguard Worker } 8357*344a7f5eSAndroid Build Coastguard Worker 8358*344a7f5eSAndroid Build Coastguard Worker} 8359*344a7f5eSAndroid Build Coastguard Worker 8360*344a7f5eSAndroid Build Coastguard Workerpackage android.support.v4.view { 8361*344a7f5eSAndroid Build Coastguard Worker 8362*344a7f5eSAndroid Build Coastguard Worker public abstract class AbsSavedState implements android.os.Parcelable { 8363*344a7f5eSAndroid Build Coastguard Worker ctor protected AbsSavedState(android.os.Parcelable); 8364*344a7f5eSAndroid Build Coastguard Worker ctor protected AbsSavedState(android.os.Parcel); 8365*344a7f5eSAndroid Build Coastguard Worker ctor protected AbsSavedState(android.os.Parcel, java.lang.ClassLoader); 8366*344a7f5eSAndroid Build Coastguard Worker method public int describeContents(); 8367*344a7f5eSAndroid Build Coastguard Worker method public final android.os.Parcelable getSuperState(); 8368*344a7f5eSAndroid Build Coastguard Worker method public void writeToParcel(android.os.Parcel, int); 8369*344a7f5eSAndroid Build Coastguard Worker field public static final android.os.Parcelable.Creator<android.support.v4.view.AbsSavedState> CREATOR; 8370*344a7f5eSAndroid Build Coastguard Worker field public static final android.support.v4.view.AbsSavedState EMPTY_STATE; 8371*344a7f5eSAndroid Build Coastguard Worker } 8372*344a7f5eSAndroid Build Coastguard Worker 8373*344a7f5eSAndroid Build Coastguard Worker public class AccessibilityDelegateCompat { 8374*344a7f5eSAndroid Build Coastguard Worker ctor public AccessibilityDelegateCompat(); 8375*344a7f5eSAndroid Build Coastguard Worker method public boolean dispatchPopulateAccessibilityEvent(android.view.View, android.view.accessibility.AccessibilityEvent); 8376*344a7f5eSAndroid Build Coastguard Worker method public android.support.v4.view.accessibility.AccessibilityNodeProviderCompat getAccessibilityNodeProvider(android.view.View); 8377*344a7f5eSAndroid Build Coastguard Worker method public void onInitializeAccessibilityEvent(android.view.View, android.view.accessibility.AccessibilityEvent); 8378*344a7f5eSAndroid Build Coastguard Worker method public void onInitializeAccessibilityNodeInfo(android.view.View, android.support.v4.view.accessibility.AccessibilityNodeInfoCompat); 8379*344a7f5eSAndroid Build Coastguard Worker method public void onPopulateAccessibilityEvent(android.view.View, android.view.accessibility.AccessibilityEvent); 8380*344a7f5eSAndroid Build Coastguard Worker method public boolean onRequestSendAccessibilityEvent(android.view.ViewGroup, android.view.View, android.view.accessibility.AccessibilityEvent); 8381*344a7f5eSAndroid Build Coastguard Worker method public boolean performAccessibilityAction(android.view.View, int, android.os.Bundle); 8382*344a7f5eSAndroid Build Coastguard Worker method public void sendAccessibilityEvent(android.view.View, int); 8383*344a7f5eSAndroid Build Coastguard Worker method public void sendAccessibilityEventUnchecked(android.view.View, android.view.accessibility.AccessibilityEvent); 8384*344a7f5eSAndroid Build Coastguard Worker } 8385*344a7f5eSAndroid Build Coastguard Worker 8386*344a7f5eSAndroid Build Coastguard Worker public abstract class ActionProvider { 8387*344a7f5eSAndroid Build Coastguard Worker ctor public ActionProvider(android.content.Context); 8388*344a7f5eSAndroid Build Coastguard Worker method public android.content.Context getContext(); 8389*344a7f5eSAndroid Build Coastguard Worker method public boolean hasSubMenu(); 8390*344a7f5eSAndroid Build Coastguard Worker method public boolean isVisible(); 8391*344a7f5eSAndroid Build Coastguard Worker method public abstract android.view.View onCreateActionView(); 8392*344a7f5eSAndroid Build Coastguard Worker method public android.view.View onCreateActionView(android.view.MenuItem); 8393*344a7f5eSAndroid Build Coastguard Worker method public boolean onPerformDefaultAction(); 8394*344a7f5eSAndroid Build Coastguard Worker method public void onPrepareSubMenu(android.view.SubMenu); 8395*344a7f5eSAndroid Build Coastguard Worker method public boolean overridesItemVisibility(); 8396*344a7f5eSAndroid Build Coastguard Worker method public void refreshVisibility(); 8397*344a7f5eSAndroid Build Coastguard Worker method public void setVisibilityListener(android.support.v4.view.ActionProvider.VisibilityListener); 8398*344a7f5eSAndroid Build Coastguard Worker } 8399*344a7f5eSAndroid Build Coastguard Worker 8400*344a7f5eSAndroid Build Coastguard Worker public static abstract interface ActionProvider.VisibilityListener { 8401*344a7f5eSAndroid Build Coastguard Worker method public abstract void onActionProviderVisibilityChanged(boolean); 8402*344a7f5eSAndroid Build Coastguard Worker } 8403*344a7f5eSAndroid Build Coastguard Worker 8404*344a7f5eSAndroid Build Coastguard Worker public final class AsyncLayoutInflater { 8405*344a7f5eSAndroid Build Coastguard Worker ctor public AsyncLayoutInflater(android.content.Context); 8406*344a7f5eSAndroid Build Coastguard Worker method public void inflate(int, android.view.ViewGroup, android.support.v4.view.AsyncLayoutInflater.OnInflateFinishedListener); 8407*344a7f5eSAndroid Build Coastguard Worker } 8408*344a7f5eSAndroid Build Coastguard Worker 8409*344a7f5eSAndroid Build Coastguard Worker public static abstract interface AsyncLayoutInflater.OnInflateFinishedListener { 8410*344a7f5eSAndroid Build Coastguard Worker method public abstract void onInflateFinished(android.view.View, int, android.view.ViewGroup); 8411*344a7f5eSAndroid Build Coastguard Worker } 8412*344a7f5eSAndroid Build Coastguard Worker 8413*344a7f5eSAndroid Build Coastguard Worker public final class GestureDetectorCompat { 8414*344a7f5eSAndroid Build Coastguard Worker ctor public GestureDetectorCompat(android.content.Context, android.view.GestureDetector.OnGestureListener); 8415*344a7f5eSAndroid Build Coastguard Worker ctor public GestureDetectorCompat(android.content.Context, android.view.GestureDetector.OnGestureListener, android.os.Handler); 8416*344a7f5eSAndroid Build Coastguard Worker method public boolean isLongpressEnabled(); 8417*344a7f5eSAndroid Build Coastguard Worker method public boolean onTouchEvent(android.view.MotionEvent); 8418*344a7f5eSAndroid Build Coastguard Worker method public void setIsLongpressEnabled(boolean); 8419*344a7f5eSAndroid Build Coastguard Worker method public void setOnDoubleTapListener(android.view.GestureDetector.OnDoubleTapListener); 8420*344a7f5eSAndroid Build Coastguard Worker } 8421*344a7f5eSAndroid Build Coastguard Worker 8422*344a7f5eSAndroid Build Coastguard Worker public final class GravityCompat { 8423*344a7f5eSAndroid Build Coastguard Worker method public static void apply(int, int, int, android.graphics.Rect, android.graphics.Rect, int); 8424*344a7f5eSAndroid Build Coastguard Worker method public static void apply(int, int, int, android.graphics.Rect, int, int, android.graphics.Rect, int); 8425*344a7f5eSAndroid Build Coastguard Worker method public static void applyDisplay(int, android.graphics.Rect, android.graphics.Rect, int); 8426*344a7f5eSAndroid Build Coastguard Worker method public static int getAbsoluteGravity(int, int); 8427*344a7f5eSAndroid Build Coastguard Worker field public static final int END = 8388613; // 0x800005 8428*344a7f5eSAndroid Build Coastguard Worker field public static final int RELATIVE_HORIZONTAL_GRAVITY_MASK = 8388615; // 0x800007 8429*344a7f5eSAndroid Build Coastguard Worker field public static final int RELATIVE_LAYOUT_DIRECTION = 8388608; // 0x800000 8430*344a7f5eSAndroid Build Coastguard Worker field public static final int START = 8388611; // 0x800003 8431*344a7f5eSAndroid Build Coastguard Worker } 8432*344a7f5eSAndroid Build Coastguard Worker 8433*344a7f5eSAndroid Build Coastguard Worker public final class InputDeviceCompat { 8434*344a7f5eSAndroid Build Coastguard Worker field public static final int SOURCE_ANY = -256; // 0xffffff00 8435*344a7f5eSAndroid Build Coastguard Worker field public static final int SOURCE_CLASS_BUTTON = 1; // 0x1 8436*344a7f5eSAndroid Build Coastguard Worker field public static final int SOURCE_CLASS_JOYSTICK = 16; // 0x10 8437*344a7f5eSAndroid Build Coastguard Worker field public static final int SOURCE_CLASS_MASK = 255; // 0xff 8438*344a7f5eSAndroid Build Coastguard Worker field public static final int SOURCE_CLASS_NONE = 0; // 0x0 8439*344a7f5eSAndroid Build Coastguard Worker field public static final int SOURCE_CLASS_POINTER = 2; // 0x2 8440*344a7f5eSAndroid Build Coastguard Worker field public static final int SOURCE_CLASS_POSITION = 8; // 0x8 8441*344a7f5eSAndroid Build Coastguard Worker field public static final int SOURCE_CLASS_TRACKBALL = 4; // 0x4 8442*344a7f5eSAndroid Build Coastguard Worker field public static final int SOURCE_DPAD = 513; // 0x201 8443*344a7f5eSAndroid Build Coastguard Worker field public static final int SOURCE_GAMEPAD = 1025; // 0x401 8444*344a7f5eSAndroid Build Coastguard Worker field public static final int SOURCE_HDMI = 33554433; // 0x2000001 8445*344a7f5eSAndroid Build Coastguard Worker field public static final int SOURCE_JOYSTICK = 16777232; // 0x1000010 8446*344a7f5eSAndroid Build Coastguard Worker field public static final int SOURCE_KEYBOARD = 257; // 0x101 8447*344a7f5eSAndroid Build Coastguard Worker field public static final int SOURCE_MOUSE = 8194; // 0x2002 8448*344a7f5eSAndroid Build Coastguard Worker field public static final int SOURCE_ROTARY_ENCODER = 4194304; // 0x400000 8449*344a7f5eSAndroid Build Coastguard Worker field public static final int SOURCE_STYLUS = 16386; // 0x4002 8450*344a7f5eSAndroid Build Coastguard Worker field public static final int SOURCE_TOUCHPAD = 1048584; // 0x100008 8451*344a7f5eSAndroid Build Coastguard Worker field public static final int SOURCE_TOUCHSCREEN = 4098; // 0x1002 8452*344a7f5eSAndroid Build Coastguard Worker field public static final int SOURCE_TOUCH_NAVIGATION = 2097152; // 0x200000 8453*344a7f5eSAndroid Build Coastguard Worker field public static final int SOURCE_TRACKBALL = 65540; // 0x10004 8454*344a7f5eSAndroid Build Coastguard Worker field public static final int SOURCE_UNKNOWN = 0; // 0x0 8455*344a7f5eSAndroid Build Coastguard Worker } 8456*344a7f5eSAndroid Build Coastguard Worker 8457*344a7f5eSAndroid Build Coastguard Worker public final deprecated class KeyEventCompat { 8458*344a7f5eSAndroid Build Coastguard Worker method public static deprecated boolean dispatch(android.view.KeyEvent, android.view.KeyEvent.Callback, java.lang.Object, java.lang.Object); 8459*344a7f5eSAndroid Build Coastguard Worker method public static deprecated java.lang.Object getKeyDispatcherState(android.view.View); 8460*344a7f5eSAndroid Build Coastguard Worker method public static deprecated boolean hasModifiers(android.view.KeyEvent, int); 8461*344a7f5eSAndroid Build Coastguard Worker method public static deprecated boolean hasNoModifiers(android.view.KeyEvent); 8462*344a7f5eSAndroid Build Coastguard Worker method public static deprecated boolean isCtrlPressed(android.view.KeyEvent); 8463*344a7f5eSAndroid Build Coastguard Worker method public static deprecated boolean isTracking(android.view.KeyEvent); 8464*344a7f5eSAndroid Build Coastguard Worker method public static deprecated boolean metaStateHasModifiers(int, int); 8465*344a7f5eSAndroid Build Coastguard Worker method public static deprecated boolean metaStateHasNoModifiers(int); 8466*344a7f5eSAndroid Build Coastguard Worker method public static deprecated int normalizeMetaState(int); 8467*344a7f5eSAndroid Build Coastguard Worker method public static deprecated void startTracking(android.view.KeyEvent); 8468*344a7f5eSAndroid Build Coastguard Worker } 8469*344a7f5eSAndroid Build Coastguard Worker 8470*344a7f5eSAndroid Build Coastguard Worker public final class LayoutInflaterCompat { 8471*344a7f5eSAndroid Build Coastguard Worker method public static deprecated android.support.v4.view.LayoutInflaterFactory getFactory(android.view.LayoutInflater); 8472*344a7f5eSAndroid Build Coastguard Worker method public static deprecated void setFactory(android.view.LayoutInflater, android.support.v4.view.LayoutInflaterFactory); 8473*344a7f5eSAndroid Build Coastguard Worker method public static void setFactory2(android.view.LayoutInflater, android.view.LayoutInflater.Factory2); 8474*344a7f5eSAndroid Build Coastguard Worker } 8475*344a7f5eSAndroid Build Coastguard Worker 8476*344a7f5eSAndroid Build Coastguard Worker public abstract deprecated interface LayoutInflaterFactory { 8477*344a7f5eSAndroid Build Coastguard Worker method public abstract android.view.View onCreateView(android.view.View, java.lang.String, android.content.Context, android.util.AttributeSet); 8478*344a7f5eSAndroid Build Coastguard Worker } 8479*344a7f5eSAndroid Build Coastguard Worker 8480*344a7f5eSAndroid Build Coastguard Worker public final class MarginLayoutParamsCompat { 8481*344a7f5eSAndroid Build Coastguard Worker method public static int getLayoutDirection(android.view.ViewGroup.MarginLayoutParams); 8482*344a7f5eSAndroid Build Coastguard Worker method public static int getMarginEnd(android.view.ViewGroup.MarginLayoutParams); 8483*344a7f5eSAndroid Build Coastguard Worker method public static int getMarginStart(android.view.ViewGroup.MarginLayoutParams); 8484*344a7f5eSAndroid Build Coastguard Worker method public static boolean isMarginRelative(android.view.ViewGroup.MarginLayoutParams); 8485*344a7f5eSAndroid Build Coastguard Worker method public static void resolveLayoutDirection(android.view.ViewGroup.MarginLayoutParams, int); 8486*344a7f5eSAndroid Build Coastguard Worker method public static void setLayoutDirection(android.view.ViewGroup.MarginLayoutParams, int); 8487*344a7f5eSAndroid Build Coastguard Worker method public static void setMarginEnd(android.view.ViewGroup.MarginLayoutParams, int); 8488*344a7f5eSAndroid Build Coastguard Worker method public static void setMarginStart(android.view.ViewGroup.MarginLayoutParams, int); 8489*344a7f5eSAndroid Build Coastguard Worker } 8490*344a7f5eSAndroid Build Coastguard Worker 8491*344a7f5eSAndroid Build Coastguard Worker public final class MenuCompat { 8492*344a7f5eSAndroid Build Coastguard Worker method public static deprecated void setShowAsAction(android.view.MenuItem, int); 8493*344a7f5eSAndroid Build Coastguard Worker } 8494*344a7f5eSAndroid Build Coastguard Worker 8495*344a7f5eSAndroid Build Coastguard Worker public final class MenuItemCompat { 8496*344a7f5eSAndroid Build Coastguard Worker method public static deprecated boolean collapseActionView(android.view.MenuItem); 8497*344a7f5eSAndroid Build Coastguard Worker method public static deprecated boolean expandActionView(android.view.MenuItem); 8498*344a7f5eSAndroid Build Coastguard Worker method public static android.support.v4.view.ActionProvider getActionProvider(android.view.MenuItem); 8499*344a7f5eSAndroid Build Coastguard Worker method public static deprecated android.view.View getActionView(android.view.MenuItem); 8500*344a7f5eSAndroid Build Coastguard Worker method public static int getAlphabeticModifiers(android.view.MenuItem); 8501*344a7f5eSAndroid Build Coastguard Worker method public static java.lang.CharSequence getContentDescription(android.view.MenuItem); 8502*344a7f5eSAndroid Build Coastguard Worker method public static android.content.res.ColorStateList getIconTintList(android.view.MenuItem); 8503*344a7f5eSAndroid Build Coastguard Worker method public static android.graphics.PorterDuff.Mode getIconTintMode(android.view.MenuItem); 8504*344a7f5eSAndroid Build Coastguard Worker method public static int getNumericModifiers(android.view.MenuItem); 8505*344a7f5eSAndroid Build Coastguard Worker method public static java.lang.CharSequence getTooltipText(android.view.MenuItem); 8506*344a7f5eSAndroid Build Coastguard Worker method public static deprecated boolean isActionViewExpanded(android.view.MenuItem); 8507*344a7f5eSAndroid Build Coastguard Worker method public static android.view.MenuItem setActionProvider(android.view.MenuItem, android.support.v4.view.ActionProvider); 8508*344a7f5eSAndroid Build Coastguard Worker method public static deprecated android.view.MenuItem setActionView(android.view.MenuItem, android.view.View); 8509*344a7f5eSAndroid Build Coastguard Worker method public static deprecated android.view.MenuItem setActionView(android.view.MenuItem, int); 8510*344a7f5eSAndroid Build Coastguard Worker method public static void setAlphabeticShortcut(android.view.MenuItem, char, int); 8511*344a7f5eSAndroid Build Coastguard Worker method public static void setContentDescription(android.view.MenuItem, java.lang.CharSequence); 8512*344a7f5eSAndroid Build Coastguard Worker method public static void setIconTintList(android.view.MenuItem, android.content.res.ColorStateList); 8513*344a7f5eSAndroid Build Coastguard Worker method public static void setIconTintMode(android.view.MenuItem, android.graphics.PorterDuff.Mode); 8514*344a7f5eSAndroid Build Coastguard Worker method public static void setNumericShortcut(android.view.MenuItem, char, int); 8515*344a7f5eSAndroid Build Coastguard Worker method public static deprecated android.view.MenuItem setOnActionExpandListener(android.view.MenuItem, android.support.v4.view.MenuItemCompat.OnActionExpandListener); 8516*344a7f5eSAndroid Build Coastguard Worker method public static void setShortcut(android.view.MenuItem, char, char, int, int); 8517*344a7f5eSAndroid Build Coastguard Worker method public static deprecated void setShowAsAction(android.view.MenuItem, int); 8518*344a7f5eSAndroid Build Coastguard Worker method public static void setTooltipText(android.view.MenuItem, java.lang.CharSequence); 8519*344a7f5eSAndroid Build Coastguard Worker field public static final deprecated int SHOW_AS_ACTION_ALWAYS = 2; // 0x2 8520*344a7f5eSAndroid Build Coastguard Worker field public static final deprecated int SHOW_AS_ACTION_COLLAPSE_ACTION_VIEW = 8; // 0x8 8521*344a7f5eSAndroid Build Coastguard Worker field public static final deprecated int SHOW_AS_ACTION_IF_ROOM = 1; // 0x1 8522*344a7f5eSAndroid Build Coastguard Worker field public static final deprecated int SHOW_AS_ACTION_NEVER = 0; // 0x0 8523*344a7f5eSAndroid Build Coastguard Worker field public static final deprecated int SHOW_AS_ACTION_WITH_TEXT = 4; // 0x4 8524*344a7f5eSAndroid Build Coastguard Worker } 8525*344a7f5eSAndroid Build Coastguard Worker 8526*344a7f5eSAndroid Build Coastguard Worker public static abstract deprecated interface MenuItemCompat.OnActionExpandListener { 8527*344a7f5eSAndroid Build Coastguard Worker method public abstract boolean onMenuItemActionCollapse(android.view.MenuItem); 8528*344a7f5eSAndroid Build Coastguard Worker method public abstract boolean onMenuItemActionExpand(android.view.MenuItem); 8529*344a7f5eSAndroid Build Coastguard Worker } 8530*344a7f5eSAndroid Build Coastguard Worker 8531*344a7f5eSAndroid Build Coastguard Worker public final class MotionEventCompat { 8532*344a7f5eSAndroid Build Coastguard Worker method public static deprecated int findPointerIndex(android.view.MotionEvent, int); 8533*344a7f5eSAndroid Build Coastguard Worker method public static deprecated int getActionIndex(android.view.MotionEvent); 8534*344a7f5eSAndroid Build Coastguard Worker method public static deprecated int getActionMasked(android.view.MotionEvent); 8535*344a7f5eSAndroid Build Coastguard Worker method public static deprecated float getAxisValue(android.view.MotionEvent, int); 8536*344a7f5eSAndroid Build Coastguard Worker method public static deprecated float getAxisValue(android.view.MotionEvent, int, int); 8537*344a7f5eSAndroid Build Coastguard Worker method public static deprecated int getButtonState(android.view.MotionEvent); 8538*344a7f5eSAndroid Build Coastguard Worker method public static deprecated int getPointerCount(android.view.MotionEvent); 8539*344a7f5eSAndroid Build Coastguard Worker method public static deprecated int getPointerId(android.view.MotionEvent, int); 8540*344a7f5eSAndroid Build Coastguard Worker method public static deprecated int getSource(android.view.MotionEvent); 8541*344a7f5eSAndroid Build Coastguard Worker method public static deprecated float getX(android.view.MotionEvent, int); 8542*344a7f5eSAndroid Build Coastguard Worker method public static deprecated float getY(android.view.MotionEvent, int); 8543*344a7f5eSAndroid Build Coastguard Worker method public static boolean isFromSource(android.view.MotionEvent, int); 8544*344a7f5eSAndroid Build Coastguard Worker field public static final deprecated int ACTION_HOVER_ENTER = 9; // 0x9 8545*344a7f5eSAndroid Build Coastguard Worker field public static final deprecated int ACTION_HOVER_EXIT = 10; // 0xa 8546*344a7f5eSAndroid Build Coastguard Worker field public static final deprecated int ACTION_HOVER_MOVE = 7; // 0x7 8547*344a7f5eSAndroid Build Coastguard Worker field public static final deprecated int ACTION_MASK = 255; // 0xff 8548*344a7f5eSAndroid Build Coastguard Worker field public static final deprecated int ACTION_POINTER_DOWN = 5; // 0x5 8549*344a7f5eSAndroid Build Coastguard Worker field public static final deprecated int ACTION_POINTER_INDEX_MASK = 65280; // 0xff00 8550*344a7f5eSAndroid Build Coastguard Worker field public static final deprecated int ACTION_POINTER_INDEX_SHIFT = 8; // 0x8 8551*344a7f5eSAndroid Build Coastguard Worker field public static final deprecated int ACTION_POINTER_UP = 6; // 0x6 8552*344a7f5eSAndroid Build Coastguard Worker field public static final deprecated int ACTION_SCROLL = 8; // 0x8 8553*344a7f5eSAndroid Build Coastguard Worker field public static final deprecated int AXIS_BRAKE = 23; // 0x17 8554*344a7f5eSAndroid Build Coastguard Worker field public static final deprecated int AXIS_DISTANCE = 24; // 0x18 8555*344a7f5eSAndroid Build Coastguard Worker field public static final deprecated int AXIS_GAS = 22; // 0x16 8556*344a7f5eSAndroid Build Coastguard Worker field public static final deprecated int AXIS_GENERIC_1 = 32; // 0x20 8557*344a7f5eSAndroid Build Coastguard Worker field public static final deprecated int AXIS_GENERIC_10 = 41; // 0x29 8558*344a7f5eSAndroid Build Coastguard Worker field public static final deprecated int AXIS_GENERIC_11 = 42; // 0x2a 8559*344a7f5eSAndroid Build Coastguard Worker field public static final deprecated int AXIS_GENERIC_12 = 43; // 0x2b 8560*344a7f5eSAndroid Build Coastguard Worker field public static final deprecated int AXIS_GENERIC_13 = 44; // 0x2c 8561*344a7f5eSAndroid Build Coastguard Worker field public static final deprecated int AXIS_GENERIC_14 = 45; // 0x2d 8562*344a7f5eSAndroid Build Coastguard Worker field public static final deprecated int AXIS_GENERIC_15 = 46; // 0x2e 8563*344a7f5eSAndroid Build Coastguard Worker field public static final deprecated int AXIS_GENERIC_16 = 47; // 0x2f 8564*344a7f5eSAndroid Build Coastguard Worker field public static final deprecated int AXIS_GENERIC_2 = 33; // 0x21 8565*344a7f5eSAndroid Build Coastguard Worker field public static final deprecated int AXIS_GENERIC_3 = 34; // 0x22 8566*344a7f5eSAndroid Build Coastguard Worker field public static final deprecated int AXIS_GENERIC_4 = 35; // 0x23 8567*344a7f5eSAndroid Build Coastguard Worker field public static final deprecated int AXIS_GENERIC_5 = 36; // 0x24 8568*344a7f5eSAndroid Build Coastguard Worker field public static final deprecated int AXIS_GENERIC_6 = 37; // 0x25 8569*344a7f5eSAndroid Build Coastguard Worker field public static final deprecated int AXIS_GENERIC_7 = 38; // 0x26 8570*344a7f5eSAndroid Build Coastguard Worker field public static final deprecated int AXIS_GENERIC_8 = 39; // 0x27 8571*344a7f5eSAndroid Build Coastguard Worker field public static final deprecated int AXIS_GENERIC_9 = 40; // 0x28 8572*344a7f5eSAndroid Build Coastguard Worker field public static final deprecated int AXIS_HAT_X = 15; // 0xf 8573*344a7f5eSAndroid Build Coastguard Worker field public static final deprecated int AXIS_HAT_Y = 16; // 0x10 8574*344a7f5eSAndroid Build Coastguard Worker field public static final deprecated int AXIS_HSCROLL = 10; // 0xa 8575*344a7f5eSAndroid Build Coastguard Worker field public static final deprecated int AXIS_LTRIGGER = 17; // 0x11 8576*344a7f5eSAndroid Build Coastguard Worker field public static final deprecated int AXIS_ORIENTATION = 8; // 0x8 8577*344a7f5eSAndroid Build Coastguard Worker field public static final deprecated int AXIS_PRESSURE = 2; // 0x2 8578*344a7f5eSAndroid Build Coastguard Worker field public static final int AXIS_RELATIVE_X = 27; // 0x1b 8579*344a7f5eSAndroid Build Coastguard Worker field public static final int AXIS_RELATIVE_Y = 28; // 0x1c 8580*344a7f5eSAndroid Build Coastguard Worker field public static final deprecated int AXIS_RTRIGGER = 18; // 0x12 8581*344a7f5eSAndroid Build Coastguard Worker field public static final deprecated int AXIS_RUDDER = 20; // 0x14 8582*344a7f5eSAndroid Build Coastguard Worker field public static final deprecated int AXIS_RX = 12; // 0xc 8583*344a7f5eSAndroid Build Coastguard Worker field public static final deprecated int AXIS_RY = 13; // 0xd 8584*344a7f5eSAndroid Build Coastguard Worker field public static final deprecated int AXIS_RZ = 14; // 0xe 8585*344a7f5eSAndroid Build Coastguard Worker field public static final int AXIS_SCROLL = 26; // 0x1a 8586*344a7f5eSAndroid Build Coastguard Worker field public static final deprecated int AXIS_SIZE = 3; // 0x3 8587*344a7f5eSAndroid Build Coastguard Worker field public static final deprecated int AXIS_THROTTLE = 19; // 0x13 8588*344a7f5eSAndroid Build Coastguard Worker field public static final deprecated int AXIS_TILT = 25; // 0x19 8589*344a7f5eSAndroid Build Coastguard Worker field public static final deprecated int AXIS_TOOL_MAJOR = 6; // 0x6 8590*344a7f5eSAndroid Build Coastguard Worker field public static final deprecated int AXIS_TOOL_MINOR = 7; // 0x7 8591*344a7f5eSAndroid Build Coastguard Worker field public static final deprecated int AXIS_TOUCH_MAJOR = 4; // 0x4 8592*344a7f5eSAndroid Build Coastguard Worker field public static final deprecated int AXIS_TOUCH_MINOR = 5; // 0x5 8593*344a7f5eSAndroid Build Coastguard Worker field public static final deprecated int AXIS_VSCROLL = 9; // 0x9 8594*344a7f5eSAndroid Build Coastguard Worker field public static final deprecated int AXIS_WHEEL = 21; // 0x15 8595*344a7f5eSAndroid Build Coastguard Worker field public static final deprecated int AXIS_X = 0; // 0x0 8596*344a7f5eSAndroid Build Coastguard Worker field public static final deprecated int AXIS_Y = 1; // 0x1 8597*344a7f5eSAndroid Build Coastguard Worker field public static final deprecated int AXIS_Z = 11; // 0xb 8598*344a7f5eSAndroid Build Coastguard Worker field public static final deprecated int BUTTON_PRIMARY = 1; // 0x1 8599*344a7f5eSAndroid Build Coastguard Worker } 8600*344a7f5eSAndroid Build Coastguard Worker 8601*344a7f5eSAndroid Build Coastguard Worker public abstract interface NestedScrollingChild { 8602*344a7f5eSAndroid Build Coastguard Worker method public abstract boolean dispatchNestedFling(float, float, boolean); 8603*344a7f5eSAndroid Build Coastguard Worker method public abstract boolean dispatchNestedPreFling(float, float); 8604*344a7f5eSAndroid Build Coastguard Worker method public abstract boolean dispatchNestedPreScroll(int, int, int[], int[]); 8605*344a7f5eSAndroid Build Coastguard Worker method public abstract boolean dispatchNestedScroll(int, int, int, int, int[]); 8606*344a7f5eSAndroid Build Coastguard Worker method public abstract boolean hasNestedScrollingParent(); 8607*344a7f5eSAndroid Build Coastguard Worker method public abstract boolean isNestedScrollingEnabled(); 8608*344a7f5eSAndroid Build Coastguard Worker method public abstract void setNestedScrollingEnabled(boolean); 8609*344a7f5eSAndroid Build Coastguard Worker method public abstract boolean startNestedScroll(int); 8610*344a7f5eSAndroid Build Coastguard Worker method public abstract void stopNestedScroll(); 8611*344a7f5eSAndroid Build Coastguard Worker } 8612*344a7f5eSAndroid Build Coastguard Worker 8613*344a7f5eSAndroid Build Coastguard Worker public abstract interface NestedScrollingChild2 implements android.support.v4.view.NestedScrollingChild { 8614*344a7f5eSAndroid Build Coastguard Worker method public abstract boolean dispatchNestedPreScroll(int, int, int[], int[], int); 8615*344a7f5eSAndroid Build Coastguard Worker method public abstract boolean dispatchNestedScroll(int, int, int, int, int[], int); 8616*344a7f5eSAndroid Build Coastguard Worker method public abstract boolean hasNestedScrollingParent(int); 8617*344a7f5eSAndroid Build Coastguard Worker method public abstract boolean startNestedScroll(int, int); 8618*344a7f5eSAndroid Build Coastguard Worker method public abstract void stopNestedScroll(int); 8619*344a7f5eSAndroid Build Coastguard Worker } 8620*344a7f5eSAndroid Build Coastguard Worker 8621*344a7f5eSAndroid Build Coastguard Worker public class NestedScrollingChildHelper { 8622*344a7f5eSAndroid Build Coastguard Worker ctor public NestedScrollingChildHelper(android.view.View); 8623*344a7f5eSAndroid Build Coastguard Worker method public boolean dispatchNestedFling(float, float, boolean); 8624*344a7f5eSAndroid Build Coastguard Worker method public boolean dispatchNestedPreFling(float, float); 8625*344a7f5eSAndroid Build Coastguard Worker method public boolean dispatchNestedPreScroll(int, int, int[], int[]); 8626*344a7f5eSAndroid Build Coastguard Worker method public boolean dispatchNestedPreScroll(int, int, int[], int[], int); 8627*344a7f5eSAndroid Build Coastguard Worker method public boolean dispatchNestedScroll(int, int, int, int, int[]); 8628*344a7f5eSAndroid Build Coastguard Worker method public boolean dispatchNestedScroll(int, int, int, int, int[], int); 8629*344a7f5eSAndroid Build Coastguard Worker method public boolean hasNestedScrollingParent(); 8630*344a7f5eSAndroid Build Coastguard Worker method public boolean hasNestedScrollingParent(int); 8631*344a7f5eSAndroid Build Coastguard Worker method public boolean isNestedScrollingEnabled(); 8632*344a7f5eSAndroid Build Coastguard Worker method public void onDetachedFromWindow(); 8633*344a7f5eSAndroid Build Coastguard Worker method public void onStopNestedScroll(android.view.View); 8634*344a7f5eSAndroid Build Coastguard Worker method public void setNestedScrollingEnabled(boolean); 8635*344a7f5eSAndroid Build Coastguard Worker method public boolean startNestedScroll(int); 8636*344a7f5eSAndroid Build Coastguard Worker method public boolean startNestedScroll(int, int); 8637*344a7f5eSAndroid Build Coastguard Worker method public void stopNestedScroll(); 8638*344a7f5eSAndroid Build Coastguard Worker method public void stopNestedScroll(int); 8639*344a7f5eSAndroid Build Coastguard Worker } 8640*344a7f5eSAndroid Build Coastguard Worker 8641*344a7f5eSAndroid Build Coastguard Worker public abstract interface NestedScrollingParent { 8642*344a7f5eSAndroid Build Coastguard Worker method public abstract int getNestedScrollAxes(); 8643*344a7f5eSAndroid Build Coastguard Worker method public abstract boolean onNestedFling(android.view.View, float, float, boolean); 8644*344a7f5eSAndroid Build Coastguard Worker method public abstract boolean onNestedPreFling(android.view.View, float, float); 8645*344a7f5eSAndroid Build Coastguard Worker method public abstract void onNestedPreScroll(android.view.View, int, int, int[]); 8646*344a7f5eSAndroid Build Coastguard Worker method public abstract void onNestedScroll(android.view.View, int, int, int, int); 8647*344a7f5eSAndroid Build Coastguard Worker method public abstract void onNestedScrollAccepted(android.view.View, android.view.View, int); 8648*344a7f5eSAndroid Build Coastguard Worker method public abstract boolean onStartNestedScroll(android.view.View, android.view.View, int); 8649*344a7f5eSAndroid Build Coastguard Worker method public abstract void onStopNestedScroll(android.view.View); 8650*344a7f5eSAndroid Build Coastguard Worker } 8651*344a7f5eSAndroid Build Coastguard Worker 8652*344a7f5eSAndroid Build Coastguard Worker public abstract interface NestedScrollingParent2 implements android.support.v4.view.NestedScrollingParent { 8653*344a7f5eSAndroid Build Coastguard Worker method public abstract void onNestedPreScroll(android.view.View, int, int, int[], int); 8654*344a7f5eSAndroid Build Coastguard Worker method public abstract void onNestedScroll(android.view.View, int, int, int, int, int); 8655*344a7f5eSAndroid Build Coastguard Worker method public abstract void onNestedScrollAccepted(android.view.View, android.view.View, int, int); 8656*344a7f5eSAndroid Build Coastguard Worker method public abstract boolean onStartNestedScroll(android.view.View, android.view.View, int, int); 8657*344a7f5eSAndroid Build Coastguard Worker method public abstract void onStopNestedScroll(android.view.View, int); 8658*344a7f5eSAndroid Build Coastguard Worker } 8659*344a7f5eSAndroid Build Coastguard Worker 8660*344a7f5eSAndroid Build Coastguard Worker public class NestedScrollingParentHelper { 8661*344a7f5eSAndroid Build Coastguard Worker ctor public NestedScrollingParentHelper(android.view.ViewGroup); 8662*344a7f5eSAndroid Build Coastguard Worker method public int getNestedScrollAxes(); 8663*344a7f5eSAndroid Build Coastguard Worker method public void onNestedScrollAccepted(android.view.View, android.view.View, int); 8664*344a7f5eSAndroid Build Coastguard Worker method public void onNestedScrollAccepted(android.view.View, android.view.View, int, int); 8665*344a7f5eSAndroid Build Coastguard Worker method public void onStopNestedScroll(android.view.View); 8666*344a7f5eSAndroid Build Coastguard Worker method public void onStopNestedScroll(android.view.View, int); 8667*344a7f5eSAndroid Build Coastguard Worker } 8668*344a7f5eSAndroid Build Coastguard Worker 8669*344a7f5eSAndroid Build Coastguard Worker public abstract interface OnApplyWindowInsetsListener { 8670*344a7f5eSAndroid Build Coastguard Worker method public abstract android.support.v4.view.WindowInsetsCompat onApplyWindowInsets(android.view.View, android.support.v4.view.WindowInsetsCompat); 8671*344a7f5eSAndroid Build Coastguard Worker } 8672*344a7f5eSAndroid Build Coastguard Worker 8673*344a7f5eSAndroid Build Coastguard Worker public abstract class PagerAdapter { 8674*344a7f5eSAndroid Build Coastguard Worker ctor public PagerAdapter(); 8675*344a7f5eSAndroid Build Coastguard Worker method public void destroyItem(android.view.ViewGroup, int, java.lang.Object); 8676*344a7f5eSAndroid Build Coastguard Worker method public deprecated void destroyItem(android.view.View, int, java.lang.Object); 8677*344a7f5eSAndroid Build Coastguard Worker method public void finishUpdate(android.view.ViewGroup); 8678*344a7f5eSAndroid Build Coastguard Worker method public deprecated void finishUpdate(android.view.View); 8679*344a7f5eSAndroid Build Coastguard Worker method public abstract int getCount(); 8680*344a7f5eSAndroid Build Coastguard Worker method public int getItemPosition(java.lang.Object); 8681*344a7f5eSAndroid Build Coastguard Worker method public java.lang.CharSequence getPageTitle(int); 8682*344a7f5eSAndroid Build Coastguard Worker method public float getPageWidth(int); 8683*344a7f5eSAndroid Build Coastguard Worker method public java.lang.Object instantiateItem(android.view.ViewGroup, int); 8684*344a7f5eSAndroid Build Coastguard Worker method public deprecated java.lang.Object instantiateItem(android.view.View, int); 8685*344a7f5eSAndroid Build Coastguard Worker method public abstract boolean isViewFromObject(android.view.View, java.lang.Object); 8686*344a7f5eSAndroid Build Coastguard Worker method public void notifyDataSetChanged(); 8687*344a7f5eSAndroid Build Coastguard Worker method public void registerDataSetObserver(android.database.DataSetObserver); 8688*344a7f5eSAndroid Build Coastguard Worker method public void restoreState(android.os.Parcelable, java.lang.ClassLoader); 8689*344a7f5eSAndroid Build Coastguard Worker method public android.os.Parcelable saveState(); 8690*344a7f5eSAndroid Build Coastguard Worker method public void setPrimaryItem(android.view.ViewGroup, int, java.lang.Object); 8691*344a7f5eSAndroid Build Coastguard Worker method public deprecated void setPrimaryItem(android.view.View, int, java.lang.Object); 8692*344a7f5eSAndroid Build Coastguard Worker method public void startUpdate(android.view.ViewGroup); 8693*344a7f5eSAndroid Build Coastguard Worker method public deprecated void startUpdate(android.view.View); 8694*344a7f5eSAndroid Build Coastguard Worker method public void unregisterDataSetObserver(android.database.DataSetObserver); 8695*344a7f5eSAndroid Build Coastguard Worker field public static final int POSITION_NONE = -2; // 0xfffffffe 8696*344a7f5eSAndroid Build Coastguard Worker field public static final int POSITION_UNCHANGED = -1; // 0xffffffff 8697*344a7f5eSAndroid Build Coastguard Worker } 8698*344a7f5eSAndroid Build Coastguard Worker 8699*344a7f5eSAndroid Build Coastguard Worker public class PagerTabStrip extends android.support.v4.view.PagerTitleStrip { 8700*344a7f5eSAndroid Build Coastguard Worker ctor public PagerTabStrip(android.content.Context); 8701*344a7f5eSAndroid Build Coastguard Worker ctor public PagerTabStrip(android.content.Context, android.util.AttributeSet); 8702*344a7f5eSAndroid Build Coastguard Worker method public boolean getDrawFullUnderline(); 8703*344a7f5eSAndroid Build Coastguard Worker method public int getTabIndicatorColor(); 8704*344a7f5eSAndroid Build Coastguard Worker method public void setDrawFullUnderline(boolean); 8705*344a7f5eSAndroid Build Coastguard Worker method public void setTabIndicatorColor(int); 8706*344a7f5eSAndroid Build Coastguard Worker method public void setTabIndicatorColorResource(int); 8707*344a7f5eSAndroid Build Coastguard Worker } 8708*344a7f5eSAndroid Build Coastguard Worker 8709*344a7f5eSAndroid Build Coastguard Worker public class PagerTitleStrip extends android.view.ViewGroup { 8710*344a7f5eSAndroid Build Coastguard Worker ctor public PagerTitleStrip(android.content.Context); 8711*344a7f5eSAndroid Build Coastguard Worker ctor public PagerTitleStrip(android.content.Context, android.util.AttributeSet); 8712*344a7f5eSAndroid Build Coastguard Worker method public int getTextSpacing(); 8713*344a7f5eSAndroid Build Coastguard Worker method protected void onLayout(boolean, int, int, int, int); 8714*344a7f5eSAndroid Build Coastguard Worker method public void setGravity(int); 8715*344a7f5eSAndroid Build Coastguard Worker method public void setNonPrimaryAlpha(float); 8716*344a7f5eSAndroid Build Coastguard Worker method public void setTextColor(int); 8717*344a7f5eSAndroid Build Coastguard Worker method public void setTextSize(int, float); 8718*344a7f5eSAndroid Build Coastguard Worker method public void setTextSpacing(int); 8719*344a7f5eSAndroid Build Coastguard Worker } 8720*344a7f5eSAndroid Build Coastguard Worker 8721*344a7f5eSAndroid Build Coastguard Worker public final class PointerIconCompat { 8722*344a7f5eSAndroid Build Coastguard Worker method public static android.support.v4.view.PointerIconCompat create(android.graphics.Bitmap, float, float); 8723*344a7f5eSAndroid Build Coastguard Worker method public static android.support.v4.view.PointerIconCompat getSystemIcon(android.content.Context, int); 8724*344a7f5eSAndroid Build Coastguard Worker method public static android.support.v4.view.PointerIconCompat load(android.content.res.Resources, int); 8725*344a7f5eSAndroid Build Coastguard Worker field public static final int TYPE_ALIAS = 1010; // 0x3f2 8726*344a7f5eSAndroid Build Coastguard Worker field public static final int TYPE_ALL_SCROLL = 1013; // 0x3f5 8727*344a7f5eSAndroid Build Coastguard Worker field public static final int TYPE_ARROW = 1000; // 0x3e8 8728*344a7f5eSAndroid Build Coastguard Worker field public static final int TYPE_CELL = 1006; // 0x3ee 8729*344a7f5eSAndroid Build Coastguard Worker field public static final int TYPE_CONTEXT_MENU = 1001; // 0x3e9 8730*344a7f5eSAndroid Build Coastguard Worker field public static final int TYPE_COPY = 1011; // 0x3f3 8731*344a7f5eSAndroid Build Coastguard Worker field public static final int TYPE_CROSSHAIR = 1007; // 0x3ef 8732*344a7f5eSAndroid Build Coastguard Worker field public static final int TYPE_DEFAULT = 1000; // 0x3e8 8733*344a7f5eSAndroid Build Coastguard Worker field public static final int TYPE_GRAB = 1020; // 0x3fc 8734*344a7f5eSAndroid Build Coastguard Worker field public static final int TYPE_GRABBING = 1021; // 0x3fd 8735*344a7f5eSAndroid Build Coastguard Worker field public static final int TYPE_HAND = 1002; // 0x3ea 8736*344a7f5eSAndroid Build Coastguard Worker field public static final int TYPE_HELP = 1003; // 0x3eb 8737*344a7f5eSAndroid Build Coastguard Worker field public static final int TYPE_HORIZONTAL_DOUBLE_ARROW = 1014; // 0x3f6 8738*344a7f5eSAndroid Build Coastguard Worker field public static final int TYPE_NO_DROP = 1012; // 0x3f4 8739*344a7f5eSAndroid Build Coastguard Worker field public static final int TYPE_NULL = 0; // 0x0 8740*344a7f5eSAndroid Build Coastguard Worker field public static final int TYPE_TEXT = 1008; // 0x3f0 8741*344a7f5eSAndroid Build Coastguard Worker field public static final int TYPE_TOP_LEFT_DIAGONAL_DOUBLE_ARROW = 1017; // 0x3f9 8742*344a7f5eSAndroid Build Coastguard Worker field public static final int TYPE_TOP_RIGHT_DIAGONAL_DOUBLE_ARROW = 1016; // 0x3f8 8743*344a7f5eSAndroid Build Coastguard Worker field public static final int TYPE_VERTICAL_DOUBLE_ARROW = 1015; // 0x3f7 8744*344a7f5eSAndroid Build Coastguard Worker field public static final int TYPE_VERTICAL_TEXT = 1009; // 0x3f1 8745*344a7f5eSAndroid Build Coastguard Worker field public static final int TYPE_WAIT = 1004; // 0x3ec 8746*344a7f5eSAndroid Build Coastguard Worker field public static final int TYPE_ZOOM_IN = 1018; // 0x3fa 8747*344a7f5eSAndroid Build Coastguard Worker field public static final int TYPE_ZOOM_OUT = 1019; // 0x3fb 8748*344a7f5eSAndroid Build Coastguard Worker } 8749*344a7f5eSAndroid Build Coastguard Worker 8750*344a7f5eSAndroid Build Coastguard Worker public final class ScaleGestureDetectorCompat { 8751*344a7f5eSAndroid Build Coastguard Worker method public static deprecated boolean isQuickScaleEnabled(java.lang.Object); 8752*344a7f5eSAndroid Build Coastguard Worker method public static boolean isQuickScaleEnabled(android.view.ScaleGestureDetector); 8753*344a7f5eSAndroid Build Coastguard Worker method public static deprecated void setQuickScaleEnabled(java.lang.Object, boolean); 8754*344a7f5eSAndroid Build Coastguard Worker method public static void setQuickScaleEnabled(android.view.ScaleGestureDetector, boolean); 8755*344a7f5eSAndroid Build Coastguard Worker } 8756*344a7f5eSAndroid Build Coastguard Worker 8757*344a7f5eSAndroid Build Coastguard Worker public abstract interface ScrollingView { 8758*344a7f5eSAndroid Build Coastguard Worker method public abstract int computeHorizontalScrollExtent(); 8759*344a7f5eSAndroid Build Coastguard Worker method public abstract int computeHorizontalScrollOffset(); 8760*344a7f5eSAndroid Build Coastguard Worker method public abstract int computeHorizontalScrollRange(); 8761*344a7f5eSAndroid Build Coastguard Worker method public abstract int computeVerticalScrollExtent(); 8762*344a7f5eSAndroid Build Coastguard Worker method public abstract int computeVerticalScrollOffset(); 8763*344a7f5eSAndroid Build Coastguard Worker method public abstract int computeVerticalScrollRange(); 8764*344a7f5eSAndroid Build Coastguard Worker } 8765*344a7f5eSAndroid Build Coastguard Worker 8766*344a7f5eSAndroid Build Coastguard Worker public abstract interface TintableBackgroundView { 8767*344a7f5eSAndroid Build Coastguard Worker method public abstract android.content.res.ColorStateList getSupportBackgroundTintList(); 8768*344a7f5eSAndroid Build Coastguard Worker method public abstract android.graphics.PorterDuff.Mode getSupportBackgroundTintMode(); 8769*344a7f5eSAndroid Build Coastguard Worker method public abstract void setSupportBackgroundTintList(android.content.res.ColorStateList); 8770*344a7f5eSAndroid Build Coastguard Worker method public abstract void setSupportBackgroundTintMode(android.graphics.PorterDuff.Mode); 8771*344a7f5eSAndroid Build Coastguard Worker } 8772*344a7f5eSAndroid Build Coastguard Worker 8773*344a7f5eSAndroid Build Coastguard Worker public final deprecated class VelocityTrackerCompat { 8774*344a7f5eSAndroid Build Coastguard Worker method public static deprecated float getXVelocity(android.view.VelocityTracker, int); 8775*344a7f5eSAndroid Build Coastguard Worker method public static deprecated float getYVelocity(android.view.VelocityTracker, int); 8776*344a7f5eSAndroid Build Coastguard Worker } 8777*344a7f5eSAndroid Build Coastguard Worker 8778*344a7f5eSAndroid Build Coastguard Worker public class ViewCompat { 8779*344a7f5eSAndroid Build Coastguard Worker ctor protected ViewCompat(); 8780*344a7f5eSAndroid Build Coastguard Worker method public static void addKeyboardNavigationClusters(android.view.View, java.util.Collection<android.view.View>, int); 8781*344a7f5eSAndroid Build Coastguard Worker method public static android.support.v4.view.ViewPropertyAnimatorCompat animate(android.view.View); 8782*344a7f5eSAndroid Build Coastguard Worker method public static deprecated boolean canScrollHorizontally(android.view.View, int); 8783*344a7f5eSAndroid Build Coastguard Worker method public static deprecated boolean canScrollVertically(android.view.View, int); 8784*344a7f5eSAndroid Build Coastguard Worker method public static void cancelDragAndDrop(android.view.View); 8785*344a7f5eSAndroid Build Coastguard Worker method public static deprecated int combineMeasuredStates(int, int); 8786*344a7f5eSAndroid Build Coastguard Worker method public static android.support.v4.view.WindowInsetsCompat dispatchApplyWindowInsets(android.view.View, android.support.v4.view.WindowInsetsCompat); 8787*344a7f5eSAndroid Build Coastguard Worker method public static void dispatchFinishTemporaryDetach(android.view.View); 8788*344a7f5eSAndroid Build Coastguard Worker method public static boolean dispatchNestedFling(android.view.View, float, float, boolean); 8789*344a7f5eSAndroid Build Coastguard Worker method public static boolean dispatchNestedPreFling(android.view.View, float, float); 8790*344a7f5eSAndroid Build Coastguard Worker method public static boolean dispatchNestedPreScroll(android.view.View, int, int, int[], int[]); 8791*344a7f5eSAndroid Build Coastguard Worker method public static boolean dispatchNestedPreScroll(android.view.View, int, int, int[], int[], int); 8792*344a7f5eSAndroid Build Coastguard Worker method public static boolean dispatchNestedScroll(android.view.View, int, int, int, int, int[]); 8793*344a7f5eSAndroid Build Coastguard Worker method public static boolean dispatchNestedScroll(android.view.View, int, int, int, int, int[], int); 8794*344a7f5eSAndroid Build Coastguard Worker method public static void dispatchStartTemporaryDetach(android.view.View); 8795*344a7f5eSAndroid Build Coastguard Worker method public static int getAccessibilityLiveRegion(android.view.View); 8796*344a7f5eSAndroid Build Coastguard Worker method public static android.support.v4.view.accessibility.AccessibilityNodeProviderCompat getAccessibilityNodeProvider(android.view.View); 8797*344a7f5eSAndroid Build Coastguard Worker method public static deprecated float getAlpha(android.view.View); 8798*344a7f5eSAndroid Build Coastguard Worker method public static android.content.res.ColorStateList getBackgroundTintList(android.view.View); 8799*344a7f5eSAndroid Build Coastguard Worker method public static android.graphics.PorterDuff.Mode getBackgroundTintMode(android.view.View); 8800*344a7f5eSAndroid Build Coastguard Worker method public static android.graphics.Rect getClipBounds(android.view.View); 8801*344a7f5eSAndroid Build Coastguard Worker method public static android.view.Display getDisplay(android.view.View); 8802*344a7f5eSAndroid Build Coastguard Worker method public static float getElevation(android.view.View); 8803*344a7f5eSAndroid Build Coastguard Worker method public static boolean getFitsSystemWindows(android.view.View); 8804*344a7f5eSAndroid Build Coastguard Worker method public static int getImportantForAccessibility(android.view.View); 8805*344a7f5eSAndroid Build Coastguard Worker method public static int getLabelFor(android.view.View); 8806*344a7f5eSAndroid Build Coastguard Worker method public static deprecated int getLayerType(android.view.View); 8807*344a7f5eSAndroid Build Coastguard Worker method public static int getLayoutDirection(android.view.View); 8808*344a7f5eSAndroid Build Coastguard Worker method public static deprecated android.graphics.Matrix getMatrix(android.view.View); 8809*344a7f5eSAndroid Build Coastguard Worker method public static deprecated int getMeasuredHeightAndState(android.view.View); 8810*344a7f5eSAndroid Build Coastguard Worker method public static deprecated int getMeasuredState(android.view.View); 8811*344a7f5eSAndroid Build Coastguard Worker method public static deprecated int getMeasuredWidthAndState(android.view.View); 8812*344a7f5eSAndroid Build Coastguard Worker method public static int getMinimumHeight(android.view.View); 8813*344a7f5eSAndroid Build Coastguard Worker method public static int getMinimumWidth(android.view.View); 8814*344a7f5eSAndroid Build Coastguard Worker method public static int getNextClusterForwardId(android.view.View); 8815*344a7f5eSAndroid Build Coastguard Worker method public static deprecated int getOverScrollMode(android.view.View); 8816*344a7f5eSAndroid Build Coastguard Worker method public static int getPaddingEnd(android.view.View); 8817*344a7f5eSAndroid Build Coastguard Worker method public static int getPaddingStart(android.view.View); 8818*344a7f5eSAndroid Build Coastguard Worker method public static android.view.ViewParent getParentForAccessibility(android.view.View); 8819*344a7f5eSAndroid Build Coastguard Worker method public static deprecated float getPivotX(android.view.View); 8820*344a7f5eSAndroid Build Coastguard Worker method public static deprecated float getPivotY(android.view.View); 8821*344a7f5eSAndroid Build Coastguard Worker method public static deprecated float getRotation(android.view.View); 8822*344a7f5eSAndroid Build Coastguard Worker method public static deprecated float getRotationX(android.view.View); 8823*344a7f5eSAndroid Build Coastguard Worker method public static deprecated float getRotationY(android.view.View); 8824*344a7f5eSAndroid Build Coastguard Worker method public static deprecated float getScaleX(android.view.View); 8825*344a7f5eSAndroid Build Coastguard Worker method public static deprecated float getScaleY(android.view.View); 8826*344a7f5eSAndroid Build Coastguard Worker method public static int getScrollIndicators(android.view.View); 8827*344a7f5eSAndroid Build Coastguard Worker method public static java.lang.String getTransitionName(android.view.View); 8828*344a7f5eSAndroid Build Coastguard Worker method public static deprecated float getTranslationX(android.view.View); 8829*344a7f5eSAndroid Build Coastguard Worker method public static deprecated float getTranslationY(android.view.View); 8830*344a7f5eSAndroid Build Coastguard Worker method public static float getTranslationZ(android.view.View); 8831*344a7f5eSAndroid Build Coastguard Worker method public static int getWindowSystemUiVisibility(android.view.View); 8832*344a7f5eSAndroid Build Coastguard Worker method public static deprecated float getX(android.view.View); 8833*344a7f5eSAndroid Build Coastguard Worker method public static deprecated float getY(android.view.View); 8834*344a7f5eSAndroid Build Coastguard Worker method public static float getZ(android.view.View); 8835*344a7f5eSAndroid Build Coastguard Worker method public static boolean hasAccessibilityDelegate(android.view.View); 8836*344a7f5eSAndroid Build Coastguard Worker method public static boolean hasNestedScrollingParent(android.view.View); 8837*344a7f5eSAndroid Build Coastguard Worker method public static boolean hasNestedScrollingParent(android.view.View, int); 8838*344a7f5eSAndroid Build Coastguard Worker method public static boolean hasOnClickListeners(android.view.View); 8839*344a7f5eSAndroid Build Coastguard Worker method public static boolean hasOverlappingRendering(android.view.View); 8840*344a7f5eSAndroid Build Coastguard Worker method public static boolean hasTransientState(android.view.View); 8841*344a7f5eSAndroid Build Coastguard Worker method public static boolean isAttachedToWindow(android.view.View); 8842*344a7f5eSAndroid Build Coastguard Worker method public static boolean isFocusedByDefault(android.view.View); 8843*344a7f5eSAndroid Build Coastguard Worker method public static boolean isImportantForAccessibility(android.view.View); 8844*344a7f5eSAndroid Build Coastguard Worker method public static boolean isInLayout(android.view.View); 8845*344a7f5eSAndroid Build Coastguard Worker method public static boolean isKeyboardNavigationCluster(android.view.View); 8846*344a7f5eSAndroid Build Coastguard Worker method public static boolean isLaidOut(android.view.View); 8847*344a7f5eSAndroid Build Coastguard Worker method public static boolean isLayoutDirectionResolved(android.view.View); 8848*344a7f5eSAndroid Build Coastguard Worker method public static boolean isNestedScrollingEnabled(android.view.View); 8849*344a7f5eSAndroid Build Coastguard Worker method public static deprecated boolean isOpaque(android.view.View); 8850*344a7f5eSAndroid Build Coastguard Worker method public static boolean isPaddingRelative(android.view.View); 8851*344a7f5eSAndroid Build Coastguard Worker method public static deprecated void jumpDrawablesToCurrentState(android.view.View); 8852*344a7f5eSAndroid Build Coastguard Worker method public static android.view.View keyboardNavigationClusterSearch(android.view.View, android.view.View, int); 8853*344a7f5eSAndroid Build Coastguard Worker method public static void offsetLeftAndRight(android.view.View, int); 8854*344a7f5eSAndroid Build Coastguard Worker method public static void offsetTopAndBottom(android.view.View, int); 8855*344a7f5eSAndroid Build Coastguard Worker method public static android.support.v4.view.WindowInsetsCompat onApplyWindowInsets(android.view.View, android.support.v4.view.WindowInsetsCompat); 8856*344a7f5eSAndroid Build Coastguard Worker method public static deprecated void onInitializeAccessibilityEvent(android.view.View, android.view.accessibility.AccessibilityEvent); 8857*344a7f5eSAndroid Build Coastguard Worker method public static void onInitializeAccessibilityNodeInfo(android.view.View, android.support.v4.view.accessibility.AccessibilityNodeInfoCompat); 8858*344a7f5eSAndroid Build Coastguard Worker method public static deprecated void onPopulateAccessibilityEvent(android.view.View, android.view.accessibility.AccessibilityEvent); 8859*344a7f5eSAndroid Build Coastguard Worker method public static boolean performAccessibilityAction(android.view.View, int, android.os.Bundle); 8860*344a7f5eSAndroid Build Coastguard Worker method public static void postInvalidateOnAnimation(android.view.View); 8861*344a7f5eSAndroid Build Coastguard Worker method public static void postInvalidateOnAnimation(android.view.View, int, int, int, int); 8862*344a7f5eSAndroid Build Coastguard Worker method public static void postOnAnimation(android.view.View, java.lang.Runnable); 8863*344a7f5eSAndroid Build Coastguard Worker method public static void postOnAnimationDelayed(android.view.View, java.lang.Runnable, long); 8864*344a7f5eSAndroid Build Coastguard Worker method public static void requestApplyInsets(android.view.View); 8865*344a7f5eSAndroid Build Coastguard Worker method public static deprecated int resolveSizeAndState(int, int, int); 8866*344a7f5eSAndroid Build Coastguard Worker method public static boolean restoreDefaultFocus(android.view.View); 8867*344a7f5eSAndroid Build Coastguard Worker method public static void setAccessibilityDelegate(android.view.View, android.support.v4.view.AccessibilityDelegateCompat); 8868*344a7f5eSAndroid Build Coastguard Worker method public static void setAccessibilityLiveRegion(android.view.View, int); 8869*344a7f5eSAndroid Build Coastguard Worker method public static deprecated void setActivated(android.view.View, boolean); 8870*344a7f5eSAndroid Build Coastguard Worker method public static deprecated void setAlpha(android.view.View, float); 8871*344a7f5eSAndroid Build Coastguard Worker method public static void setBackground(android.view.View, android.graphics.drawable.Drawable); 8872*344a7f5eSAndroid Build Coastguard Worker method public static void setBackgroundTintList(android.view.View, android.content.res.ColorStateList); 8873*344a7f5eSAndroid Build Coastguard Worker method public static void setBackgroundTintMode(android.view.View, android.graphics.PorterDuff.Mode); 8874*344a7f5eSAndroid Build Coastguard Worker method public static void setChildrenDrawingOrderEnabled(android.view.ViewGroup, boolean); 8875*344a7f5eSAndroid Build Coastguard Worker method public static void setClipBounds(android.view.View, android.graphics.Rect); 8876*344a7f5eSAndroid Build Coastguard Worker method public static void setElevation(android.view.View, float); 8877*344a7f5eSAndroid Build Coastguard Worker method public static deprecated void setFitsSystemWindows(android.view.View, boolean); 8878*344a7f5eSAndroid Build Coastguard Worker method public static void setFocusedByDefault(android.view.View, boolean); 8879*344a7f5eSAndroid Build Coastguard Worker method public static void setHasTransientState(android.view.View, boolean); 8880*344a7f5eSAndroid Build Coastguard Worker method public static void setImportantForAccessibility(android.view.View, int); 8881*344a7f5eSAndroid Build Coastguard Worker method public static void setKeyboardNavigationCluster(android.view.View, boolean); 8882*344a7f5eSAndroid Build Coastguard Worker method public static void setLabelFor(android.view.View, int); 8883*344a7f5eSAndroid Build Coastguard Worker method public static void setLayerPaint(android.view.View, android.graphics.Paint); 8884*344a7f5eSAndroid Build Coastguard Worker method public static deprecated void setLayerType(android.view.View, int, android.graphics.Paint); 8885*344a7f5eSAndroid Build Coastguard Worker method public static void setLayoutDirection(android.view.View, int); 8886*344a7f5eSAndroid Build Coastguard Worker method public static void setNestedScrollingEnabled(android.view.View, boolean); 8887*344a7f5eSAndroid Build Coastguard Worker method public static void setNextClusterForwardId(android.view.View, int); 8888*344a7f5eSAndroid Build Coastguard Worker method public static void setOnApplyWindowInsetsListener(android.view.View, android.support.v4.view.OnApplyWindowInsetsListener); 8889*344a7f5eSAndroid Build Coastguard Worker method public static deprecated void setOverScrollMode(android.view.View, int); 8890*344a7f5eSAndroid Build Coastguard Worker method public static void setPaddingRelative(android.view.View, int, int, int, int); 8891*344a7f5eSAndroid Build Coastguard Worker method public static deprecated void setPivotX(android.view.View, float); 8892*344a7f5eSAndroid Build Coastguard Worker method public static deprecated void setPivotY(android.view.View, float); 8893*344a7f5eSAndroid Build Coastguard Worker method public static void setPointerIcon(android.view.View, android.support.v4.view.PointerIconCompat); 8894*344a7f5eSAndroid Build Coastguard Worker method public static deprecated void setRotation(android.view.View, float); 8895*344a7f5eSAndroid Build Coastguard Worker method public static deprecated void setRotationX(android.view.View, float); 8896*344a7f5eSAndroid Build Coastguard Worker method public static deprecated void setRotationY(android.view.View, float); 8897*344a7f5eSAndroid Build Coastguard Worker method public static deprecated void setSaveFromParentEnabled(android.view.View, boolean); 8898*344a7f5eSAndroid Build Coastguard Worker method public static deprecated void setScaleX(android.view.View, float); 8899*344a7f5eSAndroid Build Coastguard Worker method public static deprecated void setScaleY(android.view.View, float); 8900*344a7f5eSAndroid Build Coastguard Worker method public static void setScrollIndicators(android.view.View, int); 8901*344a7f5eSAndroid Build Coastguard Worker method public static void setScrollIndicators(android.view.View, int, int); 8902*344a7f5eSAndroid Build Coastguard Worker method public static void setTooltipText(android.view.View, java.lang.CharSequence); 8903*344a7f5eSAndroid Build Coastguard Worker method public static void setTransitionName(android.view.View, java.lang.String); 8904*344a7f5eSAndroid Build Coastguard Worker method public static deprecated void setTranslationX(android.view.View, float); 8905*344a7f5eSAndroid Build Coastguard Worker method public static deprecated void setTranslationY(android.view.View, float); 8906*344a7f5eSAndroid Build Coastguard Worker method public static void setTranslationZ(android.view.View, float); 8907*344a7f5eSAndroid Build Coastguard Worker method public static deprecated void setX(android.view.View, float); 8908*344a7f5eSAndroid Build Coastguard Worker method public static deprecated void setY(android.view.View, float); 8909*344a7f5eSAndroid Build Coastguard Worker method public static void setZ(android.view.View, float); 8910*344a7f5eSAndroid Build Coastguard Worker method public static boolean startDragAndDrop(android.view.View, android.content.ClipData, android.view.View.DragShadowBuilder, java.lang.Object, int); 8911*344a7f5eSAndroid Build Coastguard Worker method public static boolean startNestedScroll(android.view.View, int); 8912*344a7f5eSAndroid Build Coastguard Worker method public static boolean startNestedScroll(android.view.View, int, int); 8913*344a7f5eSAndroid Build Coastguard Worker method public static void stopNestedScroll(android.view.View); 8914*344a7f5eSAndroid Build Coastguard Worker method public static void stopNestedScroll(android.view.View, int); 8915*344a7f5eSAndroid Build Coastguard Worker method public static void updateDragShadow(android.view.View, android.view.View.DragShadowBuilder); 8916*344a7f5eSAndroid Build Coastguard Worker field public static final int ACCESSIBILITY_LIVE_REGION_ASSERTIVE = 2; // 0x2 8917*344a7f5eSAndroid Build Coastguard Worker field public static final int ACCESSIBILITY_LIVE_REGION_NONE = 0; // 0x0 8918*344a7f5eSAndroid Build Coastguard Worker field public static final int ACCESSIBILITY_LIVE_REGION_POLITE = 1; // 0x1 8919*344a7f5eSAndroid Build Coastguard Worker field public static final int IMPORTANT_FOR_ACCESSIBILITY_AUTO = 0; // 0x0 8920*344a7f5eSAndroid Build Coastguard Worker field public static final int IMPORTANT_FOR_ACCESSIBILITY_NO = 2; // 0x2 8921*344a7f5eSAndroid Build Coastguard Worker field public static final int IMPORTANT_FOR_ACCESSIBILITY_NO_HIDE_DESCENDANTS = 4; // 0x4 8922*344a7f5eSAndroid Build Coastguard Worker field public static final int IMPORTANT_FOR_ACCESSIBILITY_YES = 1; // 0x1 8923*344a7f5eSAndroid Build Coastguard Worker field public static final deprecated int LAYER_TYPE_HARDWARE = 2; // 0x2 8924*344a7f5eSAndroid Build Coastguard Worker field public static final deprecated int LAYER_TYPE_NONE = 0; // 0x0 8925*344a7f5eSAndroid Build Coastguard Worker field public static final deprecated int LAYER_TYPE_SOFTWARE = 1; // 0x1 8926*344a7f5eSAndroid Build Coastguard Worker field public static final int LAYOUT_DIRECTION_INHERIT = 2; // 0x2 8927*344a7f5eSAndroid Build Coastguard Worker field public static final int LAYOUT_DIRECTION_LOCALE = 3; // 0x3 8928*344a7f5eSAndroid Build Coastguard Worker field public static final int LAYOUT_DIRECTION_LTR = 0; // 0x0 8929*344a7f5eSAndroid Build Coastguard Worker field public static final int LAYOUT_DIRECTION_RTL = 1; // 0x1 8930*344a7f5eSAndroid Build Coastguard Worker field public static final deprecated int MEASURED_HEIGHT_STATE_SHIFT = 16; // 0x10 8931*344a7f5eSAndroid Build Coastguard Worker field public static final deprecated int MEASURED_SIZE_MASK = 16777215; // 0xffffff 8932*344a7f5eSAndroid Build Coastguard Worker field public static final deprecated int MEASURED_STATE_MASK = -16777216; // 0xff000000 8933*344a7f5eSAndroid Build Coastguard Worker field public static final deprecated int MEASURED_STATE_TOO_SMALL = 16777216; // 0x1000000 8934*344a7f5eSAndroid Build Coastguard Worker field public static final deprecated int OVER_SCROLL_ALWAYS = 0; // 0x0 8935*344a7f5eSAndroid Build Coastguard Worker field public static final deprecated int OVER_SCROLL_IF_CONTENT_SCROLLS = 1; // 0x1 8936*344a7f5eSAndroid Build Coastguard Worker field public static final deprecated int OVER_SCROLL_NEVER = 2; // 0x2 8937*344a7f5eSAndroid Build Coastguard Worker field public static final int SCROLL_AXIS_HORIZONTAL = 1; // 0x1 8938*344a7f5eSAndroid Build Coastguard Worker field public static final int SCROLL_AXIS_NONE = 0; // 0x0 8939*344a7f5eSAndroid Build Coastguard Worker field public static final int SCROLL_AXIS_VERTICAL = 2; // 0x2 8940*344a7f5eSAndroid Build Coastguard Worker field public static final int SCROLL_INDICATOR_BOTTOM = 2; // 0x2 8941*344a7f5eSAndroid Build Coastguard Worker field public static final int SCROLL_INDICATOR_END = 32; // 0x20 8942*344a7f5eSAndroid Build Coastguard Worker field public static final int SCROLL_INDICATOR_LEFT = 4; // 0x4 8943*344a7f5eSAndroid Build Coastguard Worker field public static final int SCROLL_INDICATOR_RIGHT = 8; // 0x8 8944*344a7f5eSAndroid Build Coastguard Worker field public static final int SCROLL_INDICATOR_START = 16; // 0x10 8945*344a7f5eSAndroid Build Coastguard Worker field public static final int SCROLL_INDICATOR_TOP = 1; // 0x1 8946*344a7f5eSAndroid Build Coastguard Worker field public static final int TYPE_NON_TOUCH = 1; // 0x1 8947*344a7f5eSAndroid Build Coastguard Worker field public static final int TYPE_TOUCH = 0; // 0x0 8948*344a7f5eSAndroid Build Coastguard Worker } 8949*344a7f5eSAndroid Build Coastguard Worker 8950*344a7f5eSAndroid Build Coastguard Worker public final deprecated class ViewConfigurationCompat { 8951*344a7f5eSAndroid Build Coastguard Worker method public static float getScaledHorizontalScrollFactor(android.view.ViewConfiguration, android.content.Context); 8952*344a7f5eSAndroid Build Coastguard Worker method public static deprecated int getScaledPagingTouchSlop(android.view.ViewConfiguration); 8953*344a7f5eSAndroid Build Coastguard Worker method public static float getScaledVerticalScrollFactor(android.view.ViewConfiguration, android.content.Context); 8954*344a7f5eSAndroid Build Coastguard Worker method public static deprecated boolean hasPermanentMenuKey(android.view.ViewConfiguration); 8955*344a7f5eSAndroid Build Coastguard Worker } 8956*344a7f5eSAndroid Build Coastguard Worker 8957*344a7f5eSAndroid Build Coastguard Worker public final class ViewGroupCompat { 8958*344a7f5eSAndroid Build Coastguard Worker method public static int getLayoutMode(android.view.ViewGroup); 8959*344a7f5eSAndroid Build Coastguard Worker method public static int getNestedScrollAxes(android.view.ViewGroup); 8960*344a7f5eSAndroid Build Coastguard Worker method public static boolean isTransitionGroup(android.view.ViewGroup); 8961*344a7f5eSAndroid Build Coastguard Worker method public static deprecated boolean onRequestSendAccessibilityEvent(android.view.ViewGroup, android.view.View, android.view.accessibility.AccessibilityEvent); 8962*344a7f5eSAndroid Build Coastguard Worker method public static void setLayoutMode(android.view.ViewGroup, int); 8963*344a7f5eSAndroid Build Coastguard Worker method public static deprecated void setMotionEventSplittingEnabled(android.view.ViewGroup, boolean); 8964*344a7f5eSAndroid Build Coastguard Worker method public static void setTransitionGroup(android.view.ViewGroup, boolean); 8965*344a7f5eSAndroid Build Coastguard Worker field public static final int LAYOUT_MODE_CLIP_BOUNDS = 0; // 0x0 8966*344a7f5eSAndroid Build Coastguard Worker field public static final int LAYOUT_MODE_OPTICAL_BOUNDS = 1; // 0x1 8967*344a7f5eSAndroid Build Coastguard Worker } 8968*344a7f5eSAndroid Build Coastguard Worker 8969*344a7f5eSAndroid Build Coastguard Worker public class ViewPager extends android.view.ViewGroup { 8970*344a7f5eSAndroid Build Coastguard Worker ctor public ViewPager(android.content.Context); 8971*344a7f5eSAndroid Build Coastguard Worker ctor public ViewPager(android.content.Context, android.util.AttributeSet); 8972*344a7f5eSAndroid Build Coastguard Worker method public void addOnAdapterChangeListener(android.support.v4.view.ViewPager.OnAdapterChangeListener); 8973*344a7f5eSAndroid Build Coastguard Worker method public void addOnPageChangeListener(android.support.v4.view.ViewPager.OnPageChangeListener); 8974*344a7f5eSAndroid Build Coastguard Worker method public boolean arrowScroll(int); 8975*344a7f5eSAndroid Build Coastguard Worker method public boolean beginFakeDrag(); 8976*344a7f5eSAndroid Build Coastguard Worker method protected boolean canScroll(android.view.View, boolean, int, int, int); 8977*344a7f5eSAndroid Build Coastguard Worker method public void clearOnPageChangeListeners(); 8978*344a7f5eSAndroid Build Coastguard Worker method public void endFakeDrag(); 8979*344a7f5eSAndroid Build Coastguard Worker method public boolean executeKeyEvent(android.view.KeyEvent); 8980*344a7f5eSAndroid Build Coastguard Worker method public void fakeDragBy(float); 8981*344a7f5eSAndroid Build Coastguard Worker method public android.support.v4.view.PagerAdapter getAdapter(); 8982*344a7f5eSAndroid Build Coastguard Worker method public int getCurrentItem(); 8983*344a7f5eSAndroid Build Coastguard Worker method public int getOffscreenPageLimit(); 8984*344a7f5eSAndroid Build Coastguard Worker method public int getPageMargin(); 8985*344a7f5eSAndroid Build Coastguard Worker method public boolean isFakeDragging(); 8986*344a7f5eSAndroid Build Coastguard Worker method protected void onLayout(boolean, int, int, int, int); 8987*344a7f5eSAndroid Build Coastguard Worker method protected void onPageScrolled(int, float, int); 8988*344a7f5eSAndroid Build Coastguard Worker method public void onRestoreInstanceState(android.os.Parcelable); 8989*344a7f5eSAndroid Build Coastguard Worker method public android.os.Parcelable onSaveInstanceState(); 8990*344a7f5eSAndroid Build Coastguard Worker method public void removeOnAdapterChangeListener(android.support.v4.view.ViewPager.OnAdapterChangeListener); 8991*344a7f5eSAndroid Build Coastguard Worker method public void removeOnPageChangeListener(android.support.v4.view.ViewPager.OnPageChangeListener); 8992*344a7f5eSAndroid Build Coastguard Worker method public void setAdapter(android.support.v4.view.PagerAdapter); 8993*344a7f5eSAndroid Build Coastguard Worker method public void setCurrentItem(int); 8994*344a7f5eSAndroid Build Coastguard Worker method public void setCurrentItem(int, boolean); 8995*344a7f5eSAndroid Build Coastguard Worker method public void setOffscreenPageLimit(int); 8996*344a7f5eSAndroid Build Coastguard Worker method public deprecated void setOnPageChangeListener(android.support.v4.view.ViewPager.OnPageChangeListener); 8997*344a7f5eSAndroid Build Coastguard Worker method public void setPageMargin(int); 8998*344a7f5eSAndroid Build Coastguard Worker method public void setPageMarginDrawable(android.graphics.drawable.Drawable); 8999*344a7f5eSAndroid Build Coastguard Worker method public void setPageMarginDrawable(int); 9000*344a7f5eSAndroid Build Coastguard Worker method public void setPageTransformer(boolean, android.support.v4.view.ViewPager.PageTransformer); 9001*344a7f5eSAndroid Build Coastguard Worker method public void setPageTransformer(boolean, android.support.v4.view.ViewPager.PageTransformer, int); 9002*344a7f5eSAndroid Build Coastguard Worker field public static final int SCROLL_STATE_DRAGGING = 1; // 0x1 9003*344a7f5eSAndroid Build Coastguard Worker field public static final int SCROLL_STATE_IDLE = 0; // 0x0 9004*344a7f5eSAndroid Build Coastguard Worker field public static final int SCROLL_STATE_SETTLING = 2; // 0x2 9005*344a7f5eSAndroid Build Coastguard Worker } 9006*344a7f5eSAndroid Build Coastguard Worker 9007*344a7f5eSAndroid Build Coastguard Worker public static abstract class ViewPager.DecorView implements java.lang.annotation.Annotation { 9008*344a7f5eSAndroid Build Coastguard Worker } 9009*344a7f5eSAndroid Build Coastguard Worker 9010*344a7f5eSAndroid Build Coastguard Worker public static class ViewPager.LayoutParams extends android.view.ViewGroup.LayoutParams { 9011*344a7f5eSAndroid Build Coastguard Worker ctor public ViewPager.LayoutParams(); 9012*344a7f5eSAndroid Build Coastguard Worker ctor public ViewPager.LayoutParams(android.content.Context, android.util.AttributeSet); 9013*344a7f5eSAndroid Build Coastguard Worker field public int gravity; 9014*344a7f5eSAndroid Build Coastguard Worker field public boolean isDecor; 9015*344a7f5eSAndroid Build Coastguard Worker } 9016*344a7f5eSAndroid Build Coastguard Worker 9017*344a7f5eSAndroid Build Coastguard Worker public static abstract interface ViewPager.OnAdapterChangeListener { 9018*344a7f5eSAndroid Build Coastguard Worker method public abstract void onAdapterChanged(android.support.v4.view.ViewPager, android.support.v4.view.PagerAdapter, android.support.v4.view.PagerAdapter); 9019*344a7f5eSAndroid Build Coastguard Worker } 9020*344a7f5eSAndroid Build Coastguard Worker 9021*344a7f5eSAndroid Build Coastguard Worker public static abstract interface ViewPager.OnPageChangeListener { 9022*344a7f5eSAndroid Build Coastguard Worker method public abstract void onPageScrollStateChanged(int); 9023*344a7f5eSAndroid Build Coastguard Worker method public abstract void onPageScrolled(int, float, int); 9024*344a7f5eSAndroid Build Coastguard Worker method public abstract void onPageSelected(int); 9025*344a7f5eSAndroid Build Coastguard Worker } 9026*344a7f5eSAndroid Build Coastguard Worker 9027*344a7f5eSAndroid Build Coastguard Worker public static abstract interface ViewPager.PageTransformer { 9028*344a7f5eSAndroid Build Coastguard Worker method public abstract void transformPage(android.view.View, float); 9029*344a7f5eSAndroid Build Coastguard Worker } 9030*344a7f5eSAndroid Build Coastguard Worker 9031*344a7f5eSAndroid Build Coastguard Worker public static class ViewPager.SavedState extends android.support.v4.view.AbsSavedState { 9032*344a7f5eSAndroid Build Coastguard Worker ctor public ViewPager.SavedState(android.os.Parcelable); 9033*344a7f5eSAndroid Build Coastguard Worker field public static final android.os.Parcelable.Creator<android.support.v4.view.ViewPager.SavedState> CREATOR; 9034*344a7f5eSAndroid Build Coastguard Worker } 9035*344a7f5eSAndroid Build Coastguard Worker 9036*344a7f5eSAndroid Build Coastguard Worker public static class ViewPager.SimpleOnPageChangeListener implements android.support.v4.view.ViewPager.OnPageChangeListener { 9037*344a7f5eSAndroid Build Coastguard Worker ctor public ViewPager.SimpleOnPageChangeListener(); 9038*344a7f5eSAndroid Build Coastguard Worker method public void onPageScrollStateChanged(int); 9039*344a7f5eSAndroid Build Coastguard Worker method public void onPageScrolled(int, float, int); 9040*344a7f5eSAndroid Build Coastguard Worker method public void onPageSelected(int); 9041*344a7f5eSAndroid Build Coastguard Worker } 9042*344a7f5eSAndroid Build Coastguard Worker 9043*344a7f5eSAndroid Build Coastguard Worker public final class ViewParentCompat { 9044*344a7f5eSAndroid Build Coastguard Worker method public static void notifySubtreeAccessibilityStateChanged(android.view.ViewParent, android.view.View, android.view.View, int); 9045*344a7f5eSAndroid Build Coastguard Worker method public static boolean onNestedFling(android.view.ViewParent, android.view.View, float, float, boolean); 9046*344a7f5eSAndroid Build Coastguard Worker method public static boolean onNestedPreFling(android.view.ViewParent, android.view.View, float, float); 9047*344a7f5eSAndroid Build Coastguard Worker method public static void onNestedPreScroll(android.view.ViewParent, android.view.View, int, int, int[]); 9048*344a7f5eSAndroid Build Coastguard Worker method public static void onNestedPreScroll(android.view.ViewParent, android.view.View, int, int, int[], int); 9049*344a7f5eSAndroid Build Coastguard Worker method public static void onNestedScroll(android.view.ViewParent, android.view.View, int, int, int, int); 9050*344a7f5eSAndroid Build Coastguard Worker method public static void onNestedScroll(android.view.ViewParent, android.view.View, int, int, int, int, int); 9051*344a7f5eSAndroid Build Coastguard Worker method public static void onNestedScrollAccepted(android.view.ViewParent, android.view.View, android.view.View, int); 9052*344a7f5eSAndroid Build Coastguard Worker method public static void onNestedScrollAccepted(android.view.ViewParent, android.view.View, android.view.View, int, int); 9053*344a7f5eSAndroid Build Coastguard Worker method public static boolean onStartNestedScroll(android.view.ViewParent, android.view.View, android.view.View, int); 9054*344a7f5eSAndroid Build Coastguard Worker method public static boolean onStartNestedScroll(android.view.ViewParent, android.view.View, android.view.View, int, int); 9055*344a7f5eSAndroid Build Coastguard Worker method public static void onStopNestedScroll(android.view.ViewParent, android.view.View); 9056*344a7f5eSAndroid Build Coastguard Worker method public static void onStopNestedScroll(android.view.ViewParent, android.view.View, int); 9057*344a7f5eSAndroid Build Coastguard Worker method public static deprecated boolean requestSendAccessibilityEvent(android.view.ViewParent, android.view.View, android.view.accessibility.AccessibilityEvent); 9058*344a7f5eSAndroid Build Coastguard Worker } 9059*344a7f5eSAndroid Build Coastguard Worker 9060*344a7f5eSAndroid Build Coastguard Worker public final class ViewPropertyAnimatorCompat { 9061*344a7f5eSAndroid Build Coastguard Worker method public android.support.v4.view.ViewPropertyAnimatorCompat alpha(float); 9062*344a7f5eSAndroid Build Coastguard Worker method public android.support.v4.view.ViewPropertyAnimatorCompat alphaBy(float); 9063*344a7f5eSAndroid Build Coastguard Worker method public void cancel(); 9064*344a7f5eSAndroid Build Coastguard Worker method public long getDuration(); 9065*344a7f5eSAndroid Build Coastguard Worker method public android.view.animation.Interpolator getInterpolator(); 9066*344a7f5eSAndroid Build Coastguard Worker method public long getStartDelay(); 9067*344a7f5eSAndroid Build Coastguard Worker method public android.support.v4.view.ViewPropertyAnimatorCompat rotation(float); 9068*344a7f5eSAndroid Build Coastguard Worker method public android.support.v4.view.ViewPropertyAnimatorCompat rotationBy(float); 9069*344a7f5eSAndroid Build Coastguard Worker method public android.support.v4.view.ViewPropertyAnimatorCompat rotationX(float); 9070*344a7f5eSAndroid Build Coastguard Worker method public android.support.v4.view.ViewPropertyAnimatorCompat rotationXBy(float); 9071*344a7f5eSAndroid Build Coastguard Worker method public android.support.v4.view.ViewPropertyAnimatorCompat rotationY(float); 9072*344a7f5eSAndroid Build Coastguard Worker method public android.support.v4.view.ViewPropertyAnimatorCompat rotationYBy(float); 9073*344a7f5eSAndroid Build Coastguard Worker method public android.support.v4.view.ViewPropertyAnimatorCompat scaleX(float); 9074*344a7f5eSAndroid Build Coastguard Worker method public android.support.v4.view.ViewPropertyAnimatorCompat scaleXBy(float); 9075*344a7f5eSAndroid Build Coastguard Worker method public android.support.v4.view.ViewPropertyAnimatorCompat scaleY(float); 9076*344a7f5eSAndroid Build Coastguard Worker method public android.support.v4.view.ViewPropertyAnimatorCompat scaleYBy(float); 9077*344a7f5eSAndroid Build Coastguard Worker method public android.support.v4.view.ViewPropertyAnimatorCompat setDuration(long); 9078*344a7f5eSAndroid Build Coastguard Worker method public android.support.v4.view.ViewPropertyAnimatorCompat setInterpolator(android.view.animation.Interpolator); 9079*344a7f5eSAndroid Build Coastguard Worker method public android.support.v4.view.ViewPropertyAnimatorCompat setListener(android.support.v4.view.ViewPropertyAnimatorListener); 9080*344a7f5eSAndroid Build Coastguard Worker method public android.support.v4.view.ViewPropertyAnimatorCompat setStartDelay(long); 9081*344a7f5eSAndroid Build Coastguard Worker method public android.support.v4.view.ViewPropertyAnimatorCompat setUpdateListener(android.support.v4.view.ViewPropertyAnimatorUpdateListener); 9082*344a7f5eSAndroid Build Coastguard Worker method public void start(); 9083*344a7f5eSAndroid Build Coastguard Worker method public android.support.v4.view.ViewPropertyAnimatorCompat translationX(float); 9084*344a7f5eSAndroid Build Coastguard Worker method public android.support.v4.view.ViewPropertyAnimatorCompat translationXBy(float); 9085*344a7f5eSAndroid Build Coastguard Worker method public android.support.v4.view.ViewPropertyAnimatorCompat translationY(float); 9086*344a7f5eSAndroid Build Coastguard Worker method public android.support.v4.view.ViewPropertyAnimatorCompat translationYBy(float); 9087*344a7f5eSAndroid Build Coastguard Worker method public android.support.v4.view.ViewPropertyAnimatorCompat translationZ(float); 9088*344a7f5eSAndroid Build Coastguard Worker method public android.support.v4.view.ViewPropertyAnimatorCompat translationZBy(float); 9089*344a7f5eSAndroid Build Coastguard Worker method public android.support.v4.view.ViewPropertyAnimatorCompat withEndAction(java.lang.Runnable); 9090*344a7f5eSAndroid Build Coastguard Worker method public android.support.v4.view.ViewPropertyAnimatorCompat withLayer(); 9091*344a7f5eSAndroid Build Coastguard Worker method public android.support.v4.view.ViewPropertyAnimatorCompat withStartAction(java.lang.Runnable); 9092*344a7f5eSAndroid Build Coastguard Worker method public android.support.v4.view.ViewPropertyAnimatorCompat x(float); 9093*344a7f5eSAndroid Build Coastguard Worker method public android.support.v4.view.ViewPropertyAnimatorCompat xBy(float); 9094*344a7f5eSAndroid Build Coastguard Worker method public android.support.v4.view.ViewPropertyAnimatorCompat y(float); 9095*344a7f5eSAndroid Build Coastguard Worker method public android.support.v4.view.ViewPropertyAnimatorCompat yBy(float); 9096*344a7f5eSAndroid Build Coastguard Worker method public android.support.v4.view.ViewPropertyAnimatorCompat z(float); 9097*344a7f5eSAndroid Build Coastguard Worker method public android.support.v4.view.ViewPropertyAnimatorCompat zBy(float); 9098*344a7f5eSAndroid Build Coastguard Worker } 9099*344a7f5eSAndroid Build Coastguard Worker 9100*344a7f5eSAndroid Build Coastguard Worker public abstract interface ViewPropertyAnimatorListener { 9101*344a7f5eSAndroid Build Coastguard Worker method public abstract void onAnimationCancel(android.view.View); 9102*344a7f5eSAndroid Build Coastguard Worker method public abstract void onAnimationEnd(android.view.View); 9103*344a7f5eSAndroid Build Coastguard Worker method public abstract void onAnimationStart(android.view.View); 9104*344a7f5eSAndroid Build Coastguard Worker } 9105*344a7f5eSAndroid Build Coastguard Worker 9106*344a7f5eSAndroid Build Coastguard Worker public class ViewPropertyAnimatorListenerAdapter implements android.support.v4.view.ViewPropertyAnimatorListener { 9107*344a7f5eSAndroid Build Coastguard Worker ctor public ViewPropertyAnimatorListenerAdapter(); 9108*344a7f5eSAndroid Build Coastguard Worker method public void onAnimationCancel(android.view.View); 9109*344a7f5eSAndroid Build Coastguard Worker method public void onAnimationEnd(android.view.View); 9110*344a7f5eSAndroid Build Coastguard Worker method public void onAnimationStart(android.view.View); 9111*344a7f5eSAndroid Build Coastguard Worker } 9112*344a7f5eSAndroid Build Coastguard Worker 9113*344a7f5eSAndroid Build Coastguard Worker public abstract interface ViewPropertyAnimatorUpdateListener { 9114*344a7f5eSAndroid Build Coastguard Worker method public abstract void onAnimationUpdate(android.view.View); 9115*344a7f5eSAndroid Build Coastguard Worker } 9116*344a7f5eSAndroid Build Coastguard Worker 9117*344a7f5eSAndroid Build Coastguard Worker public final class WindowCompat { 9118*344a7f5eSAndroid Build Coastguard Worker field public static final int FEATURE_ACTION_BAR = 8; // 0x8 9119*344a7f5eSAndroid Build Coastguard Worker field public static final int FEATURE_ACTION_BAR_OVERLAY = 9; // 0x9 9120*344a7f5eSAndroid Build Coastguard Worker field public static final int FEATURE_ACTION_MODE_OVERLAY = 10; // 0xa 9121*344a7f5eSAndroid Build Coastguard Worker } 9122*344a7f5eSAndroid Build Coastguard Worker 9123*344a7f5eSAndroid Build Coastguard Worker public class WindowInsetsCompat { 9124*344a7f5eSAndroid Build Coastguard Worker ctor public WindowInsetsCompat(android.support.v4.view.WindowInsetsCompat); 9125*344a7f5eSAndroid Build Coastguard Worker method public android.support.v4.view.WindowInsetsCompat consumeStableInsets(); 9126*344a7f5eSAndroid Build Coastguard Worker method public android.support.v4.view.WindowInsetsCompat consumeSystemWindowInsets(); 9127*344a7f5eSAndroid Build Coastguard Worker method public int getStableInsetBottom(); 9128*344a7f5eSAndroid Build Coastguard Worker method public int getStableInsetLeft(); 9129*344a7f5eSAndroid Build Coastguard Worker method public int getStableInsetRight(); 9130*344a7f5eSAndroid Build Coastguard Worker method public int getStableInsetTop(); 9131*344a7f5eSAndroid Build Coastguard Worker method public int getSystemWindowInsetBottom(); 9132*344a7f5eSAndroid Build Coastguard Worker method public int getSystemWindowInsetLeft(); 9133*344a7f5eSAndroid Build Coastguard Worker method public int getSystemWindowInsetRight(); 9134*344a7f5eSAndroid Build Coastguard Worker method public int getSystemWindowInsetTop(); 9135*344a7f5eSAndroid Build Coastguard Worker method public boolean hasInsets(); 9136*344a7f5eSAndroid Build Coastguard Worker method public boolean hasStableInsets(); 9137*344a7f5eSAndroid Build Coastguard Worker method public boolean hasSystemWindowInsets(); 9138*344a7f5eSAndroid Build Coastguard Worker method public boolean isConsumed(); 9139*344a7f5eSAndroid Build Coastguard Worker method public boolean isRound(); 9140*344a7f5eSAndroid Build Coastguard Worker method public android.support.v4.view.WindowInsetsCompat replaceSystemWindowInsets(int, int, int, int); 9141*344a7f5eSAndroid Build Coastguard Worker method public android.support.v4.view.WindowInsetsCompat replaceSystemWindowInsets(android.graphics.Rect); 9142*344a7f5eSAndroid Build Coastguard Worker } 9143*344a7f5eSAndroid Build Coastguard Worker 9144*344a7f5eSAndroid Build Coastguard Worker} 9145*344a7f5eSAndroid Build Coastguard Worker 9146*344a7f5eSAndroid Build Coastguard Workerpackage android.support.v4.view.accessibility { 9147*344a7f5eSAndroid Build Coastguard Worker 9148*344a7f5eSAndroid Build Coastguard Worker public final class AccessibilityEventCompat { 9149*344a7f5eSAndroid Build Coastguard Worker method public static deprecated void appendRecord(android.view.accessibility.AccessibilityEvent, android.support.v4.view.accessibility.AccessibilityRecordCompat); 9150*344a7f5eSAndroid Build Coastguard Worker method public static deprecated android.support.v4.view.accessibility.AccessibilityRecordCompat asRecord(android.view.accessibility.AccessibilityEvent); 9151*344a7f5eSAndroid Build Coastguard Worker method public int getAction(android.view.accessibility.AccessibilityEvent); 9152*344a7f5eSAndroid Build Coastguard Worker method public static int getContentChangeTypes(android.view.accessibility.AccessibilityEvent); 9153*344a7f5eSAndroid Build Coastguard Worker method public int getMovementGranularity(android.view.accessibility.AccessibilityEvent); 9154*344a7f5eSAndroid Build Coastguard Worker method public static deprecated android.support.v4.view.accessibility.AccessibilityRecordCompat getRecord(android.view.accessibility.AccessibilityEvent, int); 9155*344a7f5eSAndroid Build Coastguard Worker method public static deprecated int getRecordCount(android.view.accessibility.AccessibilityEvent); 9156*344a7f5eSAndroid Build Coastguard Worker method public void setAction(android.view.accessibility.AccessibilityEvent, int); 9157*344a7f5eSAndroid Build Coastguard Worker method public static void setContentChangeTypes(android.view.accessibility.AccessibilityEvent, int); 9158*344a7f5eSAndroid Build Coastguard Worker method public void setMovementGranularity(android.view.accessibility.AccessibilityEvent, int); 9159*344a7f5eSAndroid Build Coastguard Worker field public static final int CONTENT_CHANGE_TYPE_CONTENT_DESCRIPTION = 4; // 0x4 9160*344a7f5eSAndroid Build Coastguard Worker field public static final int CONTENT_CHANGE_TYPE_SUBTREE = 1; // 0x1 9161*344a7f5eSAndroid Build Coastguard Worker field public static final int CONTENT_CHANGE_TYPE_TEXT = 2; // 0x2 9162*344a7f5eSAndroid Build Coastguard Worker field public static final int CONTENT_CHANGE_TYPE_UNDEFINED = 0; // 0x0 9163*344a7f5eSAndroid Build Coastguard Worker field public static final int TYPES_ALL_MASK = -1; // 0xffffffff 9164*344a7f5eSAndroid Build Coastguard Worker field public static final int TYPE_ANNOUNCEMENT = 16384; // 0x4000 9165*344a7f5eSAndroid Build Coastguard Worker field public static final int TYPE_ASSIST_READING_CONTEXT = 16777216; // 0x1000000 9166*344a7f5eSAndroid Build Coastguard Worker field public static final int TYPE_GESTURE_DETECTION_END = 524288; // 0x80000 9167*344a7f5eSAndroid Build Coastguard Worker field public static final int TYPE_GESTURE_DETECTION_START = 262144; // 0x40000 9168*344a7f5eSAndroid Build Coastguard Worker field public static final deprecated int TYPE_TOUCH_EXPLORATION_GESTURE_END = 1024; // 0x400 9169*344a7f5eSAndroid Build Coastguard Worker field public static final deprecated int TYPE_TOUCH_EXPLORATION_GESTURE_START = 512; // 0x200 9170*344a7f5eSAndroid Build Coastguard Worker field public static final int TYPE_TOUCH_INTERACTION_END = 2097152; // 0x200000 9171*344a7f5eSAndroid Build Coastguard Worker field public static final int TYPE_TOUCH_INTERACTION_START = 1048576; // 0x100000 9172*344a7f5eSAndroid Build Coastguard Worker field public static final int TYPE_VIEW_ACCESSIBILITY_FOCUSED = 32768; // 0x8000 9173*344a7f5eSAndroid Build Coastguard Worker field public static final int TYPE_VIEW_ACCESSIBILITY_FOCUS_CLEARED = 65536; // 0x10000 9174*344a7f5eSAndroid Build Coastguard Worker field public static final int TYPE_VIEW_CONTEXT_CLICKED = 8388608; // 0x800000 9175*344a7f5eSAndroid Build Coastguard Worker field public static final deprecated int TYPE_VIEW_HOVER_ENTER = 128; // 0x80 9176*344a7f5eSAndroid Build Coastguard Worker field public static final deprecated int TYPE_VIEW_HOVER_EXIT = 256; // 0x100 9177*344a7f5eSAndroid Build Coastguard Worker field public static final deprecated int TYPE_VIEW_SCROLLED = 4096; // 0x1000 9178*344a7f5eSAndroid Build Coastguard Worker field public static final deprecated int TYPE_VIEW_TEXT_SELECTION_CHANGED = 8192; // 0x2000 9179*344a7f5eSAndroid Build Coastguard Worker field public static final int TYPE_VIEW_TEXT_TRAVERSED_AT_MOVEMENT_GRANULARITY = 131072; // 0x20000 9180*344a7f5eSAndroid Build Coastguard Worker field public static final int TYPE_WINDOWS_CHANGED = 4194304; // 0x400000 9181*344a7f5eSAndroid Build Coastguard Worker field public static final deprecated int TYPE_WINDOW_CONTENT_CHANGED = 2048; // 0x800 9182*344a7f5eSAndroid Build Coastguard Worker } 9183*344a7f5eSAndroid Build Coastguard Worker 9184*344a7f5eSAndroid Build Coastguard Worker public final class AccessibilityManagerCompat { 9185*344a7f5eSAndroid Build Coastguard Worker method public static deprecated boolean addAccessibilityStateChangeListener(android.view.accessibility.AccessibilityManager, android.support.v4.view.accessibility.AccessibilityManagerCompat.AccessibilityStateChangeListener); 9186*344a7f5eSAndroid Build Coastguard Worker method public static boolean addTouchExplorationStateChangeListener(android.view.accessibility.AccessibilityManager, android.support.v4.view.accessibility.AccessibilityManagerCompat.TouchExplorationStateChangeListener); 9187*344a7f5eSAndroid Build Coastguard Worker method public static deprecated java.util.List<android.accessibilityservice.AccessibilityServiceInfo> getEnabledAccessibilityServiceList(android.view.accessibility.AccessibilityManager, int); 9188*344a7f5eSAndroid Build Coastguard Worker method public static deprecated java.util.List<android.accessibilityservice.AccessibilityServiceInfo> getInstalledAccessibilityServiceList(android.view.accessibility.AccessibilityManager); 9189*344a7f5eSAndroid Build Coastguard Worker method public static deprecated boolean isTouchExplorationEnabled(android.view.accessibility.AccessibilityManager); 9190*344a7f5eSAndroid Build Coastguard Worker method public static deprecated boolean removeAccessibilityStateChangeListener(android.view.accessibility.AccessibilityManager, android.support.v4.view.accessibility.AccessibilityManagerCompat.AccessibilityStateChangeListener); 9191*344a7f5eSAndroid Build Coastguard Worker method public static boolean removeTouchExplorationStateChangeListener(android.view.accessibility.AccessibilityManager, android.support.v4.view.accessibility.AccessibilityManagerCompat.TouchExplorationStateChangeListener); 9192*344a7f5eSAndroid Build Coastguard Worker } 9193*344a7f5eSAndroid Build Coastguard Worker 9194*344a7f5eSAndroid Build Coastguard Worker public static abstract deprecated interface AccessibilityManagerCompat.AccessibilityStateChangeListener { 9195*344a7f5eSAndroid Build Coastguard Worker method public abstract deprecated void onAccessibilityStateChanged(boolean); 9196*344a7f5eSAndroid Build Coastguard Worker } 9197*344a7f5eSAndroid Build Coastguard Worker 9198*344a7f5eSAndroid Build Coastguard Worker public static abstract deprecated class AccessibilityManagerCompat.AccessibilityStateChangeListenerCompat implements android.support.v4.view.accessibility.AccessibilityManagerCompat.AccessibilityStateChangeListener { 9199*344a7f5eSAndroid Build Coastguard Worker ctor public AccessibilityManagerCompat.AccessibilityStateChangeListenerCompat(); 9200*344a7f5eSAndroid Build Coastguard Worker } 9201*344a7f5eSAndroid Build Coastguard Worker 9202*344a7f5eSAndroid Build Coastguard Worker public static abstract interface AccessibilityManagerCompat.TouchExplorationStateChangeListener { 9203*344a7f5eSAndroid Build Coastguard Worker method public abstract void onTouchExplorationStateChanged(boolean); 9204*344a7f5eSAndroid Build Coastguard Worker } 9205*344a7f5eSAndroid Build Coastguard Worker 9206*344a7f5eSAndroid Build Coastguard Worker public class AccessibilityNodeInfoCompat { 9207*344a7f5eSAndroid Build Coastguard Worker ctor public deprecated AccessibilityNodeInfoCompat(java.lang.Object); 9208*344a7f5eSAndroid Build Coastguard Worker method public void addAction(int); 9209*344a7f5eSAndroid Build Coastguard Worker method public void addAction(android.support.v4.view.accessibility.AccessibilityNodeInfoCompat.AccessibilityActionCompat); 9210*344a7f5eSAndroid Build Coastguard Worker method public void addChild(android.view.View); 9211*344a7f5eSAndroid Build Coastguard Worker method public void addChild(android.view.View, int); 9212*344a7f5eSAndroid Build Coastguard Worker method public boolean canOpenPopup(); 9213*344a7f5eSAndroid Build Coastguard Worker method public java.util.List<android.support.v4.view.accessibility.AccessibilityNodeInfoCompat> findAccessibilityNodeInfosByText(java.lang.String); 9214*344a7f5eSAndroid Build Coastguard Worker method public java.util.List<android.support.v4.view.accessibility.AccessibilityNodeInfoCompat> findAccessibilityNodeInfosByViewId(java.lang.String); 9215*344a7f5eSAndroid Build Coastguard Worker method public android.support.v4.view.accessibility.AccessibilityNodeInfoCompat findFocus(int); 9216*344a7f5eSAndroid Build Coastguard Worker method public android.support.v4.view.accessibility.AccessibilityNodeInfoCompat focusSearch(int); 9217*344a7f5eSAndroid Build Coastguard Worker method public java.util.List<android.support.v4.view.accessibility.AccessibilityNodeInfoCompat.AccessibilityActionCompat> getActionList(); 9218*344a7f5eSAndroid Build Coastguard Worker method public int getActions(); 9219*344a7f5eSAndroid Build Coastguard Worker method public void getBoundsInParent(android.graphics.Rect); 9220*344a7f5eSAndroid Build Coastguard Worker method public void getBoundsInScreen(android.graphics.Rect); 9221*344a7f5eSAndroid Build Coastguard Worker method public android.support.v4.view.accessibility.AccessibilityNodeInfoCompat getChild(int); 9222*344a7f5eSAndroid Build Coastguard Worker method public int getChildCount(); 9223*344a7f5eSAndroid Build Coastguard Worker method public java.lang.CharSequence getClassName(); 9224*344a7f5eSAndroid Build Coastguard Worker method public android.support.v4.view.accessibility.AccessibilityNodeInfoCompat.CollectionInfoCompat getCollectionInfo(); 9225*344a7f5eSAndroid Build Coastguard Worker method public android.support.v4.view.accessibility.AccessibilityNodeInfoCompat.CollectionItemInfoCompat getCollectionItemInfo(); 9226*344a7f5eSAndroid Build Coastguard Worker method public java.lang.CharSequence getContentDescription(); 9227*344a7f5eSAndroid Build Coastguard Worker method public int getDrawingOrder(); 9228*344a7f5eSAndroid Build Coastguard Worker method public java.lang.CharSequence getError(); 9229*344a7f5eSAndroid Build Coastguard Worker method public android.os.Bundle getExtras(); 9230*344a7f5eSAndroid Build Coastguard Worker method public deprecated java.lang.Object getInfo(); 9231*344a7f5eSAndroid Build Coastguard Worker method public int getInputType(); 9232*344a7f5eSAndroid Build Coastguard Worker method public android.support.v4.view.accessibility.AccessibilityNodeInfoCompat getLabelFor(); 9233*344a7f5eSAndroid Build Coastguard Worker method public android.support.v4.view.accessibility.AccessibilityNodeInfoCompat getLabeledBy(); 9234*344a7f5eSAndroid Build Coastguard Worker method public int getLiveRegion(); 9235*344a7f5eSAndroid Build Coastguard Worker method public int getMaxTextLength(); 9236*344a7f5eSAndroid Build Coastguard Worker method public int getMovementGranularities(); 9237*344a7f5eSAndroid Build Coastguard Worker method public java.lang.CharSequence getPackageName(); 9238*344a7f5eSAndroid Build Coastguard Worker method public android.support.v4.view.accessibility.AccessibilityNodeInfoCompat getParent(); 9239*344a7f5eSAndroid Build Coastguard Worker method public android.support.v4.view.accessibility.AccessibilityNodeInfoCompat.RangeInfoCompat getRangeInfo(); 9240*344a7f5eSAndroid Build Coastguard Worker method public java.lang.CharSequence getRoleDescription(); 9241*344a7f5eSAndroid Build Coastguard Worker method public java.lang.CharSequence getText(); 9242*344a7f5eSAndroid Build Coastguard Worker method public int getTextSelectionEnd(); 9243*344a7f5eSAndroid Build Coastguard Worker method public int getTextSelectionStart(); 9244*344a7f5eSAndroid Build Coastguard Worker method public android.support.v4.view.accessibility.AccessibilityNodeInfoCompat getTraversalAfter(); 9245*344a7f5eSAndroid Build Coastguard Worker method public android.support.v4.view.accessibility.AccessibilityNodeInfoCompat getTraversalBefore(); 9246*344a7f5eSAndroid Build Coastguard Worker method public java.lang.String getViewIdResourceName(); 9247*344a7f5eSAndroid Build Coastguard Worker method public android.support.v4.view.accessibility.AccessibilityWindowInfoCompat getWindow(); 9248*344a7f5eSAndroid Build Coastguard Worker method public int getWindowId(); 9249*344a7f5eSAndroid Build Coastguard Worker method public boolean isAccessibilityFocused(); 9250*344a7f5eSAndroid Build Coastguard Worker method public boolean isCheckable(); 9251*344a7f5eSAndroid Build Coastguard Worker method public boolean isChecked(); 9252*344a7f5eSAndroid Build Coastguard Worker method public boolean isClickable(); 9253*344a7f5eSAndroid Build Coastguard Worker method public boolean isContentInvalid(); 9254*344a7f5eSAndroid Build Coastguard Worker method public boolean isContextClickable(); 9255*344a7f5eSAndroid Build Coastguard Worker method public boolean isDismissable(); 9256*344a7f5eSAndroid Build Coastguard Worker method public boolean isEditable(); 9257*344a7f5eSAndroid Build Coastguard Worker method public boolean isEnabled(); 9258*344a7f5eSAndroid Build Coastguard Worker method public boolean isFocusable(); 9259*344a7f5eSAndroid Build Coastguard Worker method public boolean isFocused(); 9260*344a7f5eSAndroid Build Coastguard Worker method public boolean isImportantForAccessibility(); 9261*344a7f5eSAndroid Build Coastguard Worker method public boolean isLongClickable(); 9262*344a7f5eSAndroid Build Coastguard Worker method public boolean isMultiLine(); 9263*344a7f5eSAndroid Build Coastguard Worker method public boolean isPassword(); 9264*344a7f5eSAndroid Build Coastguard Worker method public boolean isScrollable(); 9265*344a7f5eSAndroid Build Coastguard Worker method public boolean isSelected(); 9266*344a7f5eSAndroid Build Coastguard Worker method public boolean isVisibleToUser(); 9267*344a7f5eSAndroid Build Coastguard Worker method public static android.support.v4.view.accessibility.AccessibilityNodeInfoCompat obtain(android.view.View); 9268*344a7f5eSAndroid Build Coastguard Worker method public static android.support.v4.view.accessibility.AccessibilityNodeInfoCompat obtain(android.view.View, int); 9269*344a7f5eSAndroid Build Coastguard Worker method public static android.support.v4.view.accessibility.AccessibilityNodeInfoCompat obtain(); 9270*344a7f5eSAndroid Build Coastguard Worker method public static android.support.v4.view.accessibility.AccessibilityNodeInfoCompat obtain(android.support.v4.view.accessibility.AccessibilityNodeInfoCompat); 9271*344a7f5eSAndroid Build Coastguard Worker method public boolean performAction(int); 9272*344a7f5eSAndroid Build Coastguard Worker method public boolean performAction(int, android.os.Bundle); 9273*344a7f5eSAndroid Build Coastguard Worker method public void recycle(); 9274*344a7f5eSAndroid Build Coastguard Worker method public boolean refresh(); 9275*344a7f5eSAndroid Build Coastguard Worker method public boolean removeAction(android.support.v4.view.accessibility.AccessibilityNodeInfoCompat.AccessibilityActionCompat); 9276*344a7f5eSAndroid Build Coastguard Worker method public boolean removeChild(android.view.View); 9277*344a7f5eSAndroid Build Coastguard Worker method public boolean removeChild(android.view.View, int); 9278*344a7f5eSAndroid Build Coastguard Worker method public void setAccessibilityFocused(boolean); 9279*344a7f5eSAndroid Build Coastguard Worker method public void setBoundsInParent(android.graphics.Rect); 9280*344a7f5eSAndroid Build Coastguard Worker method public void setBoundsInScreen(android.graphics.Rect); 9281*344a7f5eSAndroid Build Coastguard Worker method public void setCanOpenPopup(boolean); 9282*344a7f5eSAndroid Build Coastguard Worker method public void setCheckable(boolean); 9283*344a7f5eSAndroid Build Coastguard Worker method public void setChecked(boolean); 9284*344a7f5eSAndroid Build Coastguard Worker method public void setClassName(java.lang.CharSequence); 9285*344a7f5eSAndroid Build Coastguard Worker method public void setClickable(boolean); 9286*344a7f5eSAndroid Build Coastguard Worker method public void setCollectionInfo(java.lang.Object); 9287*344a7f5eSAndroid Build Coastguard Worker method public void setCollectionItemInfo(java.lang.Object); 9288*344a7f5eSAndroid Build Coastguard Worker method public void setContentDescription(java.lang.CharSequence); 9289*344a7f5eSAndroid Build Coastguard Worker method public void setContentInvalid(boolean); 9290*344a7f5eSAndroid Build Coastguard Worker method public void setContextClickable(boolean); 9291*344a7f5eSAndroid Build Coastguard Worker method public void setDismissable(boolean); 9292*344a7f5eSAndroid Build Coastguard Worker method public void setDrawingOrder(int); 9293*344a7f5eSAndroid Build Coastguard Worker method public void setEditable(boolean); 9294*344a7f5eSAndroid Build Coastguard Worker method public void setEnabled(boolean); 9295*344a7f5eSAndroid Build Coastguard Worker method public void setError(java.lang.CharSequence); 9296*344a7f5eSAndroid Build Coastguard Worker method public void setFocusable(boolean); 9297*344a7f5eSAndroid Build Coastguard Worker method public void setFocused(boolean); 9298*344a7f5eSAndroid Build Coastguard Worker method public void setImportantForAccessibility(boolean); 9299*344a7f5eSAndroid Build Coastguard Worker method public void setInputType(int); 9300*344a7f5eSAndroid Build Coastguard Worker method public void setLabelFor(android.view.View); 9301*344a7f5eSAndroid Build Coastguard Worker method public void setLabelFor(android.view.View, int); 9302*344a7f5eSAndroid Build Coastguard Worker method public void setLabeledBy(android.view.View); 9303*344a7f5eSAndroid Build Coastguard Worker method public void setLabeledBy(android.view.View, int); 9304*344a7f5eSAndroid Build Coastguard Worker method public void setLiveRegion(int); 9305*344a7f5eSAndroid Build Coastguard Worker method public void setLongClickable(boolean); 9306*344a7f5eSAndroid Build Coastguard Worker method public void setMaxTextLength(int); 9307*344a7f5eSAndroid Build Coastguard Worker method public void setMovementGranularities(int); 9308*344a7f5eSAndroid Build Coastguard Worker method public void setMultiLine(boolean); 9309*344a7f5eSAndroid Build Coastguard Worker method public void setPackageName(java.lang.CharSequence); 9310*344a7f5eSAndroid Build Coastguard Worker method public void setParent(android.view.View); 9311*344a7f5eSAndroid Build Coastguard Worker method public void setParent(android.view.View, int); 9312*344a7f5eSAndroid Build Coastguard Worker method public void setPassword(boolean); 9313*344a7f5eSAndroid Build Coastguard Worker method public void setRangeInfo(android.support.v4.view.accessibility.AccessibilityNodeInfoCompat.RangeInfoCompat); 9314*344a7f5eSAndroid Build Coastguard Worker method public void setRoleDescription(java.lang.CharSequence); 9315*344a7f5eSAndroid Build Coastguard Worker method public void setScrollable(boolean); 9316*344a7f5eSAndroid Build Coastguard Worker method public void setSelected(boolean); 9317*344a7f5eSAndroid Build Coastguard Worker method public void setSource(android.view.View); 9318*344a7f5eSAndroid Build Coastguard Worker method public void setSource(android.view.View, int); 9319*344a7f5eSAndroid Build Coastguard Worker method public void setText(java.lang.CharSequence); 9320*344a7f5eSAndroid Build Coastguard Worker method public void setTextSelection(int, int); 9321*344a7f5eSAndroid Build Coastguard Worker method public void setTraversalAfter(android.view.View); 9322*344a7f5eSAndroid Build Coastguard Worker method public void setTraversalAfter(android.view.View, int); 9323*344a7f5eSAndroid Build Coastguard Worker method public void setTraversalBefore(android.view.View); 9324*344a7f5eSAndroid Build Coastguard Worker method public void setTraversalBefore(android.view.View, int); 9325*344a7f5eSAndroid Build Coastguard Worker method public void setViewIdResourceName(java.lang.String); 9326*344a7f5eSAndroid Build Coastguard Worker method public void setVisibleToUser(boolean); 9327*344a7f5eSAndroid Build Coastguard Worker method public android.view.accessibility.AccessibilityNodeInfo unwrap(); 9328*344a7f5eSAndroid Build Coastguard Worker method public static android.support.v4.view.accessibility.AccessibilityNodeInfoCompat wrap(android.view.accessibility.AccessibilityNodeInfo); 9329*344a7f5eSAndroid Build Coastguard Worker field public static final int ACTION_ACCESSIBILITY_FOCUS = 64; // 0x40 9330*344a7f5eSAndroid Build Coastguard Worker field public static final java.lang.String ACTION_ARGUMENT_COLUMN_INT = "android.view.accessibility.action.ARGUMENT_COLUMN_INT"; 9331*344a7f5eSAndroid Build Coastguard Worker field public static final java.lang.String ACTION_ARGUMENT_EXTEND_SELECTION_BOOLEAN = "ACTION_ARGUMENT_EXTEND_SELECTION_BOOLEAN"; 9332*344a7f5eSAndroid Build Coastguard Worker field public static final java.lang.String ACTION_ARGUMENT_HTML_ELEMENT_STRING = "ACTION_ARGUMENT_HTML_ELEMENT_STRING"; 9333*344a7f5eSAndroid Build Coastguard Worker field public static final java.lang.String ACTION_ARGUMENT_MOVEMENT_GRANULARITY_INT = "ACTION_ARGUMENT_MOVEMENT_GRANULARITY_INT"; 9334*344a7f5eSAndroid Build Coastguard Worker field public static final java.lang.String ACTION_ARGUMENT_PROGRESS_VALUE = "android.view.accessibility.action.ARGUMENT_PROGRESS_VALUE"; 9335*344a7f5eSAndroid Build Coastguard Worker field public static final java.lang.String ACTION_ARGUMENT_ROW_INT = "android.view.accessibility.action.ARGUMENT_ROW_INT"; 9336*344a7f5eSAndroid Build Coastguard Worker field public static final java.lang.String ACTION_ARGUMENT_SELECTION_END_INT = "ACTION_ARGUMENT_SELECTION_END_INT"; 9337*344a7f5eSAndroid Build Coastguard Worker field public static final java.lang.String ACTION_ARGUMENT_SELECTION_START_INT = "ACTION_ARGUMENT_SELECTION_START_INT"; 9338*344a7f5eSAndroid Build Coastguard Worker field public static final java.lang.String ACTION_ARGUMENT_SET_TEXT_CHARSEQUENCE = "ACTION_ARGUMENT_SET_TEXT_CHARSEQUENCE"; 9339*344a7f5eSAndroid Build Coastguard Worker field public static final int ACTION_CLEAR_ACCESSIBILITY_FOCUS = 128; // 0x80 9340*344a7f5eSAndroid Build Coastguard Worker field public static final int ACTION_CLEAR_FOCUS = 2; // 0x2 9341*344a7f5eSAndroid Build Coastguard Worker field public static final int ACTION_CLEAR_SELECTION = 8; // 0x8 9342*344a7f5eSAndroid Build Coastguard Worker field public static final int ACTION_CLICK = 16; // 0x10 9343*344a7f5eSAndroid Build Coastguard Worker field public static final int ACTION_COLLAPSE = 524288; // 0x80000 9344*344a7f5eSAndroid Build Coastguard Worker field public static final int ACTION_COPY = 16384; // 0x4000 9345*344a7f5eSAndroid Build Coastguard Worker field public static final int ACTION_CUT = 65536; // 0x10000 9346*344a7f5eSAndroid Build Coastguard Worker field public static final int ACTION_DISMISS = 1048576; // 0x100000 9347*344a7f5eSAndroid Build Coastguard Worker field public static final int ACTION_EXPAND = 262144; // 0x40000 9348*344a7f5eSAndroid Build Coastguard Worker field public static final int ACTION_FOCUS = 1; // 0x1 9349*344a7f5eSAndroid Build Coastguard Worker field public static final int ACTION_LONG_CLICK = 32; // 0x20 9350*344a7f5eSAndroid Build Coastguard Worker field public static final int ACTION_NEXT_AT_MOVEMENT_GRANULARITY = 256; // 0x100 9351*344a7f5eSAndroid Build Coastguard Worker field public static final int ACTION_NEXT_HTML_ELEMENT = 1024; // 0x400 9352*344a7f5eSAndroid Build Coastguard Worker field public static final int ACTION_PASTE = 32768; // 0x8000 9353*344a7f5eSAndroid Build Coastguard Worker field public static final int ACTION_PREVIOUS_AT_MOVEMENT_GRANULARITY = 512; // 0x200 9354*344a7f5eSAndroid Build Coastguard Worker field public static final int ACTION_PREVIOUS_HTML_ELEMENT = 2048; // 0x800 9355*344a7f5eSAndroid Build Coastguard Worker field public static final int ACTION_SCROLL_BACKWARD = 8192; // 0x2000 9356*344a7f5eSAndroid Build Coastguard Worker field public static final int ACTION_SCROLL_FORWARD = 4096; // 0x1000 9357*344a7f5eSAndroid Build Coastguard Worker field public static final int ACTION_SELECT = 4; // 0x4 9358*344a7f5eSAndroid Build Coastguard Worker field public static final int ACTION_SET_SELECTION = 131072; // 0x20000 9359*344a7f5eSAndroid Build Coastguard Worker field public static final int ACTION_SET_TEXT = 2097152; // 0x200000 9360*344a7f5eSAndroid Build Coastguard Worker field public static final int FOCUS_ACCESSIBILITY = 2; // 0x2 9361*344a7f5eSAndroid Build Coastguard Worker field public static final int FOCUS_INPUT = 1; // 0x1 9362*344a7f5eSAndroid Build Coastguard Worker field public static final int MOVEMENT_GRANULARITY_CHARACTER = 1; // 0x1 9363*344a7f5eSAndroid Build Coastguard Worker field public static final int MOVEMENT_GRANULARITY_LINE = 4; // 0x4 9364*344a7f5eSAndroid Build Coastguard Worker field public static final int MOVEMENT_GRANULARITY_PAGE = 16; // 0x10 9365*344a7f5eSAndroid Build Coastguard Worker field public static final int MOVEMENT_GRANULARITY_PARAGRAPH = 8; // 0x8 9366*344a7f5eSAndroid Build Coastguard Worker field public static final int MOVEMENT_GRANULARITY_WORD = 2; // 0x2 9367*344a7f5eSAndroid Build Coastguard Worker } 9368*344a7f5eSAndroid Build Coastguard Worker 9369*344a7f5eSAndroid Build Coastguard Worker public static class AccessibilityNodeInfoCompat.AccessibilityActionCompat { 9370*344a7f5eSAndroid Build Coastguard Worker ctor public AccessibilityNodeInfoCompat.AccessibilityActionCompat(int, java.lang.CharSequence); 9371*344a7f5eSAndroid Build Coastguard Worker method public int getId(); 9372*344a7f5eSAndroid Build Coastguard Worker method public java.lang.CharSequence getLabel(); 9373*344a7f5eSAndroid Build Coastguard Worker field public static final android.support.v4.view.accessibility.AccessibilityNodeInfoCompat.AccessibilityActionCompat ACTION_ACCESSIBILITY_FOCUS; 9374*344a7f5eSAndroid Build Coastguard Worker field public static final android.support.v4.view.accessibility.AccessibilityNodeInfoCompat.AccessibilityActionCompat ACTION_CLEAR_ACCESSIBILITY_FOCUS; 9375*344a7f5eSAndroid Build Coastguard Worker field public static final android.support.v4.view.accessibility.AccessibilityNodeInfoCompat.AccessibilityActionCompat ACTION_CLEAR_FOCUS; 9376*344a7f5eSAndroid Build Coastguard Worker field public static final android.support.v4.view.accessibility.AccessibilityNodeInfoCompat.AccessibilityActionCompat ACTION_CLEAR_SELECTION; 9377*344a7f5eSAndroid Build Coastguard Worker field public static final android.support.v4.view.accessibility.AccessibilityNodeInfoCompat.AccessibilityActionCompat ACTION_CLICK; 9378*344a7f5eSAndroid Build Coastguard Worker field public static final android.support.v4.view.accessibility.AccessibilityNodeInfoCompat.AccessibilityActionCompat ACTION_COLLAPSE; 9379*344a7f5eSAndroid Build Coastguard Worker field public static final android.support.v4.view.accessibility.AccessibilityNodeInfoCompat.AccessibilityActionCompat ACTION_CONTEXT_CLICK; 9380*344a7f5eSAndroid Build Coastguard Worker field public static final android.support.v4.view.accessibility.AccessibilityNodeInfoCompat.AccessibilityActionCompat ACTION_COPY; 9381*344a7f5eSAndroid Build Coastguard Worker field public static final android.support.v4.view.accessibility.AccessibilityNodeInfoCompat.AccessibilityActionCompat ACTION_CUT; 9382*344a7f5eSAndroid Build Coastguard Worker field public static final android.support.v4.view.accessibility.AccessibilityNodeInfoCompat.AccessibilityActionCompat ACTION_DISMISS; 9383*344a7f5eSAndroid Build Coastguard Worker field public static final android.support.v4.view.accessibility.AccessibilityNodeInfoCompat.AccessibilityActionCompat ACTION_EXPAND; 9384*344a7f5eSAndroid Build Coastguard Worker field public static final android.support.v4.view.accessibility.AccessibilityNodeInfoCompat.AccessibilityActionCompat ACTION_FOCUS; 9385*344a7f5eSAndroid Build Coastguard Worker field public static final android.support.v4.view.accessibility.AccessibilityNodeInfoCompat.AccessibilityActionCompat ACTION_LONG_CLICK; 9386*344a7f5eSAndroid Build Coastguard Worker field public static final android.support.v4.view.accessibility.AccessibilityNodeInfoCompat.AccessibilityActionCompat ACTION_NEXT_AT_MOVEMENT_GRANULARITY; 9387*344a7f5eSAndroid Build Coastguard Worker field public static final android.support.v4.view.accessibility.AccessibilityNodeInfoCompat.AccessibilityActionCompat ACTION_NEXT_HTML_ELEMENT; 9388*344a7f5eSAndroid Build Coastguard Worker field public static final android.support.v4.view.accessibility.AccessibilityNodeInfoCompat.AccessibilityActionCompat ACTION_PASTE; 9389*344a7f5eSAndroid Build Coastguard Worker field public static final android.support.v4.view.accessibility.AccessibilityNodeInfoCompat.AccessibilityActionCompat ACTION_PREVIOUS_AT_MOVEMENT_GRANULARITY; 9390*344a7f5eSAndroid Build Coastguard Worker field public static final android.support.v4.view.accessibility.AccessibilityNodeInfoCompat.AccessibilityActionCompat ACTION_PREVIOUS_HTML_ELEMENT; 9391*344a7f5eSAndroid Build Coastguard Worker field public static final android.support.v4.view.accessibility.AccessibilityNodeInfoCompat.AccessibilityActionCompat ACTION_SCROLL_BACKWARD; 9392*344a7f5eSAndroid Build Coastguard Worker field public static final android.support.v4.view.accessibility.AccessibilityNodeInfoCompat.AccessibilityActionCompat ACTION_SCROLL_DOWN; 9393*344a7f5eSAndroid Build Coastguard Worker field public static final android.support.v4.view.accessibility.AccessibilityNodeInfoCompat.AccessibilityActionCompat ACTION_SCROLL_FORWARD; 9394*344a7f5eSAndroid Build Coastguard Worker field public static final android.support.v4.view.accessibility.AccessibilityNodeInfoCompat.AccessibilityActionCompat ACTION_SCROLL_LEFT; 9395*344a7f5eSAndroid Build Coastguard Worker field public static final android.support.v4.view.accessibility.AccessibilityNodeInfoCompat.AccessibilityActionCompat ACTION_SCROLL_RIGHT; 9396*344a7f5eSAndroid Build Coastguard Worker field public static final android.support.v4.view.accessibility.AccessibilityNodeInfoCompat.AccessibilityActionCompat ACTION_SCROLL_TO_POSITION; 9397*344a7f5eSAndroid Build Coastguard Worker field public static final android.support.v4.view.accessibility.AccessibilityNodeInfoCompat.AccessibilityActionCompat ACTION_SCROLL_UP; 9398*344a7f5eSAndroid Build Coastguard Worker field public static final android.support.v4.view.accessibility.AccessibilityNodeInfoCompat.AccessibilityActionCompat ACTION_SELECT; 9399*344a7f5eSAndroid Build Coastguard Worker field public static final android.support.v4.view.accessibility.AccessibilityNodeInfoCompat.AccessibilityActionCompat ACTION_SET_PROGRESS; 9400*344a7f5eSAndroid Build Coastguard Worker field public static final android.support.v4.view.accessibility.AccessibilityNodeInfoCompat.AccessibilityActionCompat ACTION_SET_SELECTION; 9401*344a7f5eSAndroid Build Coastguard Worker field public static final android.support.v4.view.accessibility.AccessibilityNodeInfoCompat.AccessibilityActionCompat ACTION_SET_TEXT; 9402*344a7f5eSAndroid Build Coastguard Worker field public static final android.support.v4.view.accessibility.AccessibilityNodeInfoCompat.AccessibilityActionCompat ACTION_SHOW_ON_SCREEN; 9403*344a7f5eSAndroid Build Coastguard Worker } 9404*344a7f5eSAndroid Build Coastguard Worker 9405*344a7f5eSAndroid Build Coastguard Worker public static class AccessibilityNodeInfoCompat.CollectionInfoCompat { 9406*344a7f5eSAndroid Build Coastguard Worker method public int getColumnCount(); 9407*344a7f5eSAndroid Build Coastguard Worker method public int getRowCount(); 9408*344a7f5eSAndroid Build Coastguard Worker method public int getSelectionMode(); 9409*344a7f5eSAndroid Build Coastguard Worker method public boolean isHierarchical(); 9410*344a7f5eSAndroid Build Coastguard Worker method public static android.support.v4.view.accessibility.AccessibilityNodeInfoCompat.CollectionInfoCompat obtain(int, int, boolean, int); 9411*344a7f5eSAndroid Build Coastguard Worker method public static android.support.v4.view.accessibility.AccessibilityNodeInfoCompat.CollectionInfoCompat obtain(int, int, boolean); 9412*344a7f5eSAndroid Build Coastguard Worker field public static final int SELECTION_MODE_MULTIPLE = 2; // 0x2 9413*344a7f5eSAndroid Build Coastguard Worker field public static final int SELECTION_MODE_NONE = 0; // 0x0 9414*344a7f5eSAndroid Build Coastguard Worker field public static final int SELECTION_MODE_SINGLE = 1; // 0x1 9415*344a7f5eSAndroid Build Coastguard Worker } 9416*344a7f5eSAndroid Build Coastguard Worker 9417*344a7f5eSAndroid Build Coastguard Worker public static class AccessibilityNodeInfoCompat.CollectionItemInfoCompat { 9418*344a7f5eSAndroid Build Coastguard Worker method public int getColumnIndex(); 9419*344a7f5eSAndroid Build Coastguard Worker method public int getColumnSpan(); 9420*344a7f5eSAndroid Build Coastguard Worker method public int getRowIndex(); 9421*344a7f5eSAndroid Build Coastguard Worker method public int getRowSpan(); 9422*344a7f5eSAndroid Build Coastguard Worker method public boolean isHeading(); 9423*344a7f5eSAndroid Build Coastguard Worker method public boolean isSelected(); 9424*344a7f5eSAndroid Build Coastguard Worker method public static android.support.v4.view.accessibility.AccessibilityNodeInfoCompat.CollectionItemInfoCompat obtain(int, int, int, int, boolean, boolean); 9425*344a7f5eSAndroid Build Coastguard Worker method public static android.support.v4.view.accessibility.AccessibilityNodeInfoCompat.CollectionItemInfoCompat obtain(int, int, int, int, boolean); 9426*344a7f5eSAndroid Build Coastguard Worker } 9427*344a7f5eSAndroid Build Coastguard Worker 9428*344a7f5eSAndroid Build Coastguard Worker public static class AccessibilityNodeInfoCompat.RangeInfoCompat { 9429*344a7f5eSAndroid Build Coastguard Worker method public float getCurrent(); 9430*344a7f5eSAndroid Build Coastguard Worker method public float getMax(); 9431*344a7f5eSAndroid Build Coastguard Worker method public float getMin(); 9432*344a7f5eSAndroid Build Coastguard Worker method public int getType(); 9433*344a7f5eSAndroid Build Coastguard Worker method public static android.support.v4.view.accessibility.AccessibilityNodeInfoCompat.RangeInfoCompat obtain(int, float, float, float); 9434*344a7f5eSAndroid Build Coastguard Worker field public static final int RANGE_TYPE_FLOAT = 1; // 0x1 9435*344a7f5eSAndroid Build Coastguard Worker field public static final int RANGE_TYPE_INT = 0; // 0x0 9436*344a7f5eSAndroid Build Coastguard Worker field public static final int RANGE_TYPE_PERCENT = 2; // 0x2 9437*344a7f5eSAndroid Build Coastguard Worker } 9438*344a7f5eSAndroid Build Coastguard Worker 9439*344a7f5eSAndroid Build Coastguard Worker public class AccessibilityNodeProviderCompat { 9440*344a7f5eSAndroid Build Coastguard Worker ctor public AccessibilityNodeProviderCompat(); 9441*344a7f5eSAndroid Build Coastguard Worker ctor public AccessibilityNodeProviderCompat(java.lang.Object); 9442*344a7f5eSAndroid Build Coastguard Worker method public android.support.v4.view.accessibility.AccessibilityNodeInfoCompat createAccessibilityNodeInfo(int); 9443*344a7f5eSAndroid Build Coastguard Worker method public java.util.List<android.support.v4.view.accessibility.AccessibilityNodeInfoCompat> findAccessibilityNodeInfosByText(java.lang.String, int); 9444*344a7f5eSAndroid Build Coastguard Worker method public android.support.v4.view.accessibility.AccessibilityNodeInfoCompat findFocus(int); 9445*344a7f5eSAndroid Build Coastguard Worker method public java.lang.Object getProvider(); 9446*344a7f5eSAndroid Build Coastguard Worker method public boolean performAction(int, int, android.os.Bundle); 9447*344a7f5eSAndroid Build Coastguard Worker field public static final int HOST_VIEW_ID = -1; // 0xffffffff 9448*344a7f5eSAndroid Build Coastguard Worker } 9449*344a7f5eSAndroid Build Coastguard Worker 9450*344a7f5eSAndroid Build Coastguard Worker public class AccessibilityRecordCompat { 9451*344a7f5eSAndroid Build Coastguard Worker ctor public deprecated AccessibilityRecordCompat(java.lang.Object); 9452*344a7f5eSAndroid Build Coastguard Worker method public deprecated int getAddedCount(); 9453*344a7f5eSAndroid Build Coastguard Worker method public deprecated java.lang.CharSequence getBeforeText(); 9454*344a7f5eSAndroid Build Coastguard Worker method public deprecated java.lang.CharSequence getClassName(); 9455*344a7f5eSAndroid Build Coastguard Worker method public deprecated java.lang.CharSequence getContentDescription(); 9456*344a7f5eSAndroid Build Coastguard Worker method public deprecated int getCurrentItemIndex(); 9457*344a7f5eSAndroid Build Coastguard Worker method public deprecated int getFromIndex(); 9458*344a7f5eSAndroid Build Coastguard Worker method public deprecated java.lang.Object getImpl(); 9459*344a7f5eSAndroid Build Coastguard Worker method public deprecated int getItemCount(); 9460*344a7f5eSAndroid Build Coastguard Worker method public deprecated int getMaxScrollX(); 9461*344a7f5eSAndroid Build Coastguard Worker method public static int getMaxScrollX(android.view.accessibility.AccessibilityRecord); 9462*344a7f5eSAndroid Build Coastguard Worker method public deprecated int getMaxScrollY(); 9463*344a7f5eSAndroid Build Coastguard Worker method public static int getMaxScrollY(android.view.accessibility.AccessibilityRecord); 9464*344a7f5eSAndroid Build Coastguard Worker method public deprecated android.os.Parcelable getParcelableData(); 9465*344a7f5eSAndroid Build Coastguard Worker method public deprecated int getRemovedCount(); 9466*344a7f5eSAndroid Build Coastguard Worker method public deprecated int getScrollX(); 9467*344a7f5eSAndroid Build Coastguard Worker method public deprecated int getScrollY(); 9468*344a7f5eSAndroid Build Coastguard Worker method public deprecated android.support.v4.view.accessibility.AccessibilityNodeInfoCompat getSource(); 9469*344a7f5eSAndroid Build Coastguard Worker method public deprecated java.util.List<java.lang.CharSequence> getText(); 9470*344a7f5eSAndroid Build Coastguard Worker method public deprecated int getToIndex(); 9471*344a7f5eSAndroid Build Coastguard Worker method public deprecated int getWindowId(); 9472*344a7f5eSAndroid Build Coastguard Worker method public deprecated boolean isChecked(); 9473*344a7f5eSAndroid Build Coastguard Worker method public deprecated boolean isEnabled(); 9474*344a7f5eSAndroid Build Coastguard Worker method public deprecated boolean isFullScreen(); 9475*344a7f5eSAndroid Build Coastguard Worker method public deprecated boolean isPassword(); 9476*344a7f5eSAndroid Build Coastguard Worker method public deprecated boolean isScrollable(); 9477*344a7f5eSAndroid Build Coastguard Worker method public static deprecated android.support.v4.view.accessibility.AccessibilityRecordCompat obtain(android.support.v4.view.accessibility.AccessibilityRecordCompat); 9478*344a7f5eSAndroid Build Coastguard Worker method public static deprecated android.support.v4.view.accessibility.AccessibilityRecordCompat obtain(); 9479*344a7f5eSAndroid Build Coastguard Worker method public deprecated void recycle(); 9480*344a7f5eSAndroid Build Coastguard Worker method public deprecated void setAddedCount(int); 9481*344a7f5eSAndroid Build Coastguard Worker method public deprecated void setBeforeText(java.lang.CharSequence); 9482*344a7f5eSAndroid Build Coastguard Worker method public deprecated void setChecked(boolean); 9483*344a7f5eSAndroid Build Coastguard Worker method public deprecated void setClassName(java.lang.CharSequence); 9484*344a7f5eSAndroid Build Coastguard Worker method public deprecated void setContentDescription(java.lang.CharSequence); 9485*344a7f5eSAndroid Build Coastguard Worker method public deprecated void setCurrentItemIndex(int); 9486*344a7f5eSAndroid Build Coastguard Worker method public deprecated void setEnabled(boolean); 9487*344a7f5eSAndroid Build Coastguard Worker method public deprecated void setFromIndex(int); 9488*344a7f5eSAndroid Build Coastguard Worker method public deprecated void setFullScreen(boolean); 9489*344a7f5eSAndroid Build Coastguard Worker method public deprecated void setItemCount(int); 9490*344a7f5eSAndroid Build Coastguard Worker method public deprecated void setMaxScrollX(int); 9491*344a7f5eSAndroid Build Coastguard Worker method public static void setMaxScrollX(android.view.accessibility.AccessibilityRecord, int); 9492*344a7f5eSAndroid Build Coastguard Worker method public deprecated void setMaxScrollY(int); 9493*344a7f5eSAndroid Build Coastguard Worker method public static void setMaxScrollY(android.view.accessibility.AccessibilityRecord, int); 9494*344a7f5eSAndroid Build Coastguard Worker method public deprecated void setParcelableData(android.os.Parcelable); 9495*344a7f5eSAndroid Build Coastguard Worker method public deprecated void setPassword(boolean); 9496*344a7f5eSAndroid Build Coastguard Worker method public deprecated void setRemovedCount(int); 9497*344a7f5eSAndroid Build Coastguard Worker method public deprecated void setScrollX(int); 9498*344a7f5eSAndroid Build Coastguard Worker method public deprecated void setScrollY(int); 9499*344a7f5eSAndroid Build Coastguard Worker method public deprecated void setScrollable(boolean); 9500*344a7f5eSAndroid Build Coastguard Worker method public deprecated void setSource(android.view.View); 9501*344a7f5eSAndroid Build Coastguard Worker method public deprecated void setSource(android.view.View, int); 9502*344a7f5eSAndroid Build Coastguard Worker method public static void setSource(android.view.accessibility.AccessibilityRecord, android.view.View, int); 9503*344a7f5eSAndroid Build Coastguard Worker method public deprecated void setToIndex(int); 9504*344a7f5eSAndroid Build Coastguard Worker } 9505*344a7f5eSAndroid Build Coastguard Worker 9506*344a7f5eSAndroid Build Coastguard Worker public class AccessibilityWindowInfoCompat { 9507*344a7f5eSAndroid Build Coastguard Worker method public android.support.v4.view.accessibility.AccessibilityNodeInfoCompat getAnchor(); 9508*344a7f5eSAndroid Build Coastguard Worker method public void getBoundsInScreen(android.graphics.Rect); 9509*344a7f5eSAndroid Build Coastguard Worker method public android.support.v4.view.accessibility.AccessibilityWindowInfoCompat getChild(int); 9510*344a7f5eSAndroid Build Coastguard Worker method public int getChildCount(); 9511*344a7f5eSAndroid Build Coastguard Worker method public int getId(); 9512*344a7f5eSAndroid Build Coastguard Worker method public int getLayer(); 9513*344a7f5eSAndroid Build Coastguard Worker method public android.support.v4.view.accessibility.AccessibilityWindowInfoCompat getParent(); 9514*344a7f5eSAndroid Build Coastguard Worker method public android.support.v4.view.accessibility.AccessibilityNodeInfoCompat getRoot(); 9515*344a7f5eSAndroid Build Coastguard Worker method public java.lang.CharSequence getTitle(); 9516*344a7f5eSAndroid Build Coastguard Worker method public int getType(); 9517*344a7f5eSAndroid Build Coastguard Worker method public boolean isAccessibilityFocused(); 9518*344a7f5eSAndroid Build Coastguard Worker method public boolean isActive(); 9519*344a7f5eSAndroid Build Coastguard Worker method public boolean isFocused(); 9520*344a7f5eSAndroid Build Coastguard Worker method public static android.support.v4.view.accessibility.AccessibilityWindowInfoCompat obtain(); 9521*344a7f5eSAndroid Build Coastguard Worker method public static android.support.v4.view.accessibility.AccessibilityWindowInfoCompat obtain(android.support.v4.view.accessibility.AccessibilityWindowInfoCompat); 9522*344a7f5eSAndroid Build Coastguard Worker method public void recycle(); 9523*344a7f5eSAndroid Build Coastguard Worker field public static final int TYPE_ACCESSIBILITY_OVERLAY = 4; // 0x4 9524*344a7f5eSAndroid Build Coastguard Worker field public static final int TYPE_APPLICATION = 1; // 0x1 9525*344a7f5eSAndroid Build Coastguard Worker field public static final int TYPE_INPUT_METHOD = 2; // 0x2 9526*344a7f5eSAndroid Build Coastguard Worker field public static final int TYPE_SPLIT_SCREEN_DIVIDER = 5; // 0x5 9527*344a7f5eSAndroid Build Coastguard Worker field public static final int TYPE_SYSTEM = 3; // 0x3 9528*344a7f5eSAndroid Build Coastguard Worker } 9529*344a7f5eSAndroid Build Coastguard Worker 9530*344a7f5eSAndroid Build Coastguard Worker} 9531*344a7f5eSAndroid Build Coastguard Worker 9532*344a7f5eSAndroid Build Coastguard Workerpackage android.support.v4.view.animation { 9533*344a7f5eSAndroid Build Coastguard Worker 9534*344a7f5eSAndroid Build Coastguard Worker public class FastOutLinearInInterpolator extends android.support.v4.view.animation.LookupTableInterpolator { 9535*344a7f5eSAndroid Build Coastguard Worker ctor public FastOutLinearInInterpolator(); 9536*344a7f5eSAndroid Build Coastguard Worker } 9537*344a7f5eSAndroid Build Coastguard Worker 9538*344a7f5eSAndroid Build Coastguard Worker public class FastOutSlowInInterpolator extends android.support.v4.view.animation.LookupTableInterpolator { 9539*344a7f5eSAndroid Build Coastguard Worker ctor public FastOutSlowInInterpolator(); 9540*344a7f5eSAndroid Build Coastguard Worker } 9541*344a7f5eSAndroid Build Coastguard Worker 9542*344a7f5eSAndroid Build Coastguard Worker public class LinearOutSlowInInterpolator extends android.support.v4.view.animation.LookupTableInterpolator { 9543*344a7f5eSAndroid Build Coastguard Worker ctor public LinearOutSlowInInterpolator(); 9544*344a7f5eSAndroid Build Coastguard Worker } 9545*344a7f5eSAndroid Build Coastguard Worker 9546*344a7f5eSAndroid Build Coastguard Worker abstract class LookupTableInterpolator implements android.view.animation.Interpolator { 9547*344a7f5eSAndroid Build Coastguard Worker ctor public LookupTableInterpolator(float[]); 9548*344a7f5eSAndroid Build Coastguard Worker method public float getInterpolation(float); 9549*344a7f5eSAndroid Build Coastguard Worker } 9550*344a7f5eSAndroid Build Coastguard Worker 9551*344a7f5eSAndroid Build Coastguard Worker public final class PathInterpolatorCompat { 9552*344a7f5eSAndroid Build Coastguard Worker method public static android.view.animation.Interpolator create(android.graphics.Path); 9553*344a7f5eSAndroid Build Coastguard Worker method public static android.view.animation.Interpolator create(float, float); 9554*344a7f5eSAndroid Build Coastguard Worker method public static android.view.animation.Interpolator create(float, float, float, float); 9555*344a7f5eSAndroid Build Coastguard Worker } 9556*344a7f5eSAndroid Build Coastguard Worker 9557*344a7f5eSAndroid Build Coastguard Worker} 9558*344a7f5eSAndroid Build Coastguard Worker 9559*344a7f5eSAndroid Build Coastguard Workerpackage android.support.v4.widget { 9560*344a7f5eSAndroid Build Coastguard Worker 9561*344a7f5eSAndroid Build Coastguard Worker public abstract class AutoScrollHelper implements android.view.View.OnTouchListener { 9562*344a7f5eSAndroid Build Coastguard Worker ctor public AutoScrollHelper(android.view.View); 9563*344a7f5eSAndroid Build Coastguard Worker method public abstract boolean canTargetScrollHorizontally(int); 9564*344a7f5eSAndroid Build Coastguard Worker method public abstract boolean canTargetScrollVertically(int); 9565*344a7f5eSAndroid Build Coastguard Worker method public boolean isEnabled(); 9566*344a7f5eSAndroid Build Coastguard Worker method public boolean isExclusive(); 9567*344a7f5eSAndroid Build Coastguard Worker method public boolean onTouch(android.view.View, android.view.MotionEvent); 9568*344a7f5eSAndroid Build Coastguard Worker method public abstract void scrollTargetBy(int, int); 9569*344a7f5eSAndroid Build Coastguard Worker method public android.support.v4.widget.AutoScrollHelper setActivationDelay(int); 9570*344a7f5eSAndroid Build Coastguard Worker method public android.support.v4.widget.AutoScrollHelper setEdgeType(int); 9571*344a7f5eSAndroid Build Coastguard Worker method public android.support.v4.widget.AutoScrollHelper setEnabled(boolean); 9572*344a7f5eSAndroid Build Coastguard Worker method public android.support.v4.widget.AutoScrollHelper setExclusive(boolean); 9573*344a7f5eSAndroid Build Coastguard Worker method public android.support.v4.widget.AutoScrollHelper setMaximumEdges(float, float); 9574*344a7f5eSAndroid Build Coastguard Worker method public android.support.v4.widget.AutoScrollHelper setMaximumVelocity(float, float); 9575*344a7f5eSAndroid Build Coastguard Worker method public android.support.v4.widget.AutoScrollHelper setMinimumVelocity(float, float); 9576*344a7f5eSAndroid Build Coastguard Worker method public android.support.v4.widget.AutoScrollHelper setRampDownDuration(int); 9577*344a7f5eSAndroid Build Coastguard Worker method public android.support.v4.widget.AutoScrollHelper setRampUpDuration(int); 9578*344a7f5eSAndroid Build Coastguard Worker method public android.support.v4.widget.AutoScrollHelper setRelativeEdges(float, float); 9579*344a7f5eSAndroid Build Coastguard Worker method public android.support.v4.widget.AutoScrollHelper setRelativeVelocity(float, float); 9580*344a7f5eSAndroid Build Coastguard Worker field public static final int EDGE_TYPE_INSIDE = 0; // 0x0 9581*344a7f5eSAndroid Build Coastguard Worker field public static final int EDGE_TYPE_INSIDE_EXTEND = 1; // 0x1 9582*344a7f5eSAndroid Build Coastguard Worker field public static final int EDGE_TYPE_OUTSIDE = 2; // 0x2 9583*344a7f5eSAndroid Build Coastguard Worker field public static final float NO_MAX = 3.4028235E38f; 9584*344a7f5eSAndroid Build Coastguard Worker field public static final float NO_MIN = 0.0f; 9585*344a7f5eSAndroid Build Coastguard Worker field public static final float RELATIVE_UNSPECIFIED = 0.0f; 9586*344a7f5eSAndroid Build Coastguard Worker } 9587*344a7f5eSAndroid Build Coastguard Worker 9588*344a7f5eSAndroid Build Coastguard Worker public final class CompoundButtonCompat { 9589*344a7f5eSAndroid Build Coastguard Worker method public static android.graphics.drawable.Drawable getButtonDrawable(android.widget.CompoundButton); 9590*344a7f5eSAndroid Build Coastguard Worker method public static android.content.res.ColorStateList getButtonTintList(android.widget.CompoundButton); 9591*344a7f5eSAndroid Build Coastguard Worker method public static android.graphics.PorterDuff.Mode getButtonTintMode(android.widget.CompoundButton); 9592*344a7f5eSAndroid Build Coastguard Worker method public static void setButtonTintList(android.widget.CompoundButton, android.content.res.ColorStateList); 9593*344a7f5eSAndroid Build Coastguard Worker method public static void setButtonTintMode(android.widget.CompoundButton, android.graphics.PorterDuff.Mode); 9594*344a7f5eSAndroid Build Coastguard Worker } 9595*344a7f5eSAndroid Build Coastguard Worker 9596*344a7f5eSAndroid Build Coastguard Worker public class ContentLoadingProgressBar extends android.widget.ProgressBar { 9597*344a7f5eSAndroid Build Coastguard Worker ctor public ContentLoadingProgressBar(android.content.Context); 9598*344a7f5eSAndroid Build Coastguard Worker ctor public ContentLoadingProgressBar(android.content.Context, android.util.AttributeSet); 9599*344a7f5eSAndroid Build Coastguard Worker method public void hide(); 9600*344a7f5eSAndroid Build Coastguard Worker method public void onAttachedToWindow(); 9601*344a7f5eSAndroid Build Coastguard Worker method public void onDetachedFromWindow(); 9602*344a7f5eSAndroid Build Coastguard Worker method public void show(); 9603*344a7f5eSAndroid Build Coastguard Worker } 9604*344a7f5eSAndroid Build Coastguard Worker 9605*344a7f5eSAndroid Build Coastguard Worker public abstract class CursorAdapter extends android.widget.BaseAdapter { 9606*344a7f5eSAndroid Build Coastguard Worker ctor public deprecated CursorAdapter(android.content.Context, android.database.Cursor); 9607*344a7f5eSAndroid Build Coastguard Worker ctor public CursorAdapter(android.content.Context, android.database.Cursor, boolean); 9608*344a7f5eSAndroid Build Coastguard Worker ctor public CursorAdapter(android.content.Context, android.database.Cursor, int); 9609*344a7f5eSAndroid Build Coastguard Worker method public abstract void bindView(android.view.View, android.content.Context, android.database.Cursor); 9610*344a7f5eSAndroid Build Coastguard Worker method public void changeCursor(android.database.Cursor); 9611*344a7f5eSAndroid Build Coastguard Worker method public java.lang.CharSequence convertToString(android.database.Cursor); 9612*344a7f5eSAndroid Build Coastguard Worker method public int getCount(); 9613*344a7f5eSAndroid Build Coastguard Worker method public android.database.Cursor getCursor(); 9614*344a7f5eSAndroid Build Coastguard Worker method public android.widget.Filter getFilter(); 9615*344a7f5eSAndroid Build Coastguard Worker method public android.widget.FilterQueryProvider getFilterQueryProvider(); 9616*344a7f5eSAndroid Build Coastguard Worker method public java.lang.Object getItem(int); 9617*344a7f5eSAndroid Build Coastguard Worker method public long getItemId(int); 9618*344a7f5eSAndroid Build Coastguard Worker method public android.view.View getView(int, android.view.View, android.view.ViewGroup); 9619*344a7f5eSAndroid Build Coastguard Worker method protected deprecated void init(android.content.Context, android.database.Cursor, boolean); 9620*344a7f5eSAndroid Build Coastguard Worker method public android.view.View newDropDownView(android.content.Context, android.database.Cursor, android.view.ViewGroup); 9621*344a7f5eSAndroid Build Coastguard Worker method public abstract android.view.View newView(android.content.Context, android.database.Cursor, android.view.ViewGroup); 9622*344a7f5eSAndroid Build Coastguard Worker method protected void onContentChanged(); 9623*344a7f5eSAndroid Build Coastguard Worker method public android.database.Cursor runQueryOnBackgroundThread(java.lang.CharSequence); 9624*344a7f5eSAndroid Build Coastguard Worker method public void setFilterQueryProvider(android.widget.FilterQueryProvider); 9625*344a7f5eSAndroid Build Coastguard Worker method public android.database.Cursor swapCursor(android.database.Cursor); 9626*344a7f5eSAndroid Build Coastguard Worker field public static final deprecated int FLAG_AUTO_REQUERY = 1; // 0x1 9627*344a7f5eSAndroid Build Coastguard Worker field public static final int FLAG_REGISTER_CONTENT_OBSERVER = 2; // 0x2 9628*344a7f5eSAndroid Build Coastguard Worker } 9629*344a7f5eSAndroid Build Coastguard Worker 9630*344a7f5eSAndroid Build Coastguard Worker public class DrawerLayout extends android.view.ViewGroup { 9631*344a7f5eSAndroid Build Coastguard Worker ctor public DrawerLayout(android.content.Context); 9632*344a7f5eSAndroid Build Coastguard Worker ctor public DrawerLayout(android.content.Context, android.util.AttributeSet); 9633*344a7f5eSAndroid Build Coastguard Worker ctor public DrawerLayout(android.content.Context, android.util.AttributeSet, int); 9634*344a7f5eSAndroid Build Coastguard Worker method public void addDrawerListener(android.support.v4.widget.DrawerLayout.DrawerListener); 9635*344a7f5eSAndroid Build Coastguard Worker method public void closeDrawer(android.view.View); 9636*344a7f5eSAndroid Build Coastguard Worker method public void closeDrawer(android.view.View, boolean); 9637*344a7f5eSAndroid Build Coastguard Worker method public void closeDrawer(int); 9638*344a7f5eSAndroid Build Coastguard Worker method public void closeDrawer(int, boolean); 9639*344a7f5eSAndroid Build Coastguard Worker method public void closeDrawers(); 9640*344a7f5eSAndroid Build Coastguard Worker method public float getDrawerElevation(); 9641*344a7f5eSAndroid Build Coastguard Worker method public int getDrawerLockMode(int); 9642*344a7f5eSAndroid Build Coastguard Worker method public int getDrawerLockMode(android.view.View); 9643*344a7f5eSAndroid Build Coastguard Worker method public java.lang.CharSequence getDrawerTitle(int); 9644*344a7f5eSAndroid Build Coastguard Worker method public android.graphics.drawable.Drawable getStatusBarBackgroundDrawable(); 9645*344a7f5eSAndroid Build Coastguard Worker method public boolean isDrawerOpen(android.view.View); 9646*344a7f5eSAndroid Build Coastguard Worker method public boolean isDrawerOpen(int); 9647*344a7f5eSAndroid Build Coastguard Worker method public boolean isDrawerVisible(android.view.View); 9648*344a7f5eSAndroid Build Coastguard Worker method public boolean isDrawerVisible(int); 9649*344a7f5eSAndroid Build Coastguard Worker method public void onDraw(android.graphics.Canvas); 9650*344a7f5eSAndroid Build Coastguard Worker method protected void onLayout(boolean, int, int, int, int); 9651*344a7f5eSAndroid Build Coastguard Worker method public void openDrawer(android.view.View); 9652*344a7f5eSAndroid Build Coastguard Worker method public void openDrawer(android.view.View, boolean); 9653*344a7f5eSAndroid Build Coastguard Worker method public void openDrawer(int); 9654*344a7f5eSAndroid Build Coastguard Worker method public void openDrawer(int, boolean); 9655*344a7f5eSAndroid Build Coastguard Worker method public void removeDrawerListener(android.support.v4.widget.DrawerLayout.DrawerListener); 9656*344a7f5eSAndroid Build Coastguard Worker method public void setDrawerElevation(float); 9657*344a7f5eSAndroid Build Coastguard Worker method public deprecated void setDrawerListener(android.support.v4.widget.DrawerLayout.DrawerListener); 9658*344a7f5eSAndroid Build Coastguard Worker method public void setDrawerLockMode(int); 9659*344a7f5eSAndroid Build Coastguard Worker method public void setDrawerLockMode(int, int); 9660*344a7f5eSAndroid Build Coastguard Worker method public void setDrawerLockMode(int, android.view.View); 9661*344a7f5eSAndroid Build Coastguard Worker method public void setDrawerShadow(android.graphics.drawable.Drawable, int); 9662*344a7f5eSAndroid Build Coastguard Worker method public void setDrawerShadow(int, int); 9663*344a7f5eSAndroid Build Coastguard Worker method public void setDrawerTitle(int, java.lang.CharSequence); 9664*344a7f5eSAndroid Build Coastguard Worker method public void setScrimColor(int); 9665*344a7f5eSAndroid Build Coastguard Worker method public void setStatusBarBackground(android.graphics.drawable.Drawable); 9666*344a7f5eSAndroid Build Coastguard Worker method public void setStatusBarBackground(int); 9667*344a7f5eSAndroid Build Coastguard Worker method public void setStatusBarBackgroundColor(int); 9668*344a7f5eSAndroid Build Coastguard Worker field public static final int LOCK_MODE_LOCKED_CLOSED = 1; // 0x1 9669*344a7f5eSAndroid Build Coastguard Worker field public static final int LOCK_MODE_LOCKED_OPEN = 2; // 0x2 9670*344a7f5eSAndroid Build Coastguard Worker field public static final int LOCK_MODE_UNDEFINED = 3; // 0x3 9671*344a7f5eSAndroid Build Coastguard Worker field public static final int LOCK_MODE_UNLOCKED = 0; // 0x0 9672*344a7f5eSAndroid Build Coastguard Worker field public static final int STATE_DRAGGING = 1; // 0x1 9673*344a7f5eSAndroid Build Coastguard Worker field public static final int STATE_IDLE = 0; // 0x0 9674*344a7f5eSAndroid Build Coastguard Worker field public static final int STATE_SETTLING = 2; // 0x2 9675*344a7f5eSAndroid Build Coastguard Worker } 9676*344a7f5eSAndroid Build Coastguard Worker 9677*344a7f5eSAndroid Build Coastguard Worker public static abstract interface DrawerLayout.DrawerListener { 9678*344a7f5eSAndroid Build Coastguard Worker method public abstract void onDrawerClosed(android.view.View); 9679*344a7f5eSAndroid Build Coastguard Worker method public abstract void onDrawerOpened(android.view.View); 9680*344a7f5eSAndroid Build Coastguard Worker method public abstract void onDrawerSlide(android.view.View, float); 9681*344a7f5eSAndroid Build Coastguard Worker method public abstract void onDrawerStateChanged(int); 9682*344a7f5eSAndroid Build Coastguard Worker } 9683*344a7f5eSAndroid Build Coastguard Worker 9684*344a7f5eSAndroid Build Coastguard Worker public static class DrawerLayout.LayoutParams extends android.view.ViewGroup.MarginLayoutParams { 9685*344a7f5eSAndroid Build Coastguard Worker ctor public DrawerLayout.LayoutParams(android.content.Context, android.util.AttributeSet); 9686*344a7f5eSAndroid Build Coastguard Worker ctor public DrawerLayout.LayoutParams(int, int); 9687*344a7f5eSAndroid Build Coastguard Worker ctor public DrawerLayout.LayoutParams(int, int, int); 9688*344a7f5eSAndroid Build Coastguard Worker ctor public DrawerLayout.LayoutParams(android.support.v4.widget.DrawerLayout.LayoutParams); 9689*344a7f5eSAndroid Build Coastguard Worker ctor public DrawerLayout.LayoutParams(android.view.ViewGroup.LayoutParams); 9690*344a7f5eSAndroid Build Coastguard Worker ctor public DrawerLayout.LayoutParams(android.view.ViewGroup.MarginLayoutParams); 9691*344a7f5eSAndroid Build Coastguard Worker field public int gravity; 9692*344a7f5eSAndroid Build Coastguard Worker } 9693*344a7f5eSAndroid Build Coastguard Worker 9694*344a7f5eSAndroid Build Coastguard Worker protected static class DrawerLayout.SavedState extends android.support.v4.view.AbsSavedState { 9695*344a7f5eSAndroid Build Coastguard Worker ctor public DrawerLayout.SavedState(android.os.Parcel, java.lang.ClassLoader); 9696*344a7f5eSAndroid Build Coastguard Worker ctor public DrawerLayout.SavedState(android.os.Parcelable); 9697*344a7f5eSAndroid Build Coastguard Worker field public static final android.os.Parcelable.Creator<android.support.v4.widget.DrawerLayout.SavedState> CREATOR; 9698*344a7f5eSAndroid Build Coastguard Worker } 9699*344a7f5eSAndroid Build Coastguard Worker 9700*344a7f5eSAndroid Build Coastguard Worker public static abstract class DrawerLayout.SimpleDrawerListener implements android.support.v4.widget.DrawerLayout.DrawerListener { 9701*344a7f5eSAndroid Build Coastguard Worker ctor public DrawerLayout.SimpleDrawerListener(); 9702*344a7f5eSAndroid Build Coastguard Worker method public void onDrawerClosed(android.view.View); 9703*344a7f5eSAndroid Build Coastguard Worker method public void onDrawerOpened(android.view.View); 9704*344a7f5eSAndroid Build Coastguard Worker method public void onDrawerSlide(android.view.View, float); 9705*344a7f5eSAndroid Build Coastguard Worker method public void onDrawerStateChanged(int); 9706*344a7f5eSAndroid Build Coastguard Worker } 9707*344a7f5eSAndroid Build Coastguard Worker 9708*344a7f5eSAndroid Build Coastguard Worker public final class EdgeEffectCompat { 9709*344a7f5eSAndroid Build Coastguard Worker ctor public deprecated EdgeEffectCompat(android.content.Context); 9710*344a7f5eSAndroid Build Coastguard Worker method public deprecated boolean draw(android.graphics.Canvas); 9711*344a7f5eSAndroid Build Coastguard Worker method public deprecated void finish(); 9712*344a7f5eSAndroid Build Coastguard Worker method public deprecated boolean isFinished(); 9713*344a7f5eSAndroid Build Coastguard Worker method public deprecated boolean onAbsorb(int); 9714*344a7f5eSAndroid Build Coastguard Worker method public deprecated boolean onPull(float); 9715*344a7f5eSAndroid Build Coastguard Worker method public deprecated boolean onPull(float, float); 9716*344a7f5eSAndroid Build Coastguard Worker method public static void onPull(android.widget.EdgeEffect, float, float); 9717*344a7f5eSAndroid Build Coastguard Worker method public deprecated boolean onRelease(); 9718*344a7f5eSAndroid Build Coastguard Worker method public deprecated void setSize(int, int); 9719*344a7f5eSAndroid Build Coastguard Worker } 9720*344a7f5eSAndroid Build Coastguard Worker 9721*344a7f5eSAndroid Build Coastguard Worker public abstract class ExploreByTouchHelper extends android.support.v4.view.AccessibilityDelegateCompat { 9722*344a7f5eSAndroid Build Coastguard Worker ctor public ExploreByTouchHelper(android.view.View); 9723*344a7f5eSAndroid Build Coastguard Worker method public final boolean clearKeyboardFocusForVirtualView(int); 9724*344a7f5eSAndroid Build Coastguard Worker method public final boolean dispatchHoverEvent(android.view.MotionEvent); 9725*344a7f5eSAndroid Build Coastguard Worker method public final boolean dispatchKeyEvent(android.view.KeyEvent); 9726*344a7f5eSAndroid Build Coastguard Worker method public final int getAccessibilityFocusedVirtualViewId(); 9727*344a7f5eSAndroid Build Coastguard Worker method public deprecated int getFocusedVirtualView(); 9728*344a7f5eSAndroid Build Coastguard Worker method public final int getKeyboardFocusedVirtualViewId(); 9729*344a7f5eSAndroid Build Coastguard Worker method protected abstract int getVirtualViewAt(float, float); 9730*344a7f5eSAndroid Build Coastguard Worker method protected abstract void getVisibleVirtualViews(java.util.List<java.lang.Integer>); 9731*344a7f5eSAndroid Build Coastguard Worker method public final void invalidateRoot(); 9732*344a7f5eSAndroid Build Coastguard Worker method public final void invalidateVirtualView(int); 9733*344a7f5eSAndroid Build Coastguard Worker method public final void invalidateVirtualView(int, int); 9734*344a7f5eSAndroid Build Coastguard Worker method public final void onFocusChanged(boolean, int, android.graphics.Rect); 9735*344a7f5eSAndroid Build Coastguard Worker method protected abstract boolean onPerformActionForVirtualView(int, int, android.os.Bundle); 9736*344a7f5eSAndroid Build Coastguard Worker method protected void onPopulateEventForHost(android.view.accessibility.AccessibilityEvent); 9737*344a7f5eSAndroid Build Coastguard Worker method protected void onPopulateEventForVirtualView(int, android.view.accessibility.AccessibilityEvent); 9738*344a7f5eSAndroid Build Coastguard Worker method protected void onPopulateNodeForHost(android.support.v4.view.accessibility.AccessibilityNodeInfoCompat); 9739*344a7f5eSAndroid Build Coastguard Worker method protected abstract void onPopulateNodeForVirtualView(int, android.support.v4.view.accessibility.AccessibilityNodeInfoCompat); 9740*344a7f5eSAndroid Build Coastguard Worker method protected void onVirtualViewKeyboardFocusChanged(int, boolean); 9741*344a7f5eSAndroid Build Coastguard Worker method public final boolean requestKeyboardFocusForVirtualView(int); 9742*344a7f5eSAndroid Build Coastguard Worker method public final boolean sendEventForVirtualView(int, int); 9743*344a7f5eSAndroid Build Coastguard Worker field public static final int HOST_ID = -1; // 0xffffffff 9744*344a7f5eSAndroid Build Coastguard Worker field public static final int INVALID_ID = -2147483648; // 0x80000000 9745*344a7f5eSAndroid Build Coastguard Worker } 9746*344a7f5eSAndroid Build Coastguard Worker 9747*344a7f5eSAndroid Build Coastguard Worker public class ImageViewCompat { 9748*344a7f5eSAndroid Build Coastguard Worker method public static android.content.res.ColorStateList getImageTintList(android.widget.ImageView); 9749*344a7f5eSAndroid Build Coastguard Worker method public static android.graphics.PorterDuff.Mode getImageTintMode(android.widget.ImageView); 9750*344a7f5eSAndroid Build Coastguard Worker method public static void setImageTintList(android.widget.ImageView, android.content.res.ColorStateList); 9751*344a7f5eSAndroid Build Coastguard Worker method public static void setImageTintMode(android.widget.ImageView, android.graphics.PorterDuff.Mode); 9752*344a7f5eSAndroid Build Coastguard Worker } 9753*344a7f5eSAndroid Build Coastguard Worker 9754*344a7f5eSAndroid Build Coastguard Worker public final class ListPopupWindowCompat { 9755*344a7f5eSAndroid Build Coastguard Worker method public static deprecated android.view.View.OnTouchListener createDragToOpenListener(java.lang.Object, android.view.View); 9756*344a7f5eSAndroid Build Coastguard Worker method public static android.view.View.OnTouchListener createDragToOpenListener(android.widget.ListPopupWindow, android.view.View); 9757*344a7f5eSAndroid Build Coastguard Worker } 9758*344a7f5eSAndroid Build Coastguard Worker 9759*344a7f5eSAndroid Build Coastguard Worker public class ListViewAutoScrollHelper extends android.support.v4.widget.AutoScrollHelper { 9760*344a7f5eSAndroid Build Coastguard Worker ctor public ListViewAutoScrollHelper(android.widget.ListView); 9761*344a7f5eSAndroid Build Coastguard Worker method public boolean canTargetScrollHorizontally(int); 9762*344a7f5eSAndroid Build Coastguard Worker method public boolean canTargetScrollVertically(int); 9763*344a7f5eSAndroid Build Coastguard Worker method public void scrollTargetBy(int, int); 9764*344a7f5eSAndroid Build Coastguard Worker } 9765*344a7f5eSAndroid Build Coastguard Worker 9766*344a7f5eSAndroid Build Coastguard Worker public final class ListViewCompat { 9767*344a7f5eSAndroid Build Coastguard Worker method public static boolean canScrollList(android.widget.ListView, int); 9768*344a7f5eSAndroid Build Coastguard Worker method public static void scrollListBy(android.widget.ListView, int); 9769*344a7f5eSAndroid Build Coastguard Worker } 9770*344a7f5eSAndroid Build Coastguard Worker 9771*344a7f5eSAndroid Build Coastguard Worker public class NestedScrollView extends android.widget.FrameLayout implements android.support.v4.view.NestedScrollingChild2 android.support.v4.view.NestedScrollingParent android.support.v4.view.ScrollingView { 9772*344a7f5eSAndroid Build Coastguard Worker ctor public NestedScrollView(android.content.Context); 9773*344a7f5eSAndroid Build Coastguard Worker ctor public NestedScrollView(android.content.Context, android.util.AttributeSet); 9774*344a7f5eSAndroid Build Coastguard Worker ctor public NestedScrollView(android.content.Context, android.util.AttributeSet, int); 9775*344a7f5eSAndroid Build Coastguard Worker method public boolean arrowScroll(int); 9776*344a7f5eSAndroid Build Coastguard Worker method protected int computeScrollDeltaToGetChildRectOnScreen(android.graphics.Rect); 9777*344a7f5eSAndroid Build Coastguard Worker method public boolean dispatchNestedPreScroll(int, int, int[], int[], int); 9778*344a7f5eSAndroid Build Coastguard Worker method public boolean dispatchNestedScroll(int, int, int, int, int[], int); 9779*344a7f5eSAndroid Build Coastguard Worker method public boolean executeKeyEvent(android.view.KeyEvent); 9780*344a7f5eSAndroid Build Coastguard Worker method public void fling(int); 9781*344a7f5eSAndroid Build Coastguard Worker method public boolean fullScroll(int); 9782*344a7f5eSAndroid Build Coastguard Worker method public int getMaxScrollAmount(); 9783*344a7f5eSAndroid Build Coastguard Worker method public boolean hasNestedScrollingParent(int); 9784*344a7f5eSAndroid Build Coastguard Worker method public boolean isFillViewport(); 9785*344a7f5eSAndroid Build Coastguard Worker method public boolean isSmoothScrollingEnabled(); 9786*344a7f5eSAndroid Build Coastguard Worker method public void onAttachedToWindow(); 9787*344a7f5eSAndroid Build Coastguard Worker method public boolean pageScroll(int); 9788*344a7f5eSAndroid Build Coastguard Worker method public void setFillViewport(boolean); 9789*344a7f5eSAndroid Build Coastguard Worker method public void setOnScrollChangeListener(android.support.v4.widget.NestedScrollView.OnScrollChangeListener); 9790*344a7f5eSAndroid Build Coastguard Worker method public void setSmoothScrollingEnabled(boolean); 9791*344a7f5eSAndroid Build Coastguard Worker method public final void smoothScrollBy(int, int); 9792*344a7f5eSAndroid Build Coastguard Worker method public final void smoothScrollTo(int, int); 9793*344a7f5eSAndroid Build Coastguard Worker method public boolean startNestedScroll(int, int); 9794*344a7f5eSAndroid Build Coastguard Worker method public void stopNestedScroll(int); 9795*344a7f5eSAndroid Build Coastguard Worker } 9796*344a7f5eSAndroid Build Coastguard Worker 9797*344a7f5eSAndroid Build Coastguard Worker public static abstract interface NestedScrollView.OnScrollChangeListener { 9798*344a7f5eSAndroid Build Coastguard Worker method public abstract void onScrollChange(android.support.v4.widget.NestedScrollView, int, int, int, int); 9799*344a7f5eSAndroid Build Coastguard Worker } 9800*344a7f5eSAndroid Build Coastguard Worker 9801*344a7f5eSAndroid Build Coastguard Worker public final class PopupMenuCompat { 9802*344a7f5eSAndroid Build Coastguard Worker method public static android.view.View.OnTouchListener getDragToOpenListener(java.lang.Object); 9803*344a7f5eSAndroid Build Coastguard Worker } 9804*344a7f5eSAndroid Build Coastguard Worker 9805*344a7f5eSAndroid Build Coastguard Worker public final class PopupWindowCompat { 9806*344a7f5eSAndroid Build Coastguard Worker method public static boolean getOverlapAnchor(android.widget.PopupWindow); 9807*344a7f5eSAndroid Build Coastguard Worker method public static int getWindowLayoutType(android.widget.PopupWindow); 9808*344a7f5eSAndroid Build Coastguard Worker method public static void setOverlapAnchor(android.widget.PopupWindow, boolean); 9809*344a7f5eSAndroid Build Coastguard Worker method public static void setWindowLayoutType(android.widget.PopupWindow, int); 9810*344a7f5eSAndroid Build Coastguard Worker method public static void showAsDropDown(android.widget.PopupWindow, android.view.View, int, int, int); 9811*344a7f5eSAndroid Build Coastguard Worker } 9812*344a7f5eSAndroid Build Coastguard Worker 9813*344a7f5eSAndroid Build Coastguard Worker public abstract class ResourceCursorAdapter extends android.support.v4.widget.CursorAdapter { 9814*344a7f5eSAndroid Build Coastguard Worker ctor public deprecated ResourceCursorAdapter(android.content.Context, int, android.database.Cursor); 9815*344a7f5eSAndroid Build Coastguard Worker ctor public deprecated ResourceCursorAdapter(android.content.Context, int, android.database.Cursor, boolean); 9816*344a7f5eSAndroid Build Coastguard Worker ctor public ResourceCursorAdapter(android.content.Context, int, android.database.Cursor, int); 9817*344a7f5eSAndroid Build Coastguard Worker method public android.view.View newView(android.content.Context, android.database.Cursor, android.view.ViewGroup); 9818*344a7f5eSAndroid Build Coastguard Worker method public void setDropDownViewResource(int); 9819*344a7f5eSAndroid Build Coastguard Worker method public void setViewResource(int); 9820*344a7f5eSAndroid Build Coastguard Worker } 9821*344a7f5eSAndroid Build Coastguard Worker 9822*344a7f5eSAndroid Build Coastguard Worker public final deprecated class ScrollerCompat { 9823*344a7f5eSAndroid Build Coastguard Worker method public deprecated void abortAnimation(); 9824*344a7f5eSAndroid Build Coastguard Worker method public deprecated boolean computeScrollOffset(); 9825*344a7f5eSAndroid Build Coastguard Worker method public static deprecated android.support.v4.widget.ScrollerCompat create(android.content.Context); 9826*344a7f5eSAndroid Build Coastguard Worker method public static deprecated android.support.v4.widget.ScrollerCompat create(android.content.Context, android.view.animation.Interpolator); 9827*344a7f5eSAndroid Build Coastguard Worker method public deprecated void fling(int, int, int, int, int, int, int, int); 9828*344a7f5eSAndroid Build Coastguard Worker method public deprecated void fling(int, int, int, int, int, int, int, int, int, int); 9829*344a7f5eSAndroid Build Coastguard Worker method public deprecated float getCurrVelocity(); 9830*344a7f5eSAndroid Build Coastguard Worker method public deprecated int getCurrX(); 9831*344a7f5eSAndroid Build Coastguard Worker method public deprecated int getCurrY(); 9832*344a7f5eSAndroid Build Coastguard Worker method public deprecated int getFinalX(); 9833*344a7f5eSAndroid Build Coastguard Worker method public deprecated int getFinalY(); 9834*344a7f5eSAndroid Build Coastguard Worker method public deprecated boolean isFinished(); 9835*344a7f5eSAndroid Build Coastguard Worker method public deprecated boolean isOverScrolled(); 9836*344a7f5eSAndroid Build Coastguard Worker method public deprecated void notifyHorizontalEdgeReached(int, int, int); 9837*344a7f5eSAndroid Build Coastguard Worker method public deprecated void notifyVerticalEdgeReached(int, int, int); 9838*344a7f5eSAndroid Build Coastguard Worker method public deprecated boolean springBack(int, int, int, int, int, int); 9839*344a7f5eSAndroid Build Coastguard Worker method public deprecated void startScroll(int, int, int, int); 9840*344a7f5eSAndroid Build Coastguard Worker method public deprecated void startScroll(int, int, int, int, int); 9841*344a7f5eSAndroid Build Coastguard Worker } 9842*344a7f5eSAndroid Build Coastguard Worker 9843*344a7f5eSAndroid Build Coastguard Worker public final deprecated class SearchViewCompat { 9844*344a7f5eSAndroid Build Coastguard Worker method public static deprecated java.lang.CharSequence getQuery(android.view.View); 9845*344a7f5eSAndroid Build Coastguard Worker method public static deprecated boolean isIconified(android.view.View); 9846*344a7f5eSAndroid Build Coastguard Worker method public static deprecated boolean isQueryRefinementEnabled(android.view.View); 9847*344a7f5eSAndroid Build Coastguard Worker method public static deprecated boolean isSubmitButtonEnabled(android.view.View); 9848*344a7f5eSAndroid Build Coastguard Worker method public static deprecated android.view.View newSearchView(android.content.Context); 9849*344a7f5eSAndroid Build Coastguard Worker method public static deprecated void setIconified(android.view.View, boolean); 9850*344a7f5eSAndroid Build Coastguard Worker method public static deprecated void setImeOptions(android.view.View, int); 9851*344a7f5eSAndroid Build Coastguard Worker method public static deprecated void setInputType(android.view.View, int); 9852*344a7f5eSAndroid Build Coastguard Worker method public static deprecated void setMaxWidth(android.view.View, int); 9853*344a7f5eSAndroid Build Coastguard Worker method public static deprecated void setOnCloseListener(android.view.View, android.support.v4.widget.SearchViewCompat.OnCloseListener); 9854*344a7f5eSAndroid Build Coastguard Worker method public static deprecated void setOnQueryTextListener(android.view.View, android.support.v4.widget.SearchViewCompat.OnQueryTextListener); 9855*344a7f5eSAndroid Build Coastguard Worker method public static deprecated void setQuery(android.view.View, java.lang.CharSequence, boolean); 9856*344a7f5eSAndroid Build Coastguard Worker method public static deprecated void setQueryHint(android.view.View, java.lang.CharSequence); 9857*344a7f5eSAndroid Build Coastguard Worker method public static deprecated void setQueryRefinementEnabled(android.view.View, boolean); 9858*344a7f5eSAndroid Build Coastguard Worker method public static deprecated void setSearchableInfo(android.view.View, android.content.ComponentName); 9859*344a7f5eSAndroid Build Coastguard Worker method public static deprecated void setSubmitButtonEnabled(android.view.View, boolean); 9860*344a7f5eSAndroid Build Coastguard Worker } 9861*344a7f5eSAndroid Build Coastguard Worker 9862*344a7f5eSAndroid Build Coastguard Worker public static abstract deprecated interface SearchViewCompat.OnCloseListener { 9863*344a7f5eSAndroid Build Coastguard Worker method public abstract boolean onClose(); 9864*344a7f5eSAndroid Build Coastguard Worker } 9865*344a7f5eSAndroid Build Coastguard Worker 9866*344a7f5eSAndroid Build Coastguard Worker public static abstract deprecated class SearchViewCompat.OnCloseListenerCompat implements android.support.v4.widget.SearchViewCompat.OnCloseListener { 9867*344a7f5eSAndroid Build Coastguard Worker ctor public SearchViewCompat.OnCloseListenerCompat(); 9868*344a7f5eSAndroid Build Coastguard Worker method public boolean onClose(); 9869*344a7f5eSAndroid Build Coastguard Worker } 9870*344a7f5eSAndroid Build Coastguard Worker 9871*344a7f5eSAndroid Build Coastguard Worker public static abstract deprecated interface SearchViewCompat.OnQueryTextListener { 9872*344a7f5eSAndroid Build Coastguard Worker method public abstract boolean onQueryTextChange(java.lang.String); 9873*344a7f5eSAndroid Build Coastguard Worker method public abstract boolean onQueryTextSubmit(java.lang.String); 9874*344a7f5eSAndroid Build Coastguard Worker } 9875*344a7f5eSAndroid Build Coastguard Worker 9876*344a7f5eSAndroid Build Coastguard Worker public static abstract deprecated class SearchViewCompat.OnQueryTextListenerCompat implements android.support.v4.widget.SearchViewCompat.OnQueryTextListener { 9877*344a7f5eSAndroid Build Coastguard Worker ctor public SearchViewCompat.OnQueryTextListenerCompat(); 9878*344a7f5eSAndroid Build Coastguard Worker method public boolean onQueryTextChange(java.lang.String); 9879*344a7f5eSAndroid Build Coastguard Worker method public boolean onQueryTextSubmit(java.lang.String); 9880*344a7f5eSAndroid Build Coastguard Worker } 9881*344a7f5eSAndroid Build Coastguard Worker 9882*344a7f5eSAndroid Build Coastguard Worker public class SimpleCursorAdapter extends android.support.v4.widget.ResourceCursorAdapter { 9883*344a7f5eSAndroid Build Coastguard Worker ctor public deprecated SimpleCursorAdapter(android.content.Context, int, android.database.Cursor, java.lang.String[], int[]); 9884*344a7f5eSAndroid Build Coastguard Worker ctor public SimpleCursorAdapter(android.content.Context, int, android.database.Cursor, java.lang.String[], int[], int); 9885*344a7f5eSAndroid Build Coastguard Worker method public void bindView(android.view.View, android.content.Context, android.database.Cursor); 9886*344a7f5eSAndroid Build Coastguard Worker method public void changeCursorAndColumns(android.database.Cursor, java.lang.String[], int[]); 9887*344a7f5eSAndroid Build Coastguard Worker method public android.support.v4.widget.SimpleCursorAdapter.CursorToStringConverter getCursorToStringConverter(); 9888*344a7f5eSAndroid Build Coastguard Worker method public int getStringConversionColumn(); 9889*344a7f5eSAndroid Build Coastguard Worker method public android.support.v4.widget.SimpleCursorAdapter.ViewBinder getViewBinder(); 9890*344a7f5eSAndroid Build Coastguard Worker method public void setCursorToStringConverter(android.support.v4.widget.SimpleCursorAdapter.CursorToStringConverter); 9891*344a7f5eSAndroid Build Coastguard Worker method public void setStringConversionColumn(int); 9892*344a7f5eSAndroid Build Coastguard Worker method public void setViewBinder(android.support.v4.widget.SimpleCursorAdapter.ViewBinder); 9893*344a7f5eSAndroid Build Coastguard Worker method public void setViewImage(android.widget.ImageView, java.lang.String); 9894*344a7f5eSAndroid Build Coastguard Worker method public void setViewText(android.widget.TextView, java.lang.String); 9895*344a7f5eSAndroid Build Coastguard Worker } 9896*344a7f5eSAndroid Build Coastguard Worker 9897*344a7f5eSAndroid Build Coastguard Worker public static abstract interface SimpleCursorAdapter.CursorToStringConverter { 9898*344a7f5eSAndroid Build Coastguard Worker method public abstract java.lang.CharSequence convertToString(android.database.Cursor); 9899*344a7f5eSAndroid Build Coastguard Worker } 9900*344a7f5eSAndroid Build Coastguard Worker 9901*344a7f5eSAndroid Build Coastguard Worker public static abstract interface SimpleCursorAdapter.ViewBinder { 9902*344a7f5eSAndroid Build Coastguard Worker method public abstract boolean setViewValue(android.view.View, android.database.Cursor, int); 9903*344a7f5eSAndroid Build Coastguard Worker } 9904*344a7f5eSAndroid Build Coastguard Worker 9905*344a7f5eSAndroid Build Coastguard Worker public class SlidingPaneLayout extends android.view.ViewGroup { 9906*344a7f5eSAndroid Build Coastguard Worker ctor public SlidingPaneLayout(android.content.Context); 9907*344a7f5eSAndroid Build Coastguard Worker ctor public SlidingPaneLayout(android.content.Context, android.util.AttributeSet); 9908*344a7f5eSAndroid Build Coastguard Worker ctor public SlidingPaneLayout(android.content.Context, android.util.AttributeSet, int); 9909*344a7f5eSAndroid Build Coastguard Worker method protected boolean canScroll(android.view.View, boolean, int, int, int); 9910*344a7f5eSAndroid Build Coastguard Worker method public deprecated boolean canSlide(); 9911*344a7f5eSAndroid Build Coastguard Worker method public boolean closePane(); 9912*344a7f5eSAndroid Build Coastguard Worker method public int getCoveredFadeColor(); 9913*344a7f5eSAndroid Build Coastguard Worker method public int getParallaxDistance(); 9914*344a7f5eSAndroid Build Coastguard Worker method public int getSliderFadeColor(); 9915*344a7f5eSAndroid Build Coastguard Worker method public boolean isOpen(); 9916*344a7f5eSAndroid Build Coastguard Worker method public boolean isSlideable(); 9917*344a7f5eSAndroid Build Coastguard Worker method protected void onLayout(boolean, int, int, int, int); 9918*344a7f5eSAndroid Build Coastguard Worker method public boolean openPane(); 9919*344a7f5eSAndroid Build Coastguard Worker method public void setCoveredFadeColor(int); 9920*344a7f5eSAndroid Build Coastguard Worker method public void setPanelSlideListener(android.support.v4.widget.SlidingPaneLayout.PanelSlideListener); 9921*344a7f5eSAndroid Build Coastguard Worker method public void setParallaxDistance(int); 9922*344a7f5eSAndroid Build Coastguard Worker method public deprecated void setShadowDrawable(android.graphics.drawable.Drawable); 9923*344a7f5eSAndroid Build Coastguard Worker method public void setShadowDrawableLeft(android.graphics.drawable.Drawable); 9924*344a7f5eSAndroid Build Coastguard Worker method public void setShadowDrawableRight(android.graphics.drawable.Drawable); 9925*344a7f5eSAndroid Build Coastguard Worker method public deprecated void setShadowResource(int); 9926*344a7f5eSAndroid Build Coastguard Worker method public void setShadowResourceLeft(int); 9927*344a7f5eSAndroid Build Coastguard Worker method public void setShadowResourceRight(int); 9928*344a7f5eSAndroid Build Coastguard Worker method public void setSliderFadeColor(int); 9929*344a7f5eSAndroid Build Coastguard Worker method public deprecated void smoothSlideClosed(); 9930*344a7f5eSAndroid Build Coastguard Worker method public deprecated void smoothSlideOpen(); 9931*344a7f5eSAndroid Build Coastguard Worker } 9932*344a7f5eSAndroid Build Coastguard Worker 9933*344a7f5eSAndroid Build Coastguard Worker public static class SlidingPaneLayout.LayoutParams extends android.view.ViewGroup.MarginLayoutParams { 9934*344a7f5eSAndroid Build Coastguard Worker ctor public SlidingPaneLayout.LayoutParams(); 9935*344a7f5eSAndroid Build Coastguard Worker ctor public SlidingPaneLayout.LayoutParams(int, int); 9936*344a7f5eSAndroid Build Coastguard Worker ctor public SlidingPaneLayout.LayoutParams(android.view.ViewGroup.LayoutParams); 9937*344a7f5eSAndroid Build Coastguard Worker ctor public SlidingPaneLayout.LayoutParams(android.view.ViewGroup.MarginLayoutParams); 9938*344a7f5eSAndroid Build Coastguard Worker ctor public SlidingPaneLayout.LayoutParams(android.support.v4.widget.SlidingPaneLayout.LayoutParams); 9939*344a7f5eSAndroid Build Coastguard Worker ctor public SlidingPaneLayout.LayoutParams(android.content.Context, android.util.AttributeSet); 9940*344a7f5eSAndroid Build Coastguard Worker field public float weight; 9941*344a7f5eSAndroid Build Coastguard Worker } 9942*344a7f5eSAndroid Build Coastguard Worker 9943*344a7f5eSAndroid Build Coastguard Worker public static abstract interface SlidingPaneLayout.PanelSlideListener { 9944*344a7f5eSAndroid Build Coastguard Worker method public abstract void onPanelClosed(android.view.View); 9945*344a7f5eSAndroid Build Coastguard Worker method public abstract void onPanelOpened(android.view.View); 9946*344a7f5eSAndroid Build Coastguard Worker method public abstract void onPanelSlide(android.view.View, float); 9947*344a7f5eSAndroid Build Coastguard Worker } 9948*344a7f5eSAndroid Build Coastguard Worker 9949*344a7f5eSAndroid Build Coastguard Worker public static class SlidingPaneLayout.SimplePanelSlideListener implements android.support.v4.widget.SlidingPaneLayout.PanelSlideListener { 9950*344a7f5eSAndroid Build Coastguard Worker ctor public SlidingPaneLayout.SimplePanelSlideListener(); 9951*344a7f5eSAndroid Build Coastguard Worker method public void onPanelClosed(android.view.View); 9952*344a7f5eSAndroid Build Coastguard Worker method public void onPanelOpened(android.view.View); 9953*344a7f5eSAndroid Build Coastguard Worker method public void onPanelSlide(android.view.View, float); 9954*344a7f5eSAndroid Build Coastguard Worker } 9955*344a7f5eSAndroid Build Coastguard Worker 9956*344a7f5eSAndroid Build Coastguard Worker public class Space extends android.view.View { 9957*344a7f5eSAndroid Build Coastguard Worker ctor public Space(android.content.Context, android.util.AttributeSet, int); 9958*344a7f5eSAndroid Build Coastguard Worker ctor public Space(android.content.Context, android.util.AttributeSet); 9959*344a7f5eSAndroid Build Coastguard Worker ctor public Space(android.content.Context); 9960*344a7f5eSAndroid Build Coastguard Worker } 9961*344a7f5eSAndroid Build Coastguard Worker 9962*344a7f5eSAndroid Build Coastguard Worker public class SwipeRefreshLayout extends android.view.ViewGroup implements android.support.v4.view.NestedScrollingChild android.support.v4.view.NestedScrollingParent { 9963*344a7f5eSAndroid Build Coastguard Worker ctor public SwipeRefreshLayout(android.content.Context); 9964*344a7f5eSAndroid Build Coastguard Worker ctor public SwipeRefreshLayout(android.content.Context, android.util.AttributeSet); 9965*344a7f5eSAndroid Build Coastguard Worker method public boolean canChildScrollUp(); 9966*344a7f5eSAndroid Build Coastguard Worker method public int getProgressCircleDiameter(); 9967*344a7f5eSAndroid Build Coastguard Worker method public int getProgressViewEndOffset(); 9968*344a7f5eSAndroid Build Coastguard Worker method public int getProgressViewStartOffset(); 9969*344a7f5eSAndroid Build Coastguard Worker method public boolean isRefreshing(); 9970*344a7f5eSAndroid Build Coastguard Worker method protected void onLayout(boolean, int, int, int, int); 9971*344a7f5eSAndroid Build Coastguard Worker method public void onMeasure(int, int); 9972*344a7f5eSAndroid Build Coastguard Worker method public deprecated void setColorScheme(int...); 9973*344a7f5eSAndroid Build Coastguard Worker method public void setColorSchemeColors(int...); 9974*344a7f5eSAndroid Build Coastguard Worker method public void setColorSchemeResources(int...); 9975*344a7f5eSAndroid Build Coastguard Worker method public void setDistanceToTriggerSync(int); 9976*344a7f5eSAndroid Build Coastguard Worker method public void setOnChildScrollUpCallback(android.support.v4.widget.SwipeRefreshLayout.OnChildScrollUpCallback); 9977*344a7f5eSAndroid Build Coastguard Worker method public void setOnRefreshListener(android.support.v4.widget.SwipeRefreshLayout.OnRefreshListener); 9978*344a7f5eSAndroid Build Coastguard Worker method public deprecated void setProgressBackgroundColor(int); 9979*344a7f5eSAndroid Build Coastguard Worker method public void setProgressBackgroundColorSchemeColor(int); 9980*344a7f5eSAndroid Build Coastguard Worker method public void setProgressBackgroundColorSchemeResource(int); 9981*344a7f5eSAndroid Build Coastguard Worker method public void setProgressViewEndTarget(boolean, int); 9982*344a7f5eSAndroid Build Coastguard Worker method public void setProgressViewOffset(boolean, int, int); 9983*344a7f5eSAndroid Build Coastguard Worker method public void setRefreshing(boolean); 9984*344a7f5eSAndroid Build Coastguard Worker method public void setSize(int); 9985*344a7f5eSAndroid Build Coastguard Worker field public static final int DEFAULT = 1; // 0x1 9986*344a7f5eSAndroid Build Coastguard Worker field public static final int LARGE = 0; // 0x0 9987*344a7f5eSAndroid Build Coastguard Worker field protected int mFrom; 9988*344a7f5eSAndroid Build Coastguard Worker field protected int mOriginalOffsetTop; 9989*344a7f5eSAndroid Build Coastguard Worker } 9990*344a7f5eSAndroid Build Coastguard Worker 9991*344a7f5eSAndroid Build Coastguard Worker public static abstract interface SwipeRefreshLayout.OnChildScrollUpCallback { 9992*344a7f5eSAndroid Build Coastguard Worker method public abstract boolean canChildScrollUp(android.support.v4.widget.SwipeRefreshLayout, android.view.View); 9993*344a7f5eSAndroid Build Coastguard Worker } 9994*344a7f5eSAndroid Build Coastguard Worker 9995*344a7f5eSAndroid Build Coastguard Worker public static abstract interface SwipeRefreshLayout.OnRefreshListener { 9996*344a7f5eSAndroid Build Coastguard Worker method public abstract void onRefresh(); 9997*344a7f5eSAndroid Build Coastguard Worker } 9998*344a7f5eSAndroid Build Coastguard Worker 9999*344a7f5eSAndroid Build Coastguard Worker public final class TextViewCompat { 10000*344a7f5eSAndroid Build Coastguard Worker method public static int getAutoSizeMaxTextSize(android.widget.TextView); 10001*344a7f5eSAndroid Build Coastguard Worker method public static int getAutoSizeMinTextSize(android.widget.TextView); 10002*344a7f5eSAndroid Build Coastguard Worker method public static int getAutoSizeStepGranularity(android.widget.TextView); 10003*344a7f5eSAndroid Build Coastguard Worker method public static int[] getAutoSizeTextAvailableSizes(android.widget.TextView); 10004*344a7f5eSAndroid Build Coastguard Worker method public static int getAutoSizeTextType(android.widget.TextView); 10005*344a7f5eSAndroid Build Coastguard Worker method public static android.graphics.drawable.Drawable[] getCompoundDrawablesRelative(android.widget.TextView); 10006*344a7f5eSAndroid Build Coastguard Worker method public static int getMaxLines(android.widget.TextView); 10007*344a7f5eSAndroid Build Coastguard Worker method public static int getMinLines(android.widget.TextView); 10008*344a7f5eSAndroid Build Coastguard Worker method public static void setAutoSizeTextTypeUniformWithConfiguration(android.widget.TextView, int, int, int, int) throws java.lang.IllegalArgumentException; 10009*344a7f5eSAndroid Build Coastguard Worker method public static void setAutoSizeTextTypeUniformWithPresetSizes(android.widget.TextView, int[], int) throws java.lang.IllegalArgumentException; 10010*344a7f5eSAndroid Build Coastguard Worker method public static void setAutoSizeTextTypeWithDefaults(android.widget.TextView, int); 10011*344a7f5eSAndroid Build Coastguard Worker method public static void setCompoundDrawablesRelative(android.widget.TextView, android.graphics.drawable.Drawable, android.graphics.drawable.Drawable, android.graphics.drawable.Drawable, android.graphics.drawable.Drawable); 10012*344a7f5eSAndroid Build Coastguard Worker method public static void setCompoundDrawablesRelativeWithIntrinsicBounds(android.widget.TextView, android.graphics.drawable.Drawable, android.graphics.drawable.Drawable, android.graphics.drawable.Drawable, android.graphics.drawable.Drawable); 10013*344a7f5eSAndroid Build Coastguard Worker method public static void setCompoundDrawablesRelativeWithIntrinsicBounds(android.widget.TextView, int, int, int, int); 10014*344a7f5eSAndroid Build Coastguard Worker method public static void setTextAppearance(android.widget.TextView, int); 10015*344a7f5eSAndroid Build Coastguard Worker field public static final int AUTO_SIZE_TEXT_TYPE_NONE = 0; // 0x0 10016*344a7f5eSAndroid Build Coastguard Worker field public static final int AUTO_SIZE_TEXT_TYPE_UNIFORM = 1; // 0x1 10017*344a7f5eSAndroid Build Coastguard Worker } 10018*344a7f5eSAndroid Build Coastguard Worker 10019*344a7f5eSAndroid Build Coastguard Worker public abstract interface TintableCompoundButton { 10020*344a7f5eSAndroid Build Coastguard Worker method public abstract android.content.res.ColorStateList getSupportButtonTintList(); 10021*344a7f5eSAndroid Build Coastguard Worker method public abstract android.graphics.PorterDuff.Mode getSupportButtonTintMode(); 10022*344a7f5eSAndroid Build Coastguard Worker method public abstract void setSupportButtonTintList(android.content.res.ColorStateList); 10023*344a7f5eSAndroid Build Coastguard Worker method public abstract void setSupportButtonTintMode(android.graphics.PorterDuff.Mode); 10024*344a7f5eSAndroid Build Coastguard Worker } 10025*344a7f5eSAndroid Build Coastguard Worker 10026*344a7f5eSAndroid Build Coastguard Worker public class ViewDragHelper { 10027*344a7f5eSAndroid Build Coastguard Worker method public void abort(); 10028*344a7f5eSAndroid Build Coastguard Worker method protected boolean canScroll(android.view.View, boolean, int, int, int, int); 10029*344a7f5eSAndroid Build Coastguard Worker method public void cancel(); 10030*344a7f5eSAndroid Build Coastguard Worker method public void captureChildView(android.view.View, int); 10031*344a7f5eSAndroid Build Coastguard Worker method public boolean checkTouchSlop(int); 10032*344a7f5eSAndroid Build Coastguard Worker method public boolean checkTouchSlop(int, int); 10033*344a7f5eSAndroid Build Coastguard Worker method public boolean continueSettling(boolean); 10034*344a7f5eSAndroid Build Coastguard Worker method public static android.support.v4.widget.ViewDragHelper create(android.view.ViewGroup, android.support.v4.widget.ViewDragHelper.Callback); 10035*344a7f5eSAndroid Build Coastguard Worker method public static android.support.v4.widget.ViewDragHelper create(android.view.ViewGroup, float, android.support.v4.widget.ViewDragHelper.Callback); 10036*344a7f5eSAndroid Build Coastguard Worker method public android.view.View findTopChildUnder(int, int); 10037*344a7f5eSAndroid Build Coastguard Worker method public void flingCapturedView(int, int, int, int); 10038*344a7f5eSAndroid Build Coastguard Worker method public int getActivePointerId(); 10039*344a7f5eSAndroid Build Coastguard Worker method public android.view.View getCapturedView(); 10040*344a7f5eSAndroid Build Coastguard Worker method public int getEdgeSize(); 10041*344a7f5eSAndroid Build Coastguard Worker method public float getMinVelocity(); 10042*344a7f5eSAndroid Build Coastguard Worker method public int getTouchSlop(); 10043*344a7f5eSAndroid Build Coastguard Worker method public int getViewDragState(); 10044*344a7f5eSAndroid Build Coastguard Worker method public boolean isCapturedViewUnder(int, int); 10045*344a7f5eSAndroid Build Coastguard Worker method public boolean isEdgeTouched(int); 10046*344a7f5eSAndroid Build Coastguard Worker method public boolean isEdgeTouched(int, int); 10047*344a7f5eSAndroid Build Coastguard Worker method public boolean isPointerDown(int); 10048*344a7f5eSAndroid Build Coastguard Worker method public boolean isViewUnder(android.view.View, int, int); 10049*344a7f5eSAndroid Build Coastguard Worker method public void processTouchEvent(android.view.MotionEvent); 10050*344a7f5eSAndroid Build Coastguard Worker method public void setEdgeTrackingEnabled(int); 10051*344a7f5eSAndroid Build Coastguard Worker method public void setMinVelocity(float); 10052*344a7f5eSAndroid Build Coastguard Worker method public boolean settleCapturedViewAt(int, int); 10053*344a7f5eSAndroid Build Coastguard Worker method public boolean shouldInterceptTouchEvent(android.view.MotionEvent); 10054*344a7f5eSAndroid Build Coastguard Worker method public boolean smoothSlideViewTo(android.view.View, int, int); 10055*344a7f5eSAndroid Build Coastguard Worker field public static final int DIRECTION_ALL = 3; // 0x3 10056*344a7f5eSAndroid Build Coastguard Worker field public static final int DIRECTION_HORIZONTAL = 1; // 0x1 10057*344a7f5eSAndroid Build Coastguard Worker field public static final int DIRECTION_VERTICAL = 2; // 0x2 10058*344a7f5eSAndroid Build Coastguard Worker field public static final int EDGE_ALL = 15; // 0xf 10059*344a7f5eSAndroid Build Coastguard Worker field public static final int EDGE_BOTTOM = 8; // 0x8 10060*344a7f5eSAndroid Build Coastguard Worker field public static final int EDGE_LEFT = 1; // 0x1 10061*344a7f5eSAndroid Build Coastguard Worker field public static final int EDGE_RIGHT = 2; // 0x2 10062*344a7f5eSAndroid Build Coastguard Worker field public static final int EDGE_TOP = 4; // 0x4 10063*344a7f5eSAndroid Build Coastguard Worker field public static final int INVALID_POINTER = -1; // 0xffffffff 10064*344a7f5eSAndroid Build Coastguard Worker field public static final int STATE_DRAGGING = 1; // 0x1 10065*344a7f5eSAndroid Build Coastguard Worker field public static final int STATE_IDLE = 0; // 0x0 10066*344a7f5eSAndroid Build Coastguard Worker field public static final int STATE_SETTLING = 2; // 0x2 10067*344a7f5eSAndroid Build Coastguard Worker } 10068*344a7f5eSAndroid Build Coastguard Worker 10069*344a7f5eSAndroid Build Coastguard Worker public static abstract class ViewDragHelper.Callback { 10070*344a7f5eSAndroid Build Coastguard Worker ctor public ViewDragHelper.Callback(); 10071*344a7f5eSAndroid Build Coastguard Worker method public int clampViewPositionHorizontal(android.view.View, int, int); 10072*344a7f5eSAndroid Build Coastguard Worker method public int clampViewPositionVertical(android.view.View, int, int); 10073*344a7f5eSAndroid Build Coastguard Worker method public int getOrderedChildIndex(int); 10074*344a7f5eSAndroid Build Coastguard Worker method public int getViewHorizontalDragRange(android.view.View); 10075*344a7f5eSAndroid Build Coastguard Worker method public int getViewVerticalDragRange(android.view.View); 10076*344a7f5eSAndroid Build Coastguard Worker method public void onEdgeDragStarted(int, int); 10077*344a7f5eSAndroid Build Coastguard Worker method public boolean onEdgeLock(int); 10078*344a7f5eSAndroid Build Coastguard Worker method public void onEdgeTouched(int, int); 10079*344a7f5eSAndroid Build Coastguard Worker method public void onViewCaptured(android.view.View, int); 10080*344a7f5eSAndroid Build Coastguard Worker method public void onViewDragStateChanged(int); 10081*344a7f5eSAndroid Build Coastguard Worker method public void onViewPositionChanged(android.view.View, int, int, int, int); 10082*344a7f5eSAndroid Build Coastguard Worker method public void onViewReleased(android.view.View, float, float); 10083*344a7f5eSAndroid Build Coastguard Worker method public abstract boolean tryCaptureView(android.view.View, int); 10084*344a7f5eSAndroid Build Coastguard Worker } 10085*344a7f5eSAndroid Build Coastguard Worker 10086*344a7f5eSAndroid Build Coastguard Worker} 10087*344a7f5eSAndroid Build Coastguard Worker 10088*344a7f5eSAndroid Build Coastguard Workerpackage android.support.v7.app { 10089*344a7f5eSAndroid Build Coastguard Worker 10090*344a7f5eSAndroid Build Coastguard Worker public abstract class ActionBar { 10091*344a7f5eSAndroid Build Coastguard Worker ctor public ActionBar(); 10092*344a7f5eSAndroid Build Coastguard Worker method public abstract void addOnMenuVisibilityListener(android.support.v7.app.ActionBar.OnMenuVisibilityListener); 10093*344a7f5eSAndroid Build Coastguard Worker method public abstract deprecated void addTab(android.support.v7.app.ActionBar.Tab); 10094*344a7f5eSAndroid Build Coastguard Worker method public abstract deprecated void addTab(android.support.v7.app.ActionBar.Tab, boolean); 10095*344a7f5eSAndroid Build Coastguard Worker method public abstract deprecated void addTab(android.support.v7.app.ActionBar.Tab, int); 10096*344a7f5eSAndroid Build Coastguard Worker method public abstract deprecated void addTab(android.support.v7.app.ActionBar.Tab, int, boolean); 10097*344a7f5eSAndroid Build Coastguard Worker method public abstract android.view.View getCustomView(); 10098*344a7f5eSAndroid Build Coastguard Worker method public abstract int getDisplayOptions(); 10099*344a7f5eSAndroid Build Coastguard Worker method public float getElevation(); 10100*344a7f5eSAndroid Build Coastguard Worker method public abstract int getHeight(); 10101*344a7f5eSAndroid Build Coastguard Worker method public int getHideOffset(); 10102*344a7f5eSAndroid Build Coastguard Worker method public abstract deprecated int getNavigationItemCount(); 10103*344a7f5eSAndroid Build Coastguard Worker method public abstract deprecated int getNavigationMode(); 10104*344a7f5eSAndroid Build Coastguard Worker method public abstract deprecated int getSelectedNavigationIndex(); 10105*344a7f5eSAndroid Build Coastguard Worker method public abstract deprecated android.support.v7.app.ActionBar.Tab getSelectedTab(); 10106*344a7f5eSAndroid Build Coastguard Worker method public abstract java.lang.CharSequence getSubtitle(); 10107*344a7f5eSAndroid Build Coastguard Worker method public abstract deprecated android.support.v7.app.ActionBar.Tab getTabAt(int); 10108*344a7f5eSAndroid Build Coastguard Worker method public abstract deprecated int getTabCount(); 10109*344a7f5eSAndroid Build Coastguard Worker method public android.content.Context getThemedContext(); 10110*344a7f5eSAndroid Build Coastguard Worker method public abstract java.lang.CharSequence getTitle(); 10111*344a7f5eSAndroid Build Coastguard Worker method public abstract void hide(); 10112*344a7f5eSAndroid Build Coastguard Worker method public boolean isHideOnContentScrollEnabled(); 10113*344a7f5eSAndroid Build Coastguard Worker method public abstract boolean isShowing(); 10114*344a7f5eSAndroid Build Coastguard Worker method public abstract deprecated android.support.v7.app.ActionBar.Tab newTab(); 10115*344a7f5eSAndroid Build Coastguard Worker method public abstract deprecated void removeAllTabs(); 10116*344a7f5eSAndroid Build Coastguard Worker method public abstract void removeOnMenuVisibilityListener(android.support.v7.app.ActionBar.OnMenuVisibilityListener); 10117*344a7f5eSAndroid Build Coastguard Worker method public abstract deprecated void removeTab(android.support.v7.app.ActionBar.Tab); 10118*344a7f5eSAndroid Build Coastguard Worker method public abstract deprecated void removeTabAt(int); 10119*344a7f5eSAndroid Build Coastguard Worker method public abstract deprecated void selectTab(android.support.v7.app.ActionBar.Tab); 10120*344a7f5eSAndroid Build Coastguard Worker method public abstract void setBackgroundDrawable(android.graphics.drawable.Drawable); 10121*344a7f5eSAndroid Build Coastguard Worker method public abstract void setCustomView(android.view.View); 10122*344a7f5eSAndroid Build Coastguard Worker method public abstract void setCustomView(android.view.View, android.support.v7.app.ActionBar.LayoutParams); 10123*344a7f5eSAndroid Build Coastguard Worker method public abstract void setCustomView(int); 10124*344a7f5eSAndroid Build Coastguard Worker method public abstract void setDisplayHomeAsUpEnabled(boolean); 10125*344a7f5eSAndroid Build Coastguard Worker method public abstract void setDisplayOptions(int); 10126*344a7f5eSAndroid Build Coastguard Worker method public abstract void setDisplayOptions(int, int); 10127*344a7f5eSAndroid Build Coastguard Worker method public abstract void setDisplayShowCustomEnabled(boolean); 10128*344a7f5eSAndroid Build Coastguard Worker method public abstract void setDisplayShowHomeEnabled(boolean); 10129*344a7f5eSAndroid Build Coastguard Worker method public abstract void setDisplayShowTitleEnabled(boolean); 10130*344a7f5eSAndroid Build Coastguard Worker method public abstract void setDisplayUseLogoEnabled(boolean); 10131*344a7f5eSAndroid Build Coastguard Worker method public void setElevation(float); 10132*344a7f5eSAndroid Build Coastguard Worker method public void setHideOffset(int); 10133*344a7f5eSAndroid Build Coastguard Worker method public void setHideOnContentScrollEnabled(boolean); 10134*344a7f5eSAndroid Build Coastguard Worker method public void setHomeActionContentDescription(java.lang.CharSequence); 10135*344a7f5eSAndroid Build Coastguard Worker method public void setHomeActionContentDescription(int); 10136*344a7f5eSAndroid Build Coastguard Worker method public void setHomeAsUpIndicator(android.graphics.drawable.Drawable); 10137*344a7f5eSAndroid Build Coastguard Worker method public void setHomeAsUpIndicator(int); 10138*344a7f5eSAndroid Build Coastguard Worker method public void setHomeButtonEnabled(boolean); 10139*344a7f5eSAndroid Build Coastguard Worker method public abstract void setIcon(int); 10140*344a7f5eSAndroid Build Coastguard Worker method public abstract void setIcon(android.graphics.drawable.Drawable); 10141*344a7f5eSAndroid Build Coastguard Worker method public abstract deprecated void setListNavigationCallbacks(android.widget.SpinnerAdapter, android.support.v7.app.ActionBar.OnNavigationListener); 10142*344a7f5eSAndroid Build Coastguard Worker method public abstract void setLogo(int); 10143*344a7f5eSAndroid Build Coastguard Worker method public abstract void setLogo(android.graphics.drawable.Drawable); 10144*344a7f5eSAndroid Build Coastguard Worker method public abstract deprecated void setNavigationMode(int); 10145*344a7f5eSAndroid Build Coastguard Worker method public abstract deprecated void setSelectedNavigationItem(int); 10146*344a7f5eSAndroid Build Coastguard Worker method public void setSplitBackgroundDrawable(android.graphics.drawable.Drawable); 10147*344a7f5eSAndroid Build Coastguard Worker method public void setStackedBackgroundDrawable(android.graphics.drawable.Drawable); 10148*344a7f5eSAndroid Build Coastguard Worker method public abstract void setSubtitle(java.lang.CharSequence); 10149*344a7f5eSAndroid Build Coastguard Worker method public abstract void setSubtitle(int); 10150*344a7f5eSAndroid Build Coastguard Worker method public abstract void setTitle(java.lang.CharSequence); 10151*344a7f5eSAndroid Build Coastguard Worker method public abstract void setTitle(int); 10152*344a7f5eSAndroid Build Coastguard Worker method public abstract void show(); 10153*344a7f5eSAndroid Build Coastguard Worker field public static final int DISPLAY_HOME_AS_UP = 4; // 0x4 10154*344a7f5eSAndroid Build Coastguard Worker field public static final int DISPLAY_SHOW_CUSTOM = 16; // 0x10 10155*344a7f5eSAndroid Build Coastguard Worker field public static final int DISPLAY_SHOW_HOME = 2; // 0x2 10156*344a7f5eSAndroid Build Coastguard Worker field public static final int DISPLAY_SHOW_TITLE = 8; // 0x8 10157*344a7f5eSAndroid Build Coastguard Worker field public static final int DISPLAY_USE_LOGO = 1; // 0x1 10158*344a7f5eSAndroid Build Coastguard Worker field public static final deprecated int NAVIGATION_MODE_LIST = 1; // 0x1 10159*344a7f5eSAndroid Build Coastguard Worker field public static final deprecated int NAVIGATION_MODE_STANDARD = 0; // 0x0 10160*344a7f5eSAndroid Build Coastguard Worker field public static final deprecated int NAVIGATION_MODE_TABS = 2; // 0x2 10161*344a7f5eSAndroid Build Coastguard Worker } 10162*344a7f5eSAndroid Build Coastguard Worker 10163*344a7f5eSAndroid Build Coastguard Worker public static class ActionBar.LayoutParams extends android.view.ViewGroup.MarginLayoutParams { 10164*344a7f5eSAndroid Build Coastguard Worker ctor public ActionBar.LayoutParams(android.content.Context, android.util.AttributeSet); 10165*344a7f5eSAndroid Build Coastguard Worker ctor public ActionBar.LayoutParams(int, int); 10166*344a7f5eSAndroid Build Coastguard Worker ctor public ActionBar.LayoutParams(int, int, int); 10167*344a7f5eSAndroid Build Coastguard Worker ctor public ActionBar.LayoutParams(int); 10168*344a7f5eSAndroid Build Coastguard Worker ctor public ActionBar.LayoutParams(android.support.v7.app.ActionBar.LayoutParams); 10169*344a7f5eSAndroid Build Coastguard Worker ctor public ActionBar.LayoutParams(android.view.ViewGroup.LayoutParams); 10170*344a7f5eSAndroid Build Coastguard Worker field public int gravity; 10171*344a7f5eSAndroid Build Coastguard Worker } 10172*344a7f5eSAndroid Build Coastguard Worker 10173*344a7f5eSAndroid Build Coastguard Worker public static abstract interface ActionBar.OnMenuVisibilityListener { 10174*344a7f5eSAndroid Build Coastguard Worker method public abstract void onMenuVisibilityChanged(boolean); 10175*344a7f5eSAndroid Build Coastguard Worker } 10176*344a7f5eSAndroid Build Coastguard Worker 10177*344a7f5eSAndroid Build Coastguard Worker public static abstract deprecated interface ActionBar.OnNavigationListener { 10178*344a7f5eSAndroid Build Coastguard Worker method public abstract boolean onNavigationItemSelected(int, long); 10179*344a7f5eSAndroid Build Coastguard Worker } 10180*344a7f5eSAndroid Build Coastguard Worker 10181*344a7f5eSAndroid Build Coastguard Worker public static abstract deprecated class ActionBar.Tab { 10182*344a7f5eSAndroid Build Coastguard Worker ctor public ActionBar.Tab(); 10183*344a7f5eSAndroid Build Coastguard Worker method public abstract java.lang.CharSequence getContentDescription(); 10184*344a7f5eSAndroid Build Coastguard Worker method public abstract android.view.View getCustomView(); 10185*344a7f5eSAndroid Build Coastguard Worker method public abstract android.graphics.drawable.Drawable getIcon(); 10186*344a7f5eSAndroid Build Coastguard Worker method public abstract int getPosition(); 10187*344a7f5eSAndroid Build Coastguard Worker method public abstract java.lang.Object getTag(); 10188*344a7f5eSAndroid Build Coastguard Worker method public abstract java.lang.CharSequence getText(); 10189*344a7f5eSAndroid Build Coastguard Worker method public abstract void select(); 10190*344a7f5eSAndroid Build Coastguard Worker method public abstract android.support.v7.app.ActionBar.Tab setContentDescription(int); 10191*344a7f5eSAndroid Build Coastguard Worker method public abstract android.support.v7.app.ActionBar.Tab setContentDescription(java.lang.CharSequence); 10192*344a7f5eSAndroid Build Coastguard Worker method public abstract android.support.v7.app.ActionBar.Tab setCustomView(android.view.View); 10193*344a7f5eSAndroid Build Coastguard Worker method public abstract android.support.v7.app.ActionBar.Tab setCustomView(int); 10194*344a7f5eSAndroid Build Coastguard Worker method public abstract android.support.v7.app.ActionBar.Tab setIcon(android.graphics.drawable.Drawable); 10195*344a7f5eSAndroid Build Coastguard Worker method public abstract android.support.v7.app.ActionBar.Tab setIcon(int); 10196*344a7f5eSAndroid Build Coastguard Worker method public abstract android.support.v7.app.ActionBar.Tab setTabListener(android.support.v7.app.ActionBar.TabListener); 10197*344a7f5eSAndroid Build Coastguard Worker method public abstract android.support.v7.app.ActionBar.Tab setTag(java.lang.Object); 10198*344a7f5eSAndroid Build Coastguard Worker method public abstract android.support.v7.app.ActionBar.Tab setText(java.lang.CharSequence); 10199*344a7f5eSAndroid Build Coastguard Worker method public abstract android.support.v7.app.ActionBar.Tab setText(int); 10200*344a7f5eSAndroid Build Coastguard Worker field public static final int INVALID_POSITION = -1; // 0xffffffff 10201*344a7f5eSAndroid Build Coastguard Worker } 10202*344a7f5eSAndroid Build Coastguard Worker 10203*344a7f5eSAndroid Build Coastguard Worker public static abstract deprecated interface ActionBar.TabListener { 10204*344a7f5eSAndroid Build Coastguard Worker method public abstract void onTabReselected(android.support.v7.app.ActionBar.Tab, android.support.v4.app.FragmentTransaction); 10205*344a7f5eSAndroid Build Coastguard Worker method public abstract void onTabSelected(android.support.v7.app.ActionBar.Tab, android.support.v4.app.FragmentTransaction); 10206*344a7f5eSAndroid Build Coastguard Worker method public abstract void onTabUnselected(android.support.v7.app.ActionBar.Tab, android.support.v4.app.FragmentTransaction); 10207*344a7f5eSAndroid Build Coastguard Worker } 10208*344a7f5eSAndroid Build Coastguard Worker 10209*344a7f5eSAndroid Build Coastguard Worker public class ActionBarDrawerToggle implements android.support.v4.widget.DrawerLayout.DrawerListener { 10210*344a7f5eSAndroid Build Coastguard Worker ctor public ActionBarDrawerToggle(android.app.Activity, android.support.v4.widget.DrawerLayout, int, int); 10211*344a7f5eSAndroid Build Coastguard Worker ctor public ActionBarDrawerToggle(android.app.Activity, android.support.v4.widget.DrawerLayout, android.support.v7.widget.Toolbar, int, int); 10212*344a7f5eSAndroid Build Coastguard Worker method public android.support.v7.graphics.drawable.DrawerArrowDrawable getDrawerArrowDrawable(); 10213*344a7f5eSAndroid Build Coastguard Worker method public android.view.View.OnClickListener getToolbarNavigationClickListener(); 10214*344a7f5eSAndroid Build Coastguard Worker method public boolean isDrawerIndicatorEnabled(); 10215*344a7f5eSAndroid Build Coastguard Worker method public boolean isDrawerSlideAnimationEnabled(); 10216*344a7f5eSAndroid Build Coastguard Worker method public void onConfigurationChanged(android.content.res.Configuration); 10217*344a7f5eSAndroid Build Coastguard Worker method public void onDrawerClosed(android.view.View); 10218*344a7f5eSAndroid Build Coastguard Worker method public void onDrawerOpened(android.view.View); 10219*344a7f5eSAndroid Build Coastguard Worker method public void onDrawerSlide(android.view.View, float); 10220*344a7f5eSAndroid Build Coastguard Worker method public void onDrawerStateChanged(int); 10221*344a7f5eSAndroid Build Coastguard Worker method public boolean onOptionsItemSelected(android.view.MenuItem); 10222*344a7f5eSAndroid Build Coastguard Worker method public void setDrawerArrowDrawable(android.support.v7.graphics.drawable.DrawerArrowDrawable); 10223*344a7f5eSAndroid Build Coastguard Worker method public void setDrawerIndicatorEnabled(boolean); 10224*344a7f5eSAndroid Build Coastguard Worker method public void setDrawerSlideAnimationEnabled(boolean); 10225*344a7f5eSAndroid Build Coastguard Worker method public void setHomeAsUpIndicator(android.graphics.drawable.Drawable); 10226*344a7f5eSAndroid Build Coastguard Worker method public void setHomeAsUpIndicator(int); 10227*344a7f5eSAndroid Build Coastguard Worker method public void setToolbarNavigationClickListener(android.view.View.OnClickListener); 10228*344a7f5eSAndroid Build Coastguard Worker method public void syncState(); 10229*344a7f5eSAndroid Build Coastguard Worker } 10230*344a7f5eSAndroid Build Coastguard Worker 10231*344a7f5eSAndroid Build Coastguard Worker public static abstract interface ActionBarDrawerToggle.Delegate { 10232*344a7f5eSAndroid Build Coastguard Worker method public abstract android.content.Context getActionBarThemedContext(); 10233*344a7f5eSAndroid Build Coastguard Worker method public abstract android.graphics.drawable.Drawable getThemeUpIndicator(); 10234*344a7f5eSAndroid Build Coastguard Worker method public abstract boolean isNavigationVisible(); 10235*344a7f5eSAndroid Build Coastguard Worker method public abstract void setActionBarDescription(int); 10236*344a7f5eSAndroid Build Coastguard Worker method public abstract void setActionBarUpIndicator(android.graphics.drawable.Drawable, int); 10237*344a7f5eSAndroid Build Coastguard Worker } 10238*344a7f5eSAndroid Build Coastguard Worker 10239*344a7f5eSAndroid Build Coastguard Worker public static abstract interface ActionBarDrawerToggle.DelegateProvider { 10240*344a7f5eSAndroid Build Coastguard Worker method public abstract android.support.v7.app.ActionBarDrawerToggle.Delegate getDrawerToggleDelegate(); 10241*344a7f5eSAndroid Build Coastguard Worker } 10242*344a7f5eSAndroid Build Coastguard Worker 10243*344a7f5eSAndroid Build Coastguard Worker public class AlertDialog extends android.support.v7.app.AppCompatDialog implements android.content.DialogInterface { 10244*344a7f5eSAndroid Build Coastguard Worker ctor protected AlertDialog(android.content.Context); 10245*344a7f5eSAndroid Build Coastguard Worker ctor protected AlertDialog(android.content.Context, int); 10246*344a7f5eSAndroid Build Coastguard Worker ctor protected AlertDialog(android.content.Context, boolean, android.content.DialogInterface.OnCancelListener); 10247*344a7f5eSAndroid Build Coastguard Worker method public android.widget.Button getButton(int); 10248*344a7f5eSAndroid Build Coastguard Worker method public android.widget.ListView getListView(); 10249*344a7f5eSAndroid Build Coastguard Worker method public void setButton(int, java.lang.CharSequence, android.os.Message); 10250*344a7f5eSAndroid Build Coastguard Worker method public void setButton(int, java.lang.CharSequence, android.content.DialogInterface.OnClickListener); 10251*344a7f5eSAndroid Build Coastguard Worker method public void setCustomTitle(android.view.View); 10252*344a7f5eSAndroid Build Coastguard Worker method public void setIcon(int); 10253*344a7f5eSAndroid Build Coastguard Worker method public void setIcon(android.graphics.drawable.Drawable); 10254*344a7f5eSAndroid Build Coastguard Worker method public void setIconAttribute(int); 10255*344a7f5eSAndroid Build Coastguard Worker method public void setMessage(java.lang.CharSequence); 10256*344a7f5eSAndroid Build Coastguard Worker method public void setView(android.view.View); 10257*344a7f5eSAndroid Build Coastguard Worker method public void setView(android.view.View, int, int, int, int); 10258*344a7f5eSAndroid Build Coastguard Worker } 10259*344a7f5eSAndroid Build Coastguard Worker 10260*344a7f5eSAndroid Build Coastguard Worker public static class AlertDialog.Builder { 10261*344a7f5eSAndroid Build Coastguard Worker ctor public AlertDialog.Builder(android.content.Context); 10262*344a7f5eSAndroid Build Coastguard Worker ctor public AlertDialog.Builder(android.content.Context, int); 10263*344a7f5eSAndroid Build Coastguard Worker method public android.support.v7.app.AlertDialog create(); 10264*344a7f5eSAndroid Build Coastguard Worker method public android.content.Context getContext(); 10265*344a7f5eSAndroid Build Coastguard Worker method public android.support.v7.app.AlertDialog.Builder setAdapter(android.widget.ListAdapter, android.content.DialogInterface.OnClickListener); 10266*344a7f5eSAndroid Build Coastguard Worker method public android.support.v7.app.AlertDialog.Builder setCancelable(boolean); 10267*344a7f5eSAndroid Build Coastguard Worker method public android.support.v7.app.AlertDialog.Builder setCursor(android.database.Cursor, android.content.DialogInterface.OnClickListener, java.lang.String); 10268*344a7f5eSAndroid Build Coastguard Worker method public android.support.v7.app.AlertDialog.Builder setCustomTitle(android.view.View); 10269*344a7f5eSAndroid Build Coastguard Worker method public android.support.v7.app.AlertDialog.Builder setIcon(int); 10270*344a7f5eSAndroid Build Coastguard Worker method public android.support.v7.app.AlertDialog.Builder setIcon(android.graphics.drawable.Drawable); 10271*344a7f5eSAndroid Build Coastguard Worker method public android.support.v7.app.AlertDialog.Builder setIconAttribute(int); 10272*344a7f5eSAndroid Build Coastguard Worker method public deprecated android.support.v7.app.AlertDialog.Builder setInverseBackgroundForced(boolean); 10273*344a7f5eSAndroid Build Coastguard Worker method public android.support.v7.app.AlertDialog.Builder setItems(int, android.content.DialogInterface.OnClickListener); 10274*344a7f5eSAndroid Build Coastguard Worker method public android.support.v7.app.AlertDialog.Builder setItems(java.lang.CharSequence[], android.content.DialogInterface.OnClickListener); 10275*344a7f5eSAndroid Build Coastguard Worker method public android.support.v7.app.AlertDialog.Builder setMessage(int); 10276*344a7f5eSAndroid Build Coastguard Worker method public android.support.v7.app.AlertDialog.Builder setMessage(java.lang.CharSequence); 10277*344a7f5eSAndroid Build Coastguard Worker method public android.support.v7.app.AlertDialog.Builder setMultiChoiceItems(int, boolean[], android.content.DialogInterface.OnMultiChoiceClickListener); 10278*344a7f5eSAndroid Build Coastguard Worker method public android.support.v7.app.AlertDialog.Builder setMultiChoiceItems(java.lang.CharSequence[], boolean[], android.content.DialogInterface.OnMultiChoiceClickListener); 10279*344a7f5eSAndroid Build Coastguard Worker method public android.support.v7.app.AlertDialog.Builder setMultiChoiceItems(android.database.Cursor, java.lang.String, java.lang.String, android.content.DialogInterface.OnMultiChoiceClickListener); 10280*344a7f5eSAndroid Build Coastguard Worker method public android.support.v7.app.AlertDialog.Builder setNegativeButton(int, android.content.DialogInterface.OnClickListener); 10281*344a7f5eSAndroid Build Coastguard Worker method public android.support.v7.app.AlertDialog.Builder setNegativeButton(java.lang.CharSequence, android.content.DialogInterface.OnClickListener); 10282*344a7f5eSAndroid Build Coastguard Worker method public android.support.v7.app.AlertDialog.Builder setNeutralButton(int, android.content.DialogInterface.OnClickListener); 10283*344a7f5eSAndroid Build Coastguard Worker method public android.support.v7.app.AlertDialog.Builder setNeutralButton(java.lang.CharSequence, android.content.DialogInterface.OnClickListener); 10284*344a7f5eSAndroid Build Coastguard Worker method public android.support.v7.app.AlertDialog.Builder setOnCancelListener(android.content.DialogInterface.OnCancelListener); 10285*344a7f5eSAndroid Build Coastguard Worker method public android.support.v7.app.AlertDialog.Builder setOnDismissListener(android.content.DialogInterface.OnDismissListener); 10286*344a7f5eSAndroid Build Coastguard Worker method public android.support.v7.app.AlertDialog.Builder setOnItemSelectedListener(android.widget.AdapterView.OnItemSelectedListener); 10287*344a7f5eSAndroid Build Coastguard Worker method public android.support.v7.app.AlertDialog.Builder setOnKeyListener(android.content.DialogInterface.OnKeyListener); 10288*344a7f5eSAndroid Build Coastguard Worker method public android.support.v7.app.AlertDialog.Builder setPositiveButton(int, android.content.DialogInterface.OnClickListener); 10289*344a7f5eSAndroid Build Coastguard Worker method public android.support.v7.app.AlertDialog.Builder setPositiveButton(java.lang.CharSequence, android.content.DialogInterface.OnClickListener); 10290*344a7f5eSAndroid Build Coastguard Worker method public android.support.v7.app.AlertDialog.Builder setSingleChoiceItems(int, int, android.content.DialogInterface.OnClickListener); 10291*344a7f5eSAndroid Build Coastguard Worker method public android.support.v7.app.AlertDialog.Builder setSingleChoiceItems(android.database.Cursor, int, java.lang.String, android.content.DialogInterface.OnClickListener); 10292*344a7f5eSAndroid Build Coastguard Worker method public android.support.v7.app.AlertDialog.Builder setSingleChoiceItems(java.lang.CharSequence[], int, android.content.DialogInterface.OnClickListener); 10293*344a7f5eSAndroid Build Coastguard Worker method public android.support.v7.app.AlertDialog.Builder setSingleChoiceItems(android.widget.ListAdapter, int, android.content.DialogInterface.OnClickListener); 10294*344a7f5eSAndroid Build Coastguard Worker method public android.support.v7.app.AlertDialog.Builder setTitle(int); 10295*344a7f5eSAndroid Build Coastguard Worker method public android.support.v7.app.AlertDialog.Builder setTitle(java.lang.CharSequence); 10296*344a7f5eSAndroid Build Coastguard Worker method public android.support.v7.app.AlertDialog.Builder setView(int); 10297*344a7f5eSAndroid Build Coastguard Worker method public android.support.v7.app.AlertDialog.Builder setView(android.view.View); 10298*344a7f5eSAndroid Build Coastguard Worker method public android.support.v7.app.AlertDialog show(); 10299*344a7f5eSAndroid Build Coastguard Worker } 10300*344a7f5eSAndroid Build Coastguard Worker 10301*344a7f5eSAndroid Build Coastguard Worker public class AppCompatActivity extends android.support.v4.app.FragmentActivity implements android.support.v7.app.ActionBarDrawerToggle.DelegateProvider android.support.v7.app.AppCompatCallback android.support.v4.app.TaskStackBuilder.SupportParentable { 10302*344a7f5eSAndroid Build Coastguard Worker ctor public AppCompatActivity(); 10303*344a7f5eSAndroid Build Coastguard Worker method public android.support.v7.app.AppCompatDelegate getDelegate(); 10304*344a7f5eSAndroid Build Coastguard Worker method public android.support.v7.app.ActionBarDrawerToggle.Delegate getDrawerToggleDelegate(); 10305*344a7f5eSAndroid Build Coastguard Worker method public android.support.v7.app.ActionBar getSupportActionBar(); 10306*344a7f5eSAndroid Build Coastguard Worker method public android.content.Intent getSupportParentActivityIntent(); 10307*344a7f5eSAndroid Build Coastguard Worker method public void onCreateSupportNavigateUpTaskStack(android.support.v4.app.TaskStackBuilder); 10308*344a7f5eSAndroid Build Coastguard Worker method public final boolean onMenuItemSelected(int, android.view.MenuItem); 10309*344a7f5eSAndroid Build Coastguard Worker method public void onPrepareSupportNavigateUpTaskStack(android.support.v4.app.TaskStackBuilder); 10310*344a7f5eSAndroid Build Coastguard Worker method public void onSupportActionModeFinished(android.support.v7.view.ActionMode); 10311*344a7f5eSAndroid Build Coastguard Worker method public void onSupportActionModeStarted(android.support.v7.view.ActionMode); 10312*344a7f5eSAndroid Build Coastguard Worker method public deprecated void onSupportContentChanged(); 10313*344a7f5eSAndroid Build Coastguard Worker method public boolean onSupportNavigateUp(); 10314*344a7f5eSAndroid Build Coastguard Worker method public android.support.v7.view.ActionMode onWindowStartingSupportActionMode(android.support.v7.view.ActionMode.Callback); 10315*344a7f5eSAndroid Build Coastguard Worker method public void setSupportActionBar(android.support.v7.widget.Toolbar); 10316*344a7f5eSAndroid Build Coastguard Worker method public deprecated void setSupportProgress(int); 10317*344a7f5eSAndroid Build Coastguard Worker method public deprecated void setSupportProgressBarIndeterminate(boolean); 10318*344a7f5eSAndroid Build Coastguard Worker method public deprecated void setSupportProgressBarIndeterminateVisibility(boolean); 10319*344a7f5eSAndroid Build Coastguard Worker method public deprecated void setSupportProgressBarVisibility(boolean); 10320*344a7f5eSAndroid Build Coastguard Worker method public android.support.v7.view.ActionMode startSupportActionMode(android.support.v7.view.ActionMode.Callback); 10321*344a7f5eSAndroid Build Coastguard Worker method public void supportNavigateUpTo(android.content.Intent); 10322*344a7f5eSAndroid Build Coastguard Worker method public boolean supportRequestWindowFeature(int); 10323*344a7f5eSAndroid Build Coastguard Worker method public boolean supportShouldUpRecreateTask(android.content.Intent); 10324*344a7f5eSAndroid Build Coastguard Worker } 10325*344a7f5eSAndroid Build Coastguard Worker 10326*344a7f5eSAndroid Build Coastguard Worker public abstract interface AppCompatCallback { 10327*344a7f5eSAndroid Build Coastguard Worker method public abstract void onSupportActionModeFinished(android.support.v7.view.ActionMode); 10328*344a7f5eSAndroid Build Coastguard Worker method public abstract void onSupportActionModeStarted(android.support.v7.view.ActionMode); 10329*344a7f5eSAndroid Build Coastguard Worker method public abstract android.support.v7.view.ActionMode onWindowStartingSupportActionMode(android.support.v7.view.ActionMode.Callback); 10330*344a7f5eSAndroid Build Coastguard Worker } 10331*344a7f5eSAndroid Build Coastguard Worker 10332*344a7f5eSAndroid Build Coastguard Worker public abstract class AppCompatDelegate { 10333*344a7f5eSAndroid Build Coastguard Worker method public abstract void addContentView(android.view.View, android.view.ViewGroup.LayoutParams); 10334*344a7f5eSAndroid Build Coastguard Worker method public abstract boolean applyDayNight(); 10335*344a7f5eSAndroid Build Coastguard Worker method public static android.support.v7.app.AppCompatDelegate create(android.app.Activity, android.support.v7.app.AppCompatCallback); 10336*344a7f5eSAndroid Build Coastguard Worker method public static android.support.v7.app.AppCompatDelegate create(android.app.Dialog, android.support.v7.app.AppCompatCallback); 10337*344a7f5eSAndroid Build Coastguard Worker method public abstract android.view.View createView(android.view.View, java.lang.String, android.content.Context, android.util.AttributeSet); 10338*344a7f5eSAndroid Build Coastguard Worker method public abstract <T extends android.view.View> T findViewById(int); 10339*344a7f5eSAndroid Build Coastguard Worker method public static int getDefaultNightMode(); 10340*344a7f5eSAndroid Build Coastguard Worker method public abstract android.support.v7.app.ActionBarDrawerToggle.Delegate getDrawerToggleDelegate(); 10341*344a7f5eSAndroid Build Coastguard Worker method public abstract android.view.MenuInflater getMenuInflater(); 10342*344a7f5eSAndroid Build Coastguard Worker method public abstract android.support.v7.app.ActionBar getSupportActionBar(); 10343*344a7f5eSAndroid Build Coastguard Worker method public abstract boolean hasWindowFeature(int); 10344*344a7f5eSAndroid Build Coastguard Worker method public abstract void installViewFactory(); 10345*344a7f5eSAndroid Build Coastguard Worker method public abstract void invalidateOptionsMenu(); 10346*344a7f5eSAndroid Build Coastguard Worker method public static boolean isCompatVectorFromResourcesEnabled(); 10347*344a7f5eSAndroid Build Coastguard Worker method public abstract boolean isHandleNativeActionModesEnabled(); 10348*344a7f5eSAndroid Build Coastguard Worker method public abstract void onConfigurationChanged(android.content.res.Configuration); 10349*344a7f5eSAndroid Build Coastguard Worker method public abstract void onCreate(android.os.Bundle); 10350*344a7f5eSAndroid Build Coastguard Worker method public abstract void onDestroy(); 10351*344a7f5eSAndroid Build Coastguard Worker method public abstract void onPostCreate(android.os.Bundle); 10352*344a7f5eSAndroid Build Coastguard Worker method public abstract void onPostResume(); 10353*344a7f5eSAndroid Build Coastguard Worker method public abstract void onSaveInstanceState(android.os.Bundle); 10354*344a7f5eSAndroid Build Coastguard Worker method public abstract void onStart(); 10355*344a7f5eSAndroid Build Coastguard Worker method public abstract void onStop(); 10356*344a7f5eSAndroid Build Coastguard Worker method public abstract boolean requestWindowFeature(int); 10357*344a7f5eSAndroid Build Coastguard Worker method public static void setCompatVectorFromResourcesEnabled(boolean); 10358*344a7f5eSAndroid Build Coastguard Worker method public abstract void setContentView(android.view.View); 10359*344a7f5eSAndroid Build Coastguard Worker method public abstract void setContentView(int); 10360*344a7f5eSAndroid Build Coastguard Worker method public abstract void setContentView(android.view.View, android.view.ViewGroup.LayoutParams); 10361*344a7f5eSAndroid Build Coastguard Worker method public static void setDefaultNightMode(int); 10362*344a7f5eSAndroid Build Coastguard Worker method public abstract void setHandleNativeActionModesEnabled(boolean); 10363*344a7f5eSAndroid Build Coastguard Worker method public abstract void setLocalNightMode(int); 10364*344a7f5eSAndroid Build Coastguard Worker method public abstract void setSupportActionBar(android.support.v7.widget.Toolbar); 10365*344a7f5eSAndroid Build Coastguard Worker method public abstract void setTitle(java.lang.CharSequence); 10366*344a7f5eSAndroid Build Coastguard Worker method public abstract android.support.v7.view.ActionMode startSupportActionMode(android.support.v7.view.ActionMode.Callback); 10367*344a7f5eSAndroid Build Coastguard Worker field public static final int FEATURE_ACTION_MODE_OVERLAY = 10; // 0xa 10368*344a7f5eSAndroid Build Coastguard Worker field public static final int FEATURE_SUPPORT_ACTION_BAR = 108; // 0x6c 10369*344a7f5eSAndroid Build Coastguard Worker field public static final int FEATURE_SUPPORT_ACTION_BAR_OVERLAY = 109; // 0x6d 10370*344a7f5eSAndroid Build Coastguard Worker field public static final int MODE_NIGHT_AUTO = 0; // 0x0 10371*344a7f5eSAndroid Build Coastguard Worker field public static final int MODE_NIGHT_FOLLOW_SYSTEM = -1; // 0xffffffff 10372*344a7f5eSAndroid Build Coastguard Worker field public static final int MODE_NIGHT_NO = 1; // 0x1 10373*344a7f5eSAndroid Build Coastguard Worker field public static final int MODE_NIGHT_YES = 2; // 0x2 10374*344a7f5eSAndroid Build Coastguard Worker } 10375*344a7f5eSAndroid Build Coastguard Worker 10376*344a7f5eSAndroid Build Coastguard Worker public class AppCompatDialog extends android.app.Dialog implements android.support.v7.app.AppCompatCallback { 10377*344a7f5eSAndroid Build Coastguard Worker ctor public AppCompatDialog(android.content.Context); 10378*344a7f5eSAndroid Build Coastguard Worker ctor public AppCompatDialog(android.content.Context, int); 10379*344a7f5eSAndroid Build Coastguard Worker ctor protected AppCompatDialog(android.content.Context, boolean, android.content.DialogInterface.OnCancelListener); 10380*344a7f5eSAndroid Build Coastguard Worker method public android.support.v7.app.AppCompatDelegate getDelegate(); 10381*344a7f5eSAndroid Build Coastguard Worker method public android.support.v7.app.ActionBar getSupportActionBar(); 10382*344a7f5eSAndroid Build Coastguard Worker method public void onSupportActionModeFinished(android.support.v7.view.ActionMode); 10383*344a7f5eSAndroid Build Coastguard Worker method public void onSupportActionModeStarted(android.support.v7.view.ActionMode); 10384*344a7f5eSAndroid Build Coastguard Worker method public android.support.v7.view.ActionMode onWindowStartingSupportActionMode(android.support.v7.view.ActionMode.Callback); 10385*344a7f5eSAndroid Build Coastguard Worker method public boolean supportRequestWindowFeature(int); 10386*344a7f5eSAndroid Build Coastguard Worker } 10387*344a7f5eSAndroid Build Coastguard Worker 10388*344a7f5eSAndroid Build Coastguard Worker public class AppCompatDialogFragment extends android.support.v4.app.DialogFragment { 10389*344a7f5eSAndroid Build Coastguard Worker ctor public AppCompatDialogFragment(); 10390*344a7f5eSAndroid Build Coastguard Worker } 10391*344a7f5eSAndroid Build Coastguard Worker 10392*344a7f5eSAndroid Build Coastguard Worker public class MediaRouteActionProvider extends android.support.v4.view.ActionProvider { 10393*344a7f5eSAndroid Build Coastguard Worker ctor public MediaRouteActionProvider(android.content.Context); 10394*344a7f5eSAndroid Build Coastguard Worker method public android.support.v7.app.MediaRouteDialogFactory getDialogFactory(); 10395*344a7f5eSAndroid Build Coastguard Worker method public android.support.v7.app.MediaRouteButton getMediaRouteButton(); 10396*344a7f5eSAndroid Build Coastguard Worker method public android.support.v7.media.MediaRouteSelector getRouteSelector(); 10397*344a7f5eSAndroid Build Coastguard Worker method public android.view.View onCreateActionView(); 10398*344a7f5eSAndroid Build Coastguard Worker method public android.support.v7.app.MediaRouteButton onCreateMediaRouteButton(); 10399*344a7f5eSAndroid Build Coastguard Worker method public void setDialogFactory(android.support.v7.app.MediaRouteDialogFactory); 10400*344a7f5eSAndroid Build Coastguard Worker method public void setRouteSelector(android.support.v7.media.MediaRouteSelector); 10401*344a7f5eSAndroid Build Coastguard Worker } 10402*344a7f5eSAndroid Build Coastguard Worker 10403*344a7f5eSAndroid Build Coastguard Worker public class MediaRouteButton extends android.view.View { 10404*344a7f5eSAndroid Build Coastguard Worker ctor public MediaRouteButton(android.content.Context); 10405*344a7f5eSAndroid Build Coastguard Worker ctor public MediaRouteButton(android.content.Context, android.util.AttributeSet); 10406*344a7f5eSAndroid Build Coastguard Worker ctor public MediaRouteButton(android.content.Context, android.util.AttributeSet, int); 10407*344a7f5eSAndroid Build Coastguard Worker method public android.support.v7.app.MediaRouteDialogFactory getDialogFactory(); 10408*344a7f5eSAndroid Build Coastguard Worker method public android.support.v7.media.MediaRouteSelector getRouteSelector(); 10409*344a7f5eSAndroid Build Coastguard Worker method public void onAttachedToWindow(); 10410*344a7f5eSAndroid Build Coastguard Worker method public void onDetachedFromWindow(); 10411*344a7f5eSAndroid Build Coastguard Worker method public void setDialogFactory(android.support.v7.app.MediaRouteDialogFactory); 10412*344a7f5eSAndroid Build Coastguard Worker method public void setRemoteIndicatorDrawable(android.graphics.drawable.Drawable); 10413*344a7f5eSAndroid Build Coastguard Worker method public void setRouteSelector(android.support.v7.media.MediaRouteSelector); 10414*344a7f5eSAndroid Build Coastguard Worker method public boolean showDialog(); 10415*344a7f5eSAndroid Build Coastguard Worker } 10416*344a7f5eSAndroid Build Coastguard Worker 10417*344a7f5eSAndroid Build Coastguard Worker public class MediaRouteChooserDialog extends android.support.v7.app.AppCompatDialog { 10418*344a7f5eSAndroid Build Coastguard Worker ctor public MediaRouteChooserDialog(android.content.Context); 10419*344a7f5eSAndroid Build Coastguard Worker ctor public MediaRouteChooserDialog(android.content.Context, int); 10420*344a7f5eSAndroid Build Coastguard Worker method public android.support.v7.media.MediaRouteSelector getRouteSelector(); 10421*344a7f5eSAndroid Build Coastguard Worker method public boolean onFilterRoute(android.support.v7.media.MediaRouter.RouteInfo); 10422*344a7f5eSAndroid Build Coastguard Worker method public void onFilterRoutes(java.util.List<android.support.v7.media.MediaRouter.RouteInfo>); 10423*344a7f5eSAndroid Build Coastguard Worker method public void refreshRoutes(); 10424*344a7f5eSAndroid Build Coastguard Worker method public void setRouteSelector(android.support.v7.media.MediaRouteSelector); 10425*344a7f5eSAndroid Build Coastguard Worker } 10426*344a7f5eSAndroid Build Coastguard Worker 10427*344a7f5eSAndroid Build Coastguard Worker public class MediaRouteChooserDialogFragment extends android.support.v4.app.DialogFragment { 10428*344a7f5eSAndroid Build Coastguard Worker ctor public MediaRouteChooserDialogFragment(); 10429*344a7f5eSAndroid Build Coastguard Worker method public android.support.v7.media.MediaRouteSelector getRouteSelector(); 10430*344a7f5eSAndroid Build Coastguard Worker method public android.support.v7.app.MediaRouteChooserDialog onCreateChooserDialog(android.content.Context, android.os.Bundle); 10431*344a7f5eSAndroid Build Coastguard Worker method public void setRouteSelector(android.support.v7.media.MediaRouteSelector); 10432*344a7f5eSAndroid Build Coastguard Worker } 10433*344a7f5eSAndroid Build Coastguard Worker 10434*344a7f5eSAndroid Build Coastguard Worker public class MediaRouteControllerDialog extends android.support.v7.app.AlertDialog { 10435*344a7f5eSAndroid Build Coastguard Worker ctor public MediaRouteControllerDialog(android.content.Context); 10436*344a7f5eSAndroid Build Coastguard Worker ctor public MediaRouteControllerDialog(android.content.Context, int); 10437*344a7f5eSAndroid Build Coastguard Worker method public android.view.View getMediaControlView(); 10438*344a7f5eSAndroid Build Coastguard Worker method public android.support.v4.media.session.MediaSessionCompat.Token getMediaSession(); 10439*344a7f5eSAndroid Build Coastguard Worker method public android.support.v7.media.MediaRouter.RouteInfo getRoute(); 10440*344a7f5eSAndroid Build Coastguard Worker method public boolean isVolumeControlEnabled(); 10441*344a7f5eSAndroid Build Coastguard Worker method public android.view.View onCreateMediaControlView(android.os.Bundle); 10442*344a7f5eSAndroid Build Coastguard Worker method public void setVolumeControlEnabled(boolean); 10443*344a7f5eSAndroid Build Coastguard Worker } 10444*344a7f5eSAndroid Build Coastguard Worker 10445*344a7f5eSAndroid Build Coastguard Worker public class MediaRouteControllerDialogFragment extends android.support.v4.app.DialogFragment { 10446*344a7f5eSAndroid Build Coastguard Worker ctor public MediaRouteControllerDialogFragment(); 10447*344a7f5eSAndroid Build Coastguard Worker method public android.support.v7.app.MediaRouteControllerDialog onCreateControllerDialog(android.content.Context, android.os.Bundle); 10448*344a7f5eSAndroid Build Coastguard Worker } 10449*344a7f5eSAndroid Build Coastguard Worker 10450*344a7f5eSAndroid Build Coastguard Worker public class MediaRouteDialogFactory { 10451*344a7f5eSAndroid Build Coastguard Worker ctor public MediaRouteDialogFactory(); 10452*344a7f5eSAndroid Build Coastguard Worker method public static android.support.v7.app.MediaRouteDialogFactory getDefault(); 10453*344a7f5eSAndroid Build Coastguard Worker method public android.support.v7.app.MediaRouteChooserDialogFragment onCreateChooserDialogFragment(); 10454*344a7f5eSAndroid Build Coastguard Worker method public android.support.v7.app.MediaRouteControllerDialogFragment onCreateControllerDialogFragment(); 10455*344a7f5eSAndroid Build Coastguard Worker } 10456*344a7f5eSAndroid Build Coastguard Worker 10457*344a7f5eSAndroid Build Coastguard Worker public class MediaRouteDiscoveryFragment extends android.support.v4.app.Fragment { 10458*344a7f5eSAndroid Build Coastguard Worker ctor public MediaRouteDiscoveryFragment(); 10459*344a7f5eSAndroid Build Coastguard Worker method public android.support.v7.media.MediaRouter getMediaRouter(); 10460*344a7f5eSAndroid Build Coastguard Worker method public android.support.v7.media.MediaRouteSelector getRouteSelector(); 10461*344a7f5eSAndroid Build Coastguard Worker method public android.support.v7.media.MediaRouter.Callback onCreateCallback(); 10462*344a7f5eSAndroid Build Coastguard Worker method public int onPrepareCallbackFlags(); 10463*344a7f5eSAndroid Build Coastguard Worker method public void setRouteSelector(android.support.v7.media.MediaRouteSelector); 10464*344a7f5eSAndroid Build Coastguard Worker } 10465*344a7f5eSAndroid Build Coastguard Worker 10466*344a7f5eSAndroid Build Coastguard Worker public class NotificationCompat extends android.support.v4.app.NotificationCompat { 10467*344a7f5eSAndroid Build Coastguard Worker ctor public NotificationCompat(); 10468*344a7f5eSAndroid Build Coastguard Worker method public static android.support.v4.media.session.MediaSessionCompat.Token getMediaSession(android.app.Notification); 10469*344a7f5eSAndroid Build Coastguard Worker } 10470*344a7f5eSAndroid Build Coastguard Worker 10471*344a7f5eSAndroid Build Coastguard Worker public static class NotificationCompat.Builder extends android.support.v4.app.NotificationCompat.Builder { 10472*344a7f5eSAndroid Build Coastguard Worker ctor public NotificationCompat.Builder(android.content.Context); 10473*344a7f5eSAndroid Build Coastguard Worker } 10474*344a7f5eSAndroid Build Coastguard Worker 10475*344a7f5eSAndroid Build Coastguard Worker public static class NotificationCompat.DecoratedCustomViewStyle extends android.support.v4.app.NotificationCompat.Style { 10476*344a7f5eSAndroid Build Coastguard Worker ctor public NotificationCompat.DecoratedCustomViewStyle(); 10477*344a7f5eSAndroid Build Coastguard Worker } 10478*344a7f5eSAndroid Build Coastguard Worker 10479*344a7f5eSAndroid Build Coastguard Worker public static class NotificationCompat.DecoratedMediaCustomViewStyle extends android.support.v7.app.NotificationCompat.MediaStyle { 10480*344a7f5eSAndroid Build Coastguard Worker ctor public NotificationCompat.DecoratedMediaCustomViewStyle(); 10481*344a7f5eSAndroid Build Coastguard Worker } 10482*344a7f5eSAndroid Build Coastguard Worker 10483*344a7f5eSAndroid Build Coastguard Worker public static class NotificationCompat.MediaStyle extends android.support.v4.app.NotificationCompat.Style { 10484*344a7f5eSAndroid Build Coastguard Worker ctor public NotificationCompat.MediaStyle(); 10485*344a7f5eSAndroid Build Coastguard Worker ctor public NotificationCompat.MediaStyle(android.support.v4.app.NotificationCompat.Builder); 10486*344a7f5eSAndroid Build Coastguard Worker method public android.support.v7.app.NotificationCompat.MediaStyle setCancelButtonIntent(android.app.PendingIntent); 10487*344a7f5eSAndroid Build Coastguard Worker method public android.support.v7.app.NotificationCompat.MediaStyle setMediaSession(android.support.v4.media.session.MediaSessionCompat.Token); 10488*344a7f5eSAndroid Build Coastguard Worker method public android.support.v7.app.NotificationCompat.MediaStyle setShowActionsInCompactView(int...); 10489*344a7f5eSAndroid Build Coastguard Worker method public android.support.v7.app.NotificationCompat.MediaStyle setShowCancelButton(boolean); 10490*344a7f5eSAndroid Build Coastguard Worker } 10491*344a7f5eSAndroid Build Coastguard Worker 10492*344a7f5eSAndroid Build Coastguard Worker} 10493*344a7f5eSAndroid Build Coastguard Worker 10494*344a7f5eSAndroid Build Coastguard Workerpackage android.support.v7.content.res { 10495*344a7f5eSAndroid Build Coastguard Worker 10496*344a7f5eSAndroid Build Coastguard Worker public final class AppCompatResources { 10497*344a7f5eSAndroid Build Coastguard Worker method public static android.content.res.ColorStateList getColorStateList(android.content.Context, int); 10498*344a7f5eSAndroid Build Coastguard Worker method public static android.graphics.drawable.Drawable getDrawable(android.content.Context, int); 10499*344a7f5eSAndroid Build Coastguard Worker } 10500*344a7f5eSAndroid Build Coastguard Worker 10501*344a7f5eSAndroid Build Coastguard Worker} 10502*344a7f5eSAndroid Build Coastguard Worker 10503*344a7f5eSAndroid Build Coastguard Workerpackage android.support.v7.graphics { 10504*344a7f5eSAndroid Build Coastguard Worker 10505*344a7f5eSAndroid Build Coastguard Worker public final class Palette { 10506*344a7f5eSAndroid Build Coastguard Worker method public static android.support.v7.graphics.Palette.Builder from(android.graphics.Bitmap); 10507*344a7f5eSAndroid Build Coastguard Worker method public static android.support.v7.graphics.Palette from(java.util.List<android.support.v7.graphics.Palette.Swatch>); 10508*344a7f5eSAndroid Build Coastguard Worker method public static deprecated android.support.v7.graphics.Palette generate(android.graphics.Bitmap); 10509*344a7f5eSAndroid Build Coastguard Worker method public static deprecated android.support.v7.graphics.Palette generate(android.graphics.Bitmap, int); 10510*344a7f5eSAndroid Build Coastguard Worker method public static deprecated android.os.AsyncTask<android.graphics.Bitmap, java.lang.Void, android.support.v7.graphics.Palette> generateAsync(android.graphics.Bitmap, android.support.v7.graphics.Palette.PaletteAsyncListener); 10511*344a7f5eSAndroid Build Coastguard Worker method public static deprecated android.os.AsyncTask<android.graphics.Bitmap, java.lang.Void, android.support.v7.graphics.Palette> generateAsync(android.graphics.Bitmap, int, android.support.v7.graphics.Palette.PaletteAsyncListener); 10512*344a7f5eSAndroid Build Coastguard Worker method public int getColorForTarget(android.support.v7.graphics.Target, int); 10513*344a7f5eSAndroid Build Coastguard Worker method public int getDarkMutedColor(int); 10514*344a7f5eSAndroid Build Coastguard Worker method public android.support.v7.graphics.Palette.Swatch getDarkMutedSwatch(); 10515*344a7f5eSAndroid Build Coastguard Worker method public int getDarkVibrantColor(int); 10516*344a7f5eSAndroid Build Coastguard Worker method public android.support.v7.graphics.Palette.Swatch getDarkVibrantSwatch(); 10517*344a7f5eSAndroid Build Coastguard Worker method public int getDominantColor(int); 10518*344a7f5eSAndroid Build Coastguard Worker method public android.support.v7.graphics.Palette.Swatch getDominantSwatch(); 10519*344a7f5eSAndroid Build Coastguard Worker method public int getLightMutedColor(int); 10520*344a7f5eSAndroid Build Coastguard Worker method public android.support.v7.graphics.Palette.Swatch getLightMutedSwatch(); 10521*344a7f5eSAndroid Build Coastguard Worker method public int getLightVibrantColor(int); 10522*344a7f5eSAndroid Build Coastguard Worker method public android.support.v7.graphics.Palette.Swatch getLightVibrantSwatch(); 10523*344a7f5eSAndroid Build Coastguard Worker method public int getMutedColor(int); 10524*344a7f5eSAndroid Build Coastguard Worker method public android.support.v7.graphics.Palette.Swatch getMutedSwatch(); 10525*344a7f5eSAndroid Build Coastguard Worker method public android.support.v7.graphics.Palette.Swatch getSwatchForTarget(android.support.v7.graphics.Target); 10526*344a7f5eSAndroid Build Coastguard Worker method public java.util.List<android.support.v7.graphics.Palette.Swatch> getSwatches(); 10527*344a7f5eSAndroid Build Coastguard Worker method public java.util.List<android.support.v7.graphics.Target> getTargets(); 10528*344a7f5eSAndroid Build Coastguard Worker method public int getVibrantColor(int); 10529*344a7f5eSAndroid Build Coastguard Worker method public android.support.v7.graphics.Palette.Swatch getVibrantSwatch(); 10530*344a7f5eSAndroid Build Coastguard Worker } 10531*344a7f5eSAndroid Build Coastguard Worker 10532*344a7f5eSAndroid Build Coastguard Worker public static final class Palette.Builder { 10533*344a7f5eSAndroid Build Coastguard Worker ctor public Palette.Builder(android.graphics.Bitmap); 10534*344a7f5eSAndroid Build Coastguard Worker ctor public Palette.Builder(java.util.List<android.support.v7.graphics.Palette.Swatch>); 10535*344a7f5eSAndroid Build Coastguard Worker method public android.support.v7.graphics.Palette.Builder addFilter(android.support.v7.graphics.Palette.Filter); 10536*344a7f5eSAndroid Build Coastguard Worker method public android.support.v7.graphics.Palette.Builder addTarget(android.support.v7.graphics.Target); 10537*344a7f5eSAndroid Build Coastguard Worker method public android.support.v7.graphics.Palette.Builder clearFilters(); 10538*344a7f5eSAndroid Build Coastguard Worker method public android.support.v7.graphics.Palette.Builder clearRegion(); 10539*344a7f5eSAndroid Build Coastguard Worker method public android.support.v7.graphics.Palette.Builder clearTargets(); 10540*344a7f5eSAndroid Build Coastguard Worker method public android.support.v7.graphics.Palette generate(); 10541*344a7f5eSAndroid Build Coastguard Worker method public android.os.AsyncTask<android.graphics.Bitmap, java.lang.Void, android.support.v7.graphics.Palette> generate(android.support.v7.graphics.Palette.PaletteAsyncListener); 10542*344a7f5eSAndroid Build Coastguard Worker method public android.support.v7.graphics.Palette.Builder maximumColorCount(int); 10543*344a7f5eSAndroid Build Coastguard Worker method public android.support.v7.graphics.Palette.Builder resizeBitmapArea(int); 10544*344a7f5eSAndroid Build Coastguard Worker method public deprecated android.support.v7.graphics.Palette.Builder resizeBitmapSize(int); 10545*344a7f5eSAndroid Build Coastguard Worker method public android.support.v7.graphics.Palette.Builder setRegion(int, int, int, int); 10546*344a7f5eSAndroid Build Coastguard Worker } 10547*344a7f5eSAndroid Build Coastguard Worker 10548*344a7f5eSAndroid Build Coastguard Worker public static abstract interface Palette.Filter { 10549*344a7f5eSAndroid Build Coastguard Worker method public abstract boolean isAllowed(int, float[]); 10550*344a7f5eSAndroid Build Coastguard Worker } 10551*344a7f5eSAndroid Build Coastguard Worker 10552*344a7f5eSAndroid Build Coastguard Worker public static abstract interface Palette.PaletteAsyncListener { 10553*344a7f5eSAndroid Build Coastguard Worker method public abstract void onGenerated(android.support.v7.graphics.Palette); 10554*344a7f5eSAndroid Build Coastguard Worker } 10555*344a7f5eSAndroid Build Coastguard Worker 10556*344a7f5eSAndroid Build Coastguard Worker public static final class Palette.Swatch { 10557*344a7f5eSAndroid Build Coastguard Worker ctor public Palette.Swatch(int, int); 10558*344a7f5eSAndroid Build Coastguard Worker method public int getBodyTextColor(); 10559*344a7f5eSAndroid Build Coastguard Worker method public float[] getHsl(); 10560*344a7f5eSAndroid Build Coastguard Worker method public int getPopulation(); 10561*344a7f5eSAndroid Build Coastguard Worker method public int getRgb(); 10562*344a7f5eSAndroid Build Coastguard Worker method public int getTitleTextColor(); 10563*344a7f5eSAndroid Build Coastguard Worker } 10564*344a7f5eSAndroid Build Coastguard Worker 10565*344a7f5eSAndroid Build Coastguard Worker public final class Target { 10566*344a7f5eSAndroid Build Coastguard Worker method public float getLightnessWeight(); 10567*344a7f5eSAndroid Build Coastguard Worker method public float getMaximumLightness(); 10568*344a7f5eSAndroid Build Coastguard Worker method public float getMaximumSaturation(); 10569*344a7f5eSAndroid Build Coastguard Worker method public float getMinimumLightness(); 10570*344a7f5eSAndroid Build Coastguard Worker method public float getMinimumSaturation(); 10571*344a7f5eSAndroid Build Coastguard Worker method public float getPopulationWeight(); 10572*344a7f5eSAndroid Build Coastguard Worker method public float getSaturationWeight(); 10573*344a7f5eSAndroid Build Coastguard Worker method public float getTargetLightness(); 10574*344a7f5eSAndroid Build Coastguard Worker method public float getTargetSaturation(); 10575*344a7f5eSAndroid Build Coastguard Worker method public boolean isExclusive(); 10576*344a7f5eSAndroid Build Coastguard Worker field public static final android.support.v7.graphics.Target DARK_MUTED; 10577*344a7f5eSAndroid Build Coastguard Worker field public static final android.support.v7.graphics.Target DARK_VIBRANT; 10578*344a7f5eSAndroid Build Coastguard Worker field public static final android.support.v7.graphics.Target LIGHT_MUTED; 10579*344a7f5eSAndroid Build Coastguard Worker field public static final android.support.v7.graphics.Target LIGHT_VIBRANT; 10580*344a7f5eSAndroid Build Coastguard Worker field public static final android.support.v7.graphics.Target MUTED; 10581*344a7f5eSAndroid Build Coastguard Worker field public static final android.support.v7.graphics.Target VIBRANT; 10582*344a7f5eSAndroid Build Coastguard Worker } 10583*344a7f5eSAndroid Build Coastguard Worker 10584*344a7f5eSAndroid Build Coastguard Worker public static final class Target.Builder { 10585*344a7f5eSAndroid Build Coastguard Worker ctor public Target.Builder(); 10586*344a7f5eSAndroid Build Coastguard Worker ctor public Target.Builder(android.support.v7.graphics.Target); 10587*344a7f5eSAndroid Build Coastguard Worker method public android.support.v7.graphics.Target build(); 10588*344a7f5eSAndroid Build Coastguard Worker method public android.support.v7.graphics.Target.Builder setExclusive(boolean); 10589*344a7f5eSAndroid Build Coastguard Worker method public android.support.v7.graphics.Target.Builder setLightnessWeight(float); 10590*344a7f5eSAndroid Build Coastguard Worker method public android.support.v7.graphics.Target.Builder setMaximumLightness(float); 10591*344a7f5eSAndroid Build Coastguard Worker method public android.support.v7.graphics.Target.Builder setMaximumSaturation(float); 10592*344a7f5eSAndroid Build Coastguard Worker method public android.support.v7.graphics.Target.Builder setMinimumLightness(float); 10593*344a7f5eSAndroid Build Coastguard Worker method public android.support.v7.graphics.Target.Builder setMinimumSaturation(float); 10594*344a7f5eSAndroid Build Coastguard Worker method public android.support.v7.graphics.Target.Builder setPopulationWeight(float); 10595*344a7f5eSAndroid Build Coastguard Worker method public android.support.v7.graphics.Target.Builder setSaturationWeight(float); 10596*344a7f5eSAndroid Build Coastguard Worker method public android.support.v7.graphics.Target.Builder setTargetLightness(float); 10597*344a7f5eSAndroid Build Coastguard Worker method public android.support.v7.graphics.Target.Builder setTargetSaturation(float); 10598*344a7f5eSAndroid Build Coastguard Worker } 10599*344a7f5eSAndroid Build Coastguard Worker 10600*344a7f5eSAndroid Build Coastguard Worker} 10601*344a7f5eSAndroid Build Coastguard Worker 10602*344a7f5eSAndroid Build Coastguard Workerpackage android.support.v7.graphics.drawable { 10603*344a7f5eSAndroid Build Coastguard Worker 10604*344a7f5eSAndroid Build Coastguard Worker public class DrawerArrowDrawable extends android.graphics.drawable.Drawable { 10605*344a7f5eSAndroid Build Coastguard Worker ctor public DrawerArrowDrawable(android.content.Context); 10606*344a7f5eSAndroid Build Coastguard Worker method public void draw(android.graphics.Canvas); 10607*344a7f5eSAndroid Build Coastguard Worker method public float getArrowHeadLength(); 10608*344a7f5eSAndroid Build Coastguard Worker method public float getArrowShaftLength(); 10609*344a7f5eSAndroid Build Coastguard Worker method public float getBarLength(); 10610*344a7f5eSAndroid Build Coastguard Worker method public float getBarThickness(); 10611*344a7f5eSAndroid Build Coastguard Worker method public int getColor(); 10612*344a7f5eSAndroid Build Coastguard Worker method public int getDirection(); 10613*344a7f5eSAndroid Build Coastguard Worker method public float getGapSize(); 10614*344a7f5eSAndroid Build Coastguard Worker method public int getOpacity(); 10615*344a7f5eSAndroid Build Coastguard Worker method public final android.graphics.Paint getPaint(); 10616*344a7f5eSAndroid Build Coastguard Worker method public float getProgress(); 10617*344a7f5eSAndroid Build Coastguard Worker method public boolean isSpinEnabled(); 10618*344a7f5eSAndroid Build Coastguard Worker method public void setAlpha(int); 10619*344a7f5eSAndroid Build Coastguard Worker method public void setArrowHeadLength(float); 10620*344a7f5eSAndroid Build Coastguard Worker method public void setArrowShaftLength(float); 10621*344a7f5eSAndroid Build Coastguard Worker method public void setBarLength(float); 10622*344a7f5eSAndroid Build Coastguard Worker method public void setBarThickness(float); 10623*344a7f5eSAndroid Build Coastguard Worker method public void setColor(int); 10624*344a7f5eSAndroid Build Coastguard Worker method public void setColorFilter(android.graphics.ColorFilter); 10625*344a7f5eSAndroid Build Coastguard Worker method public void setDirection(int); 10626*344a7f5eSAndroid Build Coastguard Worker method public void setGapSize(float); 10627*344a7f5eSAndroid Build Coastguard Worker method public void setProgress(float); 10628*344a7f5eSAndroid Build Coastguard Worker method public void setSpinEnabled(boolean); 10629*344a7f5eSAndroid Build Coastguard Worker method public void setVerticalMirror(boolean); 10630*344a7f5eSAndroid Build Coastguard Worker field public static final int ARROW_DIRECTION_END = 3; // 0x3 10631*344a7f5eSAndroid Build Coastguard Worker field public static final int ARROW_DIRECTION_LEFT = 0; // 0x0 10632*344a7f5eSAndroid Build Coastguard Worker field public static final int ARROW_DIRECTION_RIGHT = 1; // 0x1 10633*344a7f5eSAndroid Build Coastguard Worker field public static final int ARROW_DIRECTION_START = 2; // 0x2 10634*344a7f5eSAndroid Build Coastguard Worker } 10635*344a7f5eSAndroid Build Coastguard Worker 10636*344a7f5eSAndroid Build Coastguard Worker} 10637*344a7f5eSAndroid Build Coastguard Worker 10638*344a7f5eSAndroid Build Coastguard Workerpackage android.support.v7.media { 10639*344a7f5eSAndroid Build Coastguard Worker 10640*344a7f5eSAndroid Build Coastguard Worker public final class MediaControlIntent { 10641*344a7f5eSAndroid Build Coastguard Worker field public static final java.lang.String ACTION_END_SESSION = "android.media.intent.action.END_SESSION"; 10642*344a7f5eSAndroid Build Coastguard Worker field public static final java.lang.String ACTION_ENQUEUE = "android.media.intent.action.ENQUEUE"; 10643*344a7f5eSAndroid Build Coastguard Worker field public static final java.lang.String ACTION_GET_SESSION_STATUS = "android.media.intent.action.GET_SESSION_STATUS"; 10644*344a7f5eSAndroid Build Coastguard Worker field public static final java.lang.String ACTION_GET_STATUS = "android.media.intent.action.GET_STATUS"; 10645*344a7f5eSAndroid Build Coastguard Worker field public static final java.lang.String ACTION_PAUSE = "android.media.intent.action.PAUSE"; 10646*344a7f5eSAndroid Build Coastguard Worker field public static final java.lang.String ACTION_PLAY = "android.media.intent.action.PLAY"; 10647*344a7f5eSAndroid Build Coastguard Worker field public static final java.lang.String ACTION_REMOVE = "android.media.intent.action.REMOVE"; 10648*344a7f5eSAndroid Build Coastguard Worker field public static final java.lang.String ACTION_RESUME = "android.media.intent.action.RESUME"; 10649*344a7f5eSAndroid Build Coastguard Worker field public static final java.lang.String ACTION_SEEK = "android.media.intent.action.SEEK"; 10650*344a7f5eSAndroid Build Coastguard Worker field public static final java.lang.String ACTION_SEND_MESSAGE = "android.media.intent.action.SEND_MESSAGE"; 10651*344a7f5eSAndroid Build Coastguard Worker field public static final java.lang.String ACTION_START_SESSION = "android.media.intent.action.START_SESSION"; 10652*344a7f5eSAndroid Build Coastguard Worker field public static final java.lang.String ACTION_STOP = "android.media.intent.action.STOP"; 10653*344a7f5eSAndroid Build Coastguard Worker field public static final java.lang.String CATEGORY_LIVE_AUDIO = "android.media.intent.category.LIVE_AUDIO"; 10654*344a7f5eSAndroid Build Coastguard Worker field public static final java.lang.String CATEGORY_LIVE_VIDEO = "android.media.intent.category.LIVE_VIDEO"; 10655*344a7f5eSAndroid Build Coastguard Worker field public static final java.lang.String CATEGORY_REMOTE_PLAYBACK = "android.media.intent.category.REMOTE_PLAYBACK"; 10656*344a7f5eSAndroid Build Coastguard Worker field public static final int ERROR_INVALID_ITEM_ID = 3; // 0x3 10657*344a7f5eSAndroid Build Coastguard Worker field public static final int ERROR_INVALID_SESSION_ID = 2; // 0x2 10658*344a7f5eSAndroid Build Coastguard Worker field public static final int ERROR_UNKNOWN = 0; // 0x0 10659*344a7f5eSAndroid Build Coastguard Worker field public static final int ERROR_UNSUPPORTED_OPERATION = 1; // 0x1 10660*344a7f5eSAndroid Build Coastguard Worker field public static final java.lang.String EXTRA_ERROR_CODE = "android.media.intent.extra.ERROR_CODE"; 10661*344a7f5eSAndroid Build Coastguard Worker field public static final java.lang.String EXTRA_ITEM_CONTENT_POSITION = "android.media.intent.extra.ITEM_POSITION"; 10662*344a7f5eSAndroid Build Coastguard Worker field public static final java.lang.String EXTRA_ITEM_HTTP_HEADERS = "android.media.intent.extra.HTTP_HEADERS"; 10663*344a7f5eSAndroid Build Coastguard Worker field public static final java.lang.String EXTRA_ITEM_ID = "android.media.intent.extra.ITEM_ID"; 10664*344a7f5eSAndroid Build Coastguard Worker field public static final java.lang.String EXTRA_ITEM_METADATA = "android.media.intent.extra.ITEM_METADATA"; 10665*344a7f5eSAndroid Build Coastguard Worker field public static final java.lang.String EXTRA_ITEM_STATUS = "android.media.intent.extra.ITEM_STATUS"; 10666*344a7f5eSAndroid Build Coastguard Worker field public static final java.lang.String EXTRA_ITEM_STATUS_UPDATE_RECEIVER = "android.media.intent.extra.ITEM_STATUS_UPDATE_RECEIVER"; 10667*344a7f5eSAndroid Build Coastguard Worker field public static final java.lang.String EXTRA_MESSAGE = "android.media.intent.extra.MESSAGE"; 10668*344a7f5eSAndroid Build Coastguard Worker field public static final java.lang.String EXTRA_MESSAGE_RECEIVER = "android.media.intent.extra.MESSAGE_RECEIVER"; 10669*344a7f5eSAndroid Build Coastguard Worker field public static final java.lang.String EXTRA_SESSION_ID = "android.media.intent.extra.SESSION_ID"; 10670*344a7f5eSAndroid Build Coastguard Worker field public static final java.lang.String EXTRA_SESSION_STATUS = "android.media.intent.extra.SESSION_STATUS"; 10671*344a7f5eSAndroid Build Coastguard Worker field public static final java.lang.String EXTRA_SESSION_STATUS_UPDATE_RECEIVER = "android.media.intent.extra.SESSION_STATUS_UPDATE_RECEIVER"; 10672*344a7f5eSAndroid Build Coastguard Worker } 10673*344a7f5eSAndroid Build Coastguard Worker 10674*344a7f5eSAndroid Build Coastguard Worker public final class MediaItemMetadata { 10675*344a7f5eSAndroid Build Coastguard Worker field public static final java.lang.String KEY_ALBUM_ARTIST = "android.media.metadata.ALBUM_ARTIST"; 10676*344a7f5eSAndroid Build Coastguard Worker field public static final java.lang.String KEY_ALBUM_TITLE = "android.media.metadata.ALBUM_TITLE"; 10677*344a7f5eSAndroid Build Coastguard Worker field public static final java.lang.String KEY_ARTIST = "android.media.metadata.ARTIST"; 10678*344a7f5eSAndroid Build Coastguard Worker field public static final java.lang.String KEY_ARTWORK_URI = "android.media.metadata.ARTWORK_URI"; 10679*344a7f5eSAndroid Build Coastguard Worker field public static final java.lang.String KEY_AUTHOR = "android.media.metadata.AUTHOR"; 10680*344a7f5eSAndroid Build Coastguard Worker field public static final java.lang.String KEY_COMPOSER = "android.media.metadata.COMPOSER"; 10681*344a7f5eSAndroid Build Coastguard Worker field public static final java.lang.String KEY_DISC_NUMBER = "android.media.metadata.DISC_NUMBER"; 10682*344a7f5eSAndroid Build Coastguard Worker field public static final java.lang.String KEY_DURATION = "android.media.metadata.DURATION"; 10683*344a7f5eSAndroid Build Coastguard Worker field public static final java.lang.String KEY_TITLE = "android.media.metadata.TITLE"; 10684*344a7f5eSAndroid Build Coastguard Worker field public static final java.lang.String KEY_TRACK_NUMBER = "android.media.metadata.TRACK_NUMBER"; 10685*344a7f5eSAndroid Build Coastguard Worker field public static final java.lang.String KEY_YEAR = "android.media.metadata.YEAR"; 10686*344a7f5eSAndroid Build Coastguard Worker } 10687*344a7f5eSAndroid Build Coastguard Worker 10688*344a7f5eSAndroid Build Coastguard Worker public final class MediaItemStatus { 10689*344a7f5eSAndroid Build Coastguard Worker method public android.os.Bundle asBundle(); 10690*344a7f5eSAndroid Build Coastguard Worker method public static android.support.v7.media.MediaItemStatus fromBundle(android.os.Bundle); 10691*344a7f5eSAndroid Build Coastguard Worker method public long getContentDuration(); 10692*344a7f5eSAndroid Build Coastguard Worker method public long getContentPosition(); 10693*344a7f5eSAndroid Build Coastguard Worker method public android.os.Bundle getExtras(); 10694*344a7f5eSAndroid Build Coastguard Worker method public int getPlaybackState(); 10695*344a7f5eSAndroid Build Coastguard Worker method public long getTimestamp(); 10696*344a7f5eSAndroid Build Coastguard Worker field public static final java.lang.String EXTRA_HTTP_RESPONSE_HEADERS = "android.media.status.extra.HTTP_RESPONSE_HEADERS"; 10697*344a7f5eSAndroid Build Coastguard Worker field public static final java.lang.String EXTRA_HTTP_STATUS_CODE = "android.media.status.extra.HTTP_STATUS_CODE"; 10698*344a7f5eSAndroid Build Coastguard Worker field public static final int PLAYBACK_STATE_BUFFERING = 3; // 0x3 10699*344a7f5eSAndroid Build Coastguard Worker field public static final int PLAYBACK_STATE_CANCELED = 5; // 0x5 10700*344a7f5eSAndroid Build Coastguard Worker field public static final int PLAYBACK_STATE_ERROR = 7; // 0x7 10701*344a7f5eSAndroid Build Coastguard Worker field public static final int PLAYBACK_STATE_FINISHED = 4; // 0x4 10702*344a7f5eSAndroid Build Coastguard Worker field public static final int PLAYBACK_STATE_INVALIDATED = 6; // 0x6 10703*344a7f5eSAndroid Build Coastguard Worker field public static final int PLAYBACK_STATE_PAUSED = 2; // 0x2 10704*344a7f5eSAndroid Build Coastguard Worker field public static final int PLAYBACK_STATE_PENDING = 0; // 0x0 10705*344a7f5eSAndroid Build Coastguard Worker field public static final int PLAYBACK_STATE_PLAYING = 1; // 0x1 10706*344a7f5eSAndroid Build Coastguard Worker } 10707*344a7f5eSAndroid Build Coastguard Worker 10708*344a7f5eSAndroid Build Coastguard Worker public static final class MediaItemStatus.Builder { 10709*344a7f5eSAndroid Build Coastguard Worker ctor public MediaItemStatus.Builder(int); 10710*344a7f5eSAndroid Build Coastguard Worker ctor public MediaItemStatus.Builder(android.support.v7.media.MediaItemStatus); 10711*344a7f5eSAndroid Build Coastguard Worker method public android.support.v7.media.MediaItemStatus build(); 10712*344a7f5eSAndroid Build Coastguard Worker method public android.support.v7.media.MediaItemStatus.Builder setContentDuration(long); 10713*344a7f5eSAndroid Build Coastguard Worker method public android.support.v7.media.MediaItemStatus.Builder setContentPosition(long); 10714*344a7f5eSAndroid Build Coastguard Worker method public android.support.v7.media.MediaItemStatus.Builder setExtras(android.os.Bundle); 10715*344a7f5eSAndroid Build Coastguard Worker method public android.support.v7.media.MediaItemStatus.Builder setPlaybackState(int); 10716*344a7f5eSAndroid Build Coastguard Worker method public android.support.v7.media.MediaItemStatus.Builder setTimestamp(long); 10717*344a7f5eSAndroid Build Coastguard Worker } 10718*344a7f5eSAndroid Build Coastguard Worker 10719*344a7f5eSAndroid Build Coastguard Worker public final class MediaRouteDescriptor { 10720*344a7f5eSAndroid Build Coastguard Worker method public android.os.Bundle asBundle(); 10721*344a7f5eSAndroid Build Coastguard Worker method public boolean canDisconnectAndKeepPlaying(); 10722*344a7f5eSAndroid Build Coastguard Worker method public static android.support.v7.media.MediaRouteDescriptor fromBundle(android.os.Bundle); 10723*344a7f5eSAndroid Build Coastguard Worker method public int getConnectionState(); 10724*344a7f5eSAndroid Build Coastguard Worker method public java.util.List<android.content.IntentFilter> getControlFilters(); 10725*344a7f5eSAndroid Build Coastguard Worker method public java.lang.String getDescription(); 10726*344a7f5eSAndroid Build Coastguard Worker method public int getDeviceType(); 10727*344a7f5eSAndroid Build Coastguard Worker method public android.os.Bundle getExtras(); 10728*344a7f5eSAndroid Build Coastguard Worker method public android.net.Uri getIconUri(); 10729*344a7f5eSAndroid Build Coastguard Worker method public java.lang.String getId(); 10730*344a7f5eSAndroid Build Coastguard Worker method public java.lang.String getName(); 10731*344a7f5eSAndroid Build Coastguard Worker method public int getPlaybackStream(); 10732*344a7f5eSAndroid Build Coastguard Worker method public int getPlaybackType(); 10733*344a7f5eSAndroid Build Coastguard Worker method public int getPresentationDisplayId(); 10734*344a7f5eSAndroid Build Coastguard Worker method public android.content.IntentSender getSettingsActivity(); 10735*344a7f5eSAndroid Build Coastguard Worker method public int getVolume(); 10736*344a7f5eSAndroid Build Coastguard Worker method public int getVolumeHandling(); 10737*344a7f5eSAndroid Build Coastguard Worker method public int getVolumeMax(); 10738*344a7f5eSAndroid Build Coastguard Worker method public deprecated boolean isConnecting(); 10739*344a7f5eSAndroid Build Coastguard Worker method public boolean isEnabled(); 10740*344a7f5eSAndroid Build Coastguard Worker method public boolean isValid(); 10741*344a7f5eSAndroid Build Coastguard Worker } 10742*344a7f5eSAndroid Build Coastguard Worker 10743*344a7f5eSAndroid Build Coastguard Worker public static final class MediaRouteDescriptor.Builder { 10744*344a7f5eSAndroid Build Coastguard Worker ctor public MediaRouteDescriptor.Builder(java.lang.String, java.lang.String); 10745*344a7f5eSAndroid Build Coastguard Worker ctor public MediaRouteDescriptor.Builder(android.support.v7.media.MediaRouteDescriptor); 10746*344a7f5eSAndroid Build Coastguard Worker method public android.support.v7.media.MediaRouteDescriptor.Builder addControlFilter(android.content.IntentFilter); 10747*344a7f5eSAndroid Build Coastguard Worker method public android.support.v7.media.MediaRouteDescriptor.Builder addControlFilters(java.util.Collection<android.content.IntentFilter>); 10748*344a7f5eSAndroid Build Coastguard Worker method public android.support.v7.media.MediaRouteDescriptor build(); 10749*344a7f5eSAndroid Build Coastguard Worker method public android.support.v7.media.MediaRouteDescriptor.Builder setCanDisconnect(boolean); 10750*344a7f5eSAndroid Build Coastguard Worker method public deprecated android.support.v7.media.MediaRouteDescriptor.Builder setConnecting(boolean); 10751*344a7f5eSAndroid Build Coastguard Worker method public android.support.v7.media.MediaRouteDescriptor.Builder setConnectionState(int); 10752*344a7f5eSAndroid Build Coastguard Worker method public android.support.v7.media.MediaRouteDescriptor.Builder setDescription(java.lang.String); 10753*344a7f5eSAndroid Build Coastguard Worker method public android.support.v7.media.MediaRouteDescriptor.Builder setDeviceType(int); 10754*344a7f5eSAndroid Build Coastguard Worker method public android.support.v7.media.MediaRouteDescriptor.Builder setEnabled(boolean); 10755*344a7f5eSAndroid Build Coastguard Worker method public android.support.v7.media.MediaRouteDescriptor.Builder setExtras(android.os.Bundle); 10756*344a7f5eSAndroid Build Coastguard Worker method public android.support.v7.media.MediaRouteDescriptor.Builder setIconUri(android.net.Uri); 10757*344a7f5eSAndroid Build Coastguard Worker method public android.support.v7.media.MediaRouteDescriptor.Builder setId(java.lang.String); 10758*344a7f5eSAndroid Build Coastguard Worker method public android.support.v7.media.MediaRouteDescriptor.Builder setName(java.lang.String); 10759*344a7f5eSAndroid Build Coastguard Worker method public android.support.v7.media.MediaRouteDescriptor.Builder setPlaybackStream(int); 10760*344a7f5eSAndroid Build Coastguard Worker method public android.support.v7.media.MediaRouteDescriptor.Builder setPlaybackType(int); 10761*344a7f5eSAndroid Build Coastguard Worker method public android.support.v7.media.MediaRouteDescriptor.Builder setPresentationDisplayId(int); 10762*344a7f5eSAndroid Build Coastguard Worker method public android.support.v7.media.MediaRouteDescriptor.Builder setSettingsActivity(android.content.IntentSender); 10763*344a7f5eSAndroid Build Coastguard Worker method public android.support.v7.media.MediaRouteDescriptor.Builder setVolume(int); 10764*344a7f5eSAndroid Build Coastguard Worker method public android.support.v7.media.MediaRouteDescriptor.Builder setVolumeHandling(int); 10765*344a7f5eSAndroid Build Coastguard Worker method public android.support.v7.media.MediaRouteDescriptor.Builder setVolumeMax(int); 10766*344a7f5eSAndroid Build Coastguard Worker } 10767*344a7f5eSAndroid Build Coastguard Worker 10768*344a7f5eSAndroid Build Coastguard Worker public final class MediaRouteDiscoveryRequest { 10769*344a7f5eSAndroid Build Coastguard Worker ctor public MediaRouteDiscoveryRequest(android.support.v7.media.MediaRouteSelector, boolean); 10770*344a7f5eSAndroid Build Coastguard Worker method public android.os.Bundle asBundle(); 10771*344a7f5eSAndroid Build Coastguard Worker method public static android.support.v7.media.MediaRouteDiscoveryRequest fromBundle(android.os.Bundle); 10772*344a7f5eSAndroid Build Coastguard Worker method public android.support.v7.media.MediaRouteSelector getSelector(); 10773*344a7f5eSAndroid Build Coastguard Worker method public boolean isActiveScan(); 10774*344a7f5eSAndroid Build Coastguard Worker method public boolean isValid(); 10775*344a7f5eSAndroid Build Coastguard Worker } 10776*344a7f5eSAndroid Build Coastguard Worker 10777*344a7f5eSAndroid Build Coastguard Worker public abstract class MediaRouteProvider { 10778*344a7f5eSAndroid Build Coastguard Worker ctor public MediaRouteProvider(android.content.Context); 10779*344a7f5eSAndroid Build Coastguard Worker method public final android.content.Context getContext(); 10780*344a7f5eSAndroid Build Coastguard Worker method public final android.support.v7.media.MediaRouteProviderDescriptor getDescriptor(); 10781*344a7f5eSAndroid Build Coastguard Worker method public final android.support.v7.media.MediaRouteDiscoveryRequest getDiscoveryRequest(); 10782*344a7f5eSAndroid Build Coastguard Worker method public final android.os.Handler getHandler(); 10783*344a7f5eSAndroid Build Coastguard Worker method public final android.support.v7.media.MediaRouteProvider.ProviderMetadata getMetadata(); 10784*344a7f5eSAndroid Build Coastguard Worker method public android.support.v7.media.MediaRouteProvider.RouteController onCreateRouteController(java.lang.String); 10785*344a7f5eSAndroid Build Coastguard Worker method public void onDiscoveryRequestChanged(android.support.v7.media.MediaRouteDiscoveryRequest); 10786*344a7f5eSAndroid Build Coastguard Worker method public final void setCallback(android.support.v7.media.MediaRouteProvider.Callback); 10787*344a7f5eSAndroid Build Coastguard Worker method public final void setDescriptor(android.support.v7.media.MediaRouteProviderDescriptor); 10788*344a7f5eSAndroid Build Coastguard Worker method public final void setDiscoveryRequest(android.support.v7.media.MediaRouteDiscoveryRequest); 10789*344a7f5eSAndroid Build Coastguard Worker } 10790*344a7f5eSAndroid Build Coastguard Worker 10791*344a7f5eSAndroid Build Coastguard Worker public static abstract class MediaRouteProvider.Callback { 10792*344a7f5eSAndroid Build Coastguard Worker ctor public MediaRouteProvider.Callback(); 10793*344a7f5eSAndroid Build Coastguard Worker method public void onDescriptorChanged(android.support.v7.media.MediaRouteProvider, android.support.v7.media.MediaRouteProviderDescriptor); 10794*344a7f5eSAndroid Build Coastguard Worker } 10795*344a7f5eSAndroid Build Coastguard Worker 10796*344a7f5eSAndroid Build Coastguard Worker public static final class MediaRouteProvider.ProviderMetadata { 10797*344a7f5eSAndroid Build Coastguard Worker method public android.content.ComponentName getComponentName(); 10798*344a7f5eSAndroid Build Coastguard Worker method public java.lang.String getPackageName(); 10799*344a7f5eSAndroid Build Coastguard Worker } 10800*344a7f5eSAndroid Build Coastguard Worker 10801*344a7f5eSAndroid Build Coastguard Worker public static abstract class MediaRouteProvider.RouteController { 10802*344a7f5eSAndroid Build Coastguard Worker ctor public MediaRouteProvider.RouteController(); 10803*344a7f5eSAndroid Build Coastguard Worker method public boolean onControlRequest(android.content.Intent, android.support.v7.media.MediaRouter.ControlRequestCallback); 10804*344a7f5eSAndroid Build Coastguard Worker method public void onRelease(); 10805*344a7f5eSAndroid Build Coastguard Worker method public void onSelect(); 10806*344a7f5eSAndroid Build Coastguard Worker method public void onSetVolume(int); 10807*344a7f5eSAndroid Build Coastguard Worker method public void onUnselect(); 10808*344a7f5eSAndroid Build Coastguard Worker method public void onUnselect(int); 10809*344a7f5eSAndroid Build Coastguard Worker method public void onUpdateVolume(int); 10810*344a7f5eSAndroid Build Coastguard Worker } 10811*344a7f5eSAndroid Build Coastguard Worker 10812*344a7f5eSAndroid Build Coastguard Worker public final class MediaRouteProviderDescriptor { 10813*344a7f5eSAndroid Build Coastguard Worker method public android.os.Bundle asBundle(); 10814*344a7f5eSAndroid Build Coastguard Worker method public static android.support.v7.media.MediaRouteProviderDescriptor fromBundle(android.os.Bundle); 10815*344a7f5eSAndroid Build Coastguard Worker method public java.util.List<android.support.v7.media.MediaRouteDescriptor> getRoutes(); 10816*344a7f5eSAndroid Build Coastguard Worker method public boolean isValid(); 10817*344a7f5eSAndroid Build Coastguard Worker } 10818*344a7f5eSAndroid Build Coastguard Worker 10819*344a7f5eSAndroid Build Coastguard Worker public static final class MediaRouteProviderDescriptor.Builder { 10820*344a7f5eSAndroid Build Coastguard Worker ctor public MediaRouteProviderDescriptor.Builder(); 10821*344a7f5eSAndroid Build Coastguard Worker ctor public MediaRouteProviderDescriptor.Builder(android.support.v7.media.MediaRouteProviderDescriptor); 10822*344a7f5eSAndroid Build Coastguard Worker method public android.support.v7.media.MediaRouteProviderDescriptor.Builder addRoute(android.support.v7.media.MediaRouteDescriptor); 10823*344a7f5eSAndroid Build Coastguard Worker method public android.support.v7.media.MediaRouteProviderDescriptor.Builder addRoutes(java.util.Collection<android.support.v7.media.MediaRouteDescriptor>); 10824*344a7f5eSAndroid Build Coastguard Worker method public android.support.v7.media.MediaRouteProviderDescriptor build(); 10825*344a7f5eSAndroid Build Coastguard Worker } 10826*344a7f5eSAndroid Build Coastguard Worker 10827*344a7f5eSAndroid Build Coastguard Worker public abstract class MediaRouteProviderService extends android.app.Service { 10828*344a7f5eSAndroid Build Coastguard Worker ctor public MediaRouteProviderService(); 10829*344a7f5eSAndroid Build Coastguard Worker method public android.support.v7.media.MediaRouteProvider getMediaRouteProvider(); 10830*344a7f5eSAndroid Build Coastguard Worker method public android.os.IBinder onBind(android.content.Intent); 10831*344a7f5eSAndroid Build Coastguard Worker method public abstract android.support.v7.media.MediaRouteProvider onCreateMediaRouteProvider(); 10832*344a7f5eSAndroid Build Coastguard Worker field public static final java.lang.String SERVICE_INTERFACE = "android.media.MediaRouteProviderService"; 10833*344a7f5eSAndroid Build Coastguard Worker } 10834*344a7f5eSAndroid Build Coastguard Worker 10835*344a7f5eSAndroid Build Coastguard Worker public final class MediaRouteSelector { 10836*344a7f5eSAndroid Build Coastguard Worker method public android.os.Bundle asBundle(); 10837*344a7f5eSAndroid Build Coastguard Worker method public boolean contains(android.support.v7.media.MediaRouteSelector); 10838*344a7f5eSAndroid Build Coastguard Worker method public static android.support.v7.media.MediaRouteSelector fromBundle(android.os.Bundle); 10839*344a7f5eSAndroid Build Coastguard Worker method public java.util.List<java.lang.String> getControlCategories(); 10840*344a7f5eSAndroid Build Coastguard Worker method public boolean hasControlCategory(java.lang.String); 10841*344a7f5eSAndroid Build Coastguard Worker method public boolean isEmpty(); 10842*344a7f5eSAndroid Build Coastguard Worker method public boolean isValid(); 10843*344a7f5eSAndroid Build Coastguard Worker method public boolean matchesControlFilters(java.util.List<android.content.IntentFilter>); 10844*344a7f5eSAndroid Build Coastguard Worker field public static final android.support.v7.media.MediaRouteSelector EMPTY; 10845*344a7f5eSAndroid Build Coastguard Worker } 10846*344a7f5eSAndroid Build Coastguard Worker 10847*344a7f5eSAndroid Build Coastguard Worker public static final class MediaRouteSelector.Builder { 10848*344a7f5eSAndroid Build Coastguard Worker ctor public MediaRouteSelector.Builder(); 10849*344a7f5eSAndroid Build Coastguard Worker ctor public MediaRouteSelector.Builder(android.support.v7.media.MediaRouteSelector); 10850*344a7f5eSAndroid Build Coastguard Worker method public android.support.v7.media.MediaRouteSelector.Builder addControlCategories(java.util.Collection<java.lang.String>); 10851*344a7f5eSAndroid Build Coastguard Worker method public android.support.v7.media.MediaRouteSelector.Builder addControlCategory(java.lang.String); 10852*344a7f5eSAndroid Build Coastguard Worker method public android.support.v7.media.MediaRouteSelector.Builder addSelector(android.support.v7.media.MediaRouteSelector); 10853*344a7f5eSAndroid Build Coastguard Worker method public android.support.v7.media.MediaRouteSelector build(); 10854*344a7f5eSAndroid Build Coastguard Worker } 10855*344a7f5eSAndroid Build Coastguard Worker 10856*344a7f5eSAndroid Build Coastguard Worker public final class MediaRouter { 10857*344a7f5eSAndroid Build Coastguard Worker method public void addCallback(android.support.v7.media.MediaRouteSelector, android.support.v7.media.MediaRouter.Callback); 10858*344a7f5eSAndroid Build Coastguard Worker method public void addCallback(android.support.v7.media.MediaRouteSelector, android.support.v7.media.MediaRouter.Callback, int); 10859*344a7f5eSAndroid Build Coastguard Worker method public void addProvider(android.support.v7.media.MediaRouteProvider); 10860*344a7f5eSAndroid Build Coastguard Worker method public void addRemoteControlClient(java.lang.Object); 10861*344a7f5eSAndroid Build Coastguard Worker method public android.support.v7.media.MediaRouter.RouteInfo getBluetoothRoute(); 10862*344a7f5eSAndroid Build Coastguard Worker method public android.support.v7.media.MediaRouter.RouteInfo getDefaultRoute(); 10863*344a7f5eSAndroid Build Coastguard Worker method public static android.support.v7.media.MediaRouter getInstance(android.content.Context); 10864*344a7f5eSAndroid Build Coastguard Worker method public android.support.v4.media.session.MediaSessionCompat.Token getMediaSessionToken(); 10865*344a7f5eSAndroid Build Coastguard Worker method public java.util.List<android.support.v7.media.MediaRouter.ProviderInfo> getProviders(); 10866*344a7f5eSAndroid Build Coastguard Worker method public java.util.List<android.support.v7.media.MediaRouter.RouteInfo> getRoutes(); 10867*344a7f5eSAndroid Build Coastguard Worker method public android.support.v7.media.MediaRouter.RouteInfo getSelectedRoute(); 10868*344a7f5eSAndroid Build Coastguard Worker method public boolean isRouteAvailable(android.support.v7.media.MediaRouteSelector, int); 10869*344a7f5eSAndroid Build Coastguard Worker method public void removeCallback(android.support.v7.media.MediaRouter.Callback); 10870*344a7f5eSAndroid Build Coastguard Worker method public void removeProvider(android.support.v7.media.MediaRouteProvider); 10871*344a7f5eSAndroid Build Coastguard Worker method public void removeRemoteControlClient(java.lang.Object); 10872*344a7f5eSAndroid Build Coastguard Worker method public void selectRoute(android.support.v7.media.MediaRouter.RouteInfo); 10873*344a7f5eSAndroid Build Coastguard Worker method public void setMediaSession(java.lang.Object); 10874*344a7f5eSAndroid Build Coastguard Worker method public void setMediaSessionCompat(android.support.v4.media.session.MediaSessionCompat); 10875*344a7f5eSAndroid Build Coastguard Worker method public void unselect(int); 10876*344a7f5eSAndroid Build Coastguard Worker method public android.support.v7.media.MediaRouter.RouteInfo updateSelectedRoute(android.support.v7.media.MediaRouteSelector); 10877*344a7f5eSAndroid Build Coastguard Worker field public static final int AVAILABILITY_FLAG_IGNORE_DEFAULT_ROUTE = 1; // 0x1 10878*344a7f5eSAndroid Build Coastguard Worker field public static final int AVAILABILITY_FLAG_REQUIRE_MATCH = 2; // 0x2 10879*344a7f5eSAndroid Build Coastguard Worker field public static final int CALLBACK_FLAG_FORCE_DISCOVERY = 8; // 0x8 10880*344a7f5eSAndroid Build Coastguard Worker field public static final int CALLBACK_FLAG_PERFORM_ACTIVE_SCAN = 1; // 0x1 10881*344a7f5eSAndroid Build Coastguard Worker field public static final int CALLBACK_FLAG_REQUEST_DISCOVERY = 4; // 0x4 10882*344a7f5eSAndroid Build Coastguard Worker field public static final int CALLBACK_FLAG_UNFILTERED_EVENTS = 2; // 0x2 10883*344a7f5eSAndroid Build Coastguard Worker field public static final int UNSELECT_REASON_DISCONNECTED = 1; // 0x1 10884*344a7f5eSAndroid Build Coastguard Worker field public static final int UNSELECT_REASON_ROUTE_CHANGED = 3; // 0x3 10885*344a7f5eSAndroid Build Coastguard Worker field public static final int UNSELECT_REASON_STOPPED = 2; // 0x2 10886*344a7f5eSAndroid Build Coastguard Worker field public static final int UNSELECT_REASON_UNKNOWN = 0; // 0x0 10887*344a7f5eSAndroid Build Coastguard Worker } 10888*344a7f5eSAndroid Build Coastguard Worker 10889*344a7f5eSAndroid Build Coastguard Worker public static abstract class MediaRouter.Callback { 10890*344a7f5eSAndroid Build Coastguard Worker ctor public MediaRouter.Callback(); 10891*344a7f5eSAndroid Build Coastguard Worker method public void onProviderAdded(android.support.v7.media.MediaRouter, android.support.v7.media.MediaRouter.ProviderInfo); 10892*344a7f5eSAndroid Build Coastguard Worker method public void onProviderChanged(android.support.v7.media.MediaRouter, android.support.v7.media.MediaRouter.ProviderInfo); 10893*344a7f5eSAndroid Build Coastguard Worker method public void onProviderRemoved(android.support.v7.media.MediaRouter, android.support.v7.media.MediaRouter.ProviderInfo); 10894*344a7f5eSAndroid Build Coastguard Worker method public void onRouteAdded(android.support.v7.media.MediaRouter, android.support.v7.media.MediaRouter.RouteInfo); 10895*344a7f5eSAndroid Build Coastguard Worker method public void onRouteChanged(android.support.v7.media.MediaRouter, android.support.v7.media.MediaRouter.RouteInfo); 10896*344a7f5eSAndroid Build Coastguard Worker method public void onRoutePresentationDisplayChanged(android.support.v7.media.MediaRouter, android.support.v7.media.MediaRouter.RouteInfo); 10897*344a7f5eSAndroid Build Coastguard Worker method public void onRouteRemoved(android.support.v7.media.MediaRouter, android.support.v7.media.MediaRouter.RouteInfo); 10898*344a7f5eSAndroid Build Coastguard Worker method public void onRouteSelected(android.support.v7.media.MediaRouter, android.support.v7.media.MediaRouter.RouteInfo); 10899*344a7f5eSAndroid Build Coastguard Worker method public void onRouteUnselected(android.support.v7.media.MediaRouter, android.support.v7.media.MediaRouter.RouteInfo); 10900*344a7f5eSAndroid Build Coastguard Worker method public void onRouteUnselected(android.support.v7.media.MediaRouter, android.support.v7.media.MediaRouter.RouteInfo, int); 10901*344a7f5eSAndroid Build Coastguard Worker method public void onRouteVolumeChanged(android.support.v7.media.MediaRouter, android.support.v7.media.MediaRouter.RouteInfo); 10902*344a7f5eSAndroid Build Coastguard Worker } 10903*344a7f5eSAndroid Build Coastguard Worker 10904*344a7f5eSAndroid Build Coastguard Worker public static abstract class MediaRouter.ControlRequestCallback { 10905*344a7f5eSAndroid Build Coastguard Worker ctor public MediaRouter.ControlRequestCallback(); 10906*344a7f5eSAndroid Build Coastguard Worker method public void onError(java.lang.String, android.os.Bundle); 10907*344a7f5eSAndroid Build Coastguard Worker method public void onResult(android.os.Bundle); 10908*344a7f5eSAndroid Build Coastguard Worker } 10909*344a7f5eSAndroid Build Coastguard Worker 10910*344a7f5eSAndroid Build Coastguard Worker public static final class MediaRouter.ProviderInfo { 10911*344a7f5eSAndroid Build Coastguard Worker method public android.content.ComponentName getComponentName(); 10912*344a7f5eSAndroid Build Coastguard Worker method public java.lang.String getPackageName(); 10913*344a7f5eSAndroid Build Coastguard Worker method public android.support.v7.media.MediaRouteProvider getProviderInstance(); 10914*344a7f5eSAndroid Build Coastguard Worker method public java.util.List<android.support.v7.media.MediaRouter.RouteInfo> getRoutes(); 10915*344a7f5eSAndroid Build Coastguard Worker } 10916*344a7f5eSAndroid Build Coastguard Worker 10917*344a7f5eSAndroid Build Coastguard Worker public static class MediaRouter.RouteInfo { 10918*344a7f5eSAndroid Build Coastguard Worker method public boolean canDisconnect(); 10919*344a7f5eSAndroid Build Coastguard Worker method public int getConnectionState(); 10920*344a7f5eSAndroid Build Coastguard Worker method public java.util.List<android.content.IntentFilter> getControlFilters(); 10921*344a7f5eSAndroid Build Coastguard Worker method public java.lang.String getDescription(); 10922*344a7f5eSAndroid Build Coastguard Worker method public int getDeviceType(); 10923*344a7f5eSAndroid Build Coastguard Worker method public android.os.Bundle getExtras(); 10924*344a7f5eSAndroid Build Coastguard Worker method public android.net.Uri getIconUri(); 10925*344a7f5eSAndroid Build Coastguard Worker method public java.lang.String getId(); 10926*344a7f5eSAndroid Build Coastguard Worker method public java.lang.String getName(); 10927*344a7f5eSAndroid Build Coastguard Worker method public int getPlaybackStream(); 10928*344a7f5eSAndroid Build Coastguard Worker method public int getPlaybackType(); 10929*344a7f5eSAndroid Build Coastguard Worker method public android.view.Display getPresentationDisplay(); 10930*344a7f5eSAndroid Build Coastguard Worker method public android.support.v7.media.MediaRouter.ProviderInfo getProvider(); 10931*344a7f5eSAndroid Build Coastguard Worker method public android.content.IntentSender getSettingsIntent(); 10932*344a7f5eSAndroid Build Coastguard Worker method public int getVolume(); 10933*344a7f5eSAndroid Build Coastguard Worker method public int getVolumeHandling(); 10934*344a7f5eSAndroid Build Coastguard Worker method public int getVolumeMax(); 10935*344a7f5eSAndroid Build Coastguard Worker method public boolean isBluetooth(); 10936*344a7f5eSAndroid Build Coastguard Worker method public boolean isConnecting(); 10937*344a7f5eSAndroid Build Coastguard Worker method public boolean isDefault(); 10938*344a7f5eSAndroid Build Coastguard Worker method public boolean isDeviceSpeaker(); 10939*344a7f5eSAndroid Build Coastguard Worker method public boolean isEnabled(); 10940*344a7f5eSAndroid Build Coastguard Worker method public boolean isSelected(); 10941*344a7f5eSAndroid Build Coastguard Worker method public boolean matchesSelector(android.support.v7.media.MediaRouteSelector); 10942*344a7f5eSAndroid Build Coastguard Worker method public void requestSetVolume(int); 10943*344a7f5eSAndroid Build Coastguard Worker method public void requestUpdateVolume(int); 10944*344a7f5eSAndroid Build Coastguard Worker method public void select(); 10945*344a7f5eSAndroid Build Coastguard Worker method public void sendControlRequest(android.content.Intent, android.support.v7.media.MediaRouter.ControlRequestCallback); 10946*344a7f5eSAndroid Build Coastguard Worker method public boolean supportsControlAction(java.lang.String, java.lang.String); 10947*344a7f5eSAndroid Build Coastguard Worker method public boolean supportsControlCategory(java.lang.String); 10948*344a7f5eSAndroid Build Coastguard Worker method public boolean supportsControlRequest(android.content.Intent); 10949*344a7f5eSAndroid Build Coastguard Worker field public static final int CONNECTION_STATE_CONNECTED = 2; // 0x2 10950*344a7f5eSAndroid Build Coastguard Worker field public static final int CONNECTION_STATE_CONNECTING = 1; // 0x1 10951*344a7f5eSAndroid Build Coastguard Worker field public static final int CONNECTION_STATE_DISCONNECTED = 0; // 0x0 10952*344a7f5eSAndroid Build Coastguard Worker field public static final int DEVICE_TYPE_SPEAKER = 2; // 0x2 10953*344a7f5eSAndroid Build Coastguard Worker field public static final int DEVICE_TYPE_TV = 1; // 0x1 10954*344a7f5eSAndroid Build Coastguard Worker field public static final int PLAYBACK_TYPE_LOCAL = 0; // 0x0 10955*344a7f5eSAndroid Build Coastguard Worker field public static final int PLAYBACK_TYPE_REMOTE = 1; // 0x1 10956*344a7f5eSAndroid Build Coastguard Worker field public static final int PLAYBACK_VOLUME_FIXED = 0; // 0x0 10957*344a7f5eSAndroid Build Coastguard Worker field public static final int PLAYBACK_VOLUME_VARIABLE = 1; // 0x1 10958*344a7f5eSAndroid Build Coastguard Worker } 10959*344a7f5eSAndroid Build Coastguard Worker 10960*344a7f5eSAndroid Build Coastguard Worker public final class MediaSessionStatus { 10961*344a7f5eSAndroid Build Coastguard Worker method public android.os.Bundle asBundle(); 10962*344a7f5eSAndroid Build Coastguard Worker method public static android.support.v7.media.MediaSessionStatus fromBundle(android.os.Bundle); 10963*344a7f5eSAndroid Build Coastguard Worker method public android.os.Bundle getExtras(); 10964*344a7f5eSAndroid Build Coastguard Worker method public int getSessionState(); 10965*344a7f5eSAndroid Build Coastguard Worker method public long getTimestamp(); 10966*344a7f5eSAndroid Build Coastguard Worker method public boolean isQueuePaused(); 10967*344a7f5eSAndroid Build Coastguard Worker field public static final int SESSION_STATE_ACTIVE = 0; // 0x0 10968*344a7f5eSAndroid Build Coastguard Worker field public static final int SESSION_STATE_ENDED = 1; // 0x1 10969*344a7f5eSAndroid Build Coastguard Worker field public static final int SESSION_STATE_INVALIDATED = 2; // 0x2 10970*344a7f5eSAndroid Build Coastguard Worker } 10971*344a7f5eSAndroid Build Coastguard Worker 10972*344a7f5eSAndroid Build Coastguard Worker public static final class MediaSessionStatus.Builder { 10973*344a7f5eSAndroid Build Coastguard Worker ctor public MediaSessionStatus.Builder(int); 10974*344a7f5eSAndroid Build Coastguard Worker ctor public MediaSessionStatus.Builder(android.support.v7.media.MediaSessionStatus); 10975*344a7f5eSAndroid Build Coastguard Worker method public android.support.v7.media.MediaSessionStatus build(); 10976*344a7f5eSAndroid Build Coastguard Worker method public android.support.v7.media.MediaSessionStatus.Builder setExtras(android.os.Bundle); 10977*344a7f5eSAndroid Build Coastguard Worker method public android.support.v7.media.MediaSessionStatus.Builder setQueuePaused(boolean); 10978*344a7f5eSAndroid Build Coastguard Worker method public android.support.v7.media.MediaSessionStatus.Builder setSessionState(int); 10979*344a7f5eSAndroid Build Coastguard Worker method public android.support.v7.media.MediaSessionStatus.Builder setTimestamp(long); 10980*344a7f5eSAndroid Build Coastguard Worker } 10981*344a7f5eSAndroid Build Coastguard Worker 10982*344a7f5eSAndroid Build Coastguard Worker public class RemotePlaybackClient { 10983*344a7f5eSAndroid Build Coastguard Worker ctor public RemotePlaybackClient(android.content.Context, android.support.v7.media.MediaRouter.RouteInfo); 10984*344a7f5eSAndroid Build Coastguard Worker method public void endSession(android.os.Bundle, android.support.v7.media.RemotePlaybackClient.SessionActionCallback); 10985*344a7f5eSAndroid Build Coastguard Worker method public void enqueue(android.net.Uri, java.lang.String, android.os.Bundle, long, android.os.Bundle, android.support.v7.media.RemotePlaybackClient.ItemActionCallback); 10986*344a7f5eSAndroid Build Coastguard Worker method public java.lang.String getSessionId(); 10987*344a7f5eSAndroid Build Coastguard Worker method public void getSessionStatus(android.os.Bundle, android.support.v7.media.RemotePlaybackClient.SessionActionCallback); 10988*344a7f5eSAndroid Build Coastguard Worker method public void getStatus(java.lang.String, android.os.Bundle, android.support.v7.media.RemotePlaybackClient.ItemActionCallback); 10989*344a7f5eSAndroid Build Coastguard Worker method public boolean hasSession(); 10990*344a7f5eSAndroid Build Coastguard Worker method public boolean isMessagingSupported(); 10991*344a7f5eSAndroid Build Coastguard Worker method public boolean isQueuingSupported(); 10992*344a7f5eSAndroid Build Coastguard Worker method public boolean isRemotePlaybackSupported(); 10993*344a7f5eSAndroid Build Coastguard Worker method public boolean isSessionManagementSupported(); 10994*344a7f5eSAndroid Build Coastguard Worker method public void pause(android.os.Bundle, android.support.v7.media.RemotePlaybackClient.SessionActionCallback); 10995*344a7f5eSAndroid Build Coastguard Worker method public void play(android.net.Uri, java.lang.String, android.os.Bundle, long, android.os.Bundle, android.support.v7.media.RemotePlaybackClient.ItemActionCallback); 10996*344a7f5eSAndroid Build Coastguard Worker method public void release(); 10997*344a7f5eSAndroid Build Coastguard Worker method public void remove(java.lang.String, android.os.Bundle, android.support.v7.media.RemotePlaybackClient.ItemActionCallback); 10998*344a7f5eSAndroid Build Coastguard Worker method public void resume(android.os.Bundle, android.support.v7.media.RemotePlaybackClient.SessionActionCallback); 10999*344a7f5eSAndroid Build Coastguard Worker method public void seek(java.lang.String, long, android.os.Bundle, android.support.v7.media.RemotePlaybackClient.ItemActionCallback); 11000*344a7f5eSAndroid Build Coastguard Worker method public void sendMessage(android.os.Bundle, android.support.v7.media.RemotePlaybackClient.SessionActionCallback); 11001*344a7f5eSAndroid Build Coastguard Worker method public void setOnMessageReceivedListener(android.support.v7.media.RemotePlaybackClient.OnMessageReceivedListener); 11002*344a7f5eSAndroid Build Coastguard Worker method public void setSessionId(java.lang.String); 11003*344a7f5eSAndroid Build Coastguard Worker method public void setStatusCallback(android.support.v7.media.RemotePlaybackClient.StatusCallback); 11004*344a7f5eSAndroid Build Coastguard Worker method public void startSession(android.os.Bundle, android.support.v7.media.RemotePlaybackClient.SessionActionCallback); 11005*344a7f5eSAndroid Build Coastguard Worker method public void stop(android.os.Bundle, android.support.v7.media.RemotePlaybackClient.SessionActionCallback); 11006*344a7f5eSAndroid Build Coastguard Worker } 11007*344a7f5eSAndroid Build Coastguard Worker 11008*344a7f5eSAndroid Build Coastguard Worker public static abstract class RemotePlaybackClient.ActionCallback { 11009*344a7f5eSAndroid Build Coastguard Worker ctor public RemotePlaybackClient.ActionCallback(); 11010*344a7f5eSAndroid Build Coastguard Worker method public void onError(java.lang.String, int, android.os.Bundle); 11011*344a7f5eSAndroid Build Coastguard Worker } 11012*344a7f5eSAndroid Build Coastguard Worker 11013*344a7f5eSAndroid Build Coastguard Worker public static abstract class RemotePlaybackClient.ItemActionCallback extends android.support.v7.media.RemotePlaybackClient.ActionCallback { 11014*344a7f5eSAndroid Build Coastguard Worker ctor public RemotePlaybackClient.ItemActionCallback(); 11015*344a7f5eSAndroid Build Coastguard Worker method public void onResult(android.os.Bundle, java.lang.String, android.support.v7.media.MediaSessionStatus, java.lang.String, android.support.v7.media.MediaItemStatus); 11016*344a7f5eSAndroid Build Coastguard Worker } 11017*344a7f5eSAndroid Build Coastguard Worker 11018*344a7f5eSAndroid Build Coastguard Worker public static abstract interface RemotePlaybackClient.OnMessageReceivedListener { 11019*344a7f5eSAndroid Build Coastguard Worker method public abstract void onMessageReceived(java.lang.String, android.os.Bundle); 11020*344a7f5eSAndroid Build Coastguard Worker } 11021*344a7f5eSAndroid Build Coastguard Worker 11022*344a7f5eSAndroid Build Coastguard Worker public static abstract class RemotePlaybackClient.SessionActionCallback extends android.support.v7.media.RemotePlaybackClient.ActionCallback { 11023*344a7f5eSAndroid Build Coastguard Worker ctor public RemotePlaybackClient.SessionActionCallback(); 11024*344a7f5eSAndroid Build Coastguard Worker method public void onResult(android.os.Bundle, java.lang.String, android.support.v7.media.MediaSessionStatus); 11025*344a7f5eSAndroid Build Coastguard Worker } 11026*344a7f5eSAndroid Build Coastguard Worker 11027*344a7f5eSAndroid Build Coastguard Worker public static abstract class RemotePlaybackClient.StatusCallback { 11028*344a7f5eSAndroid Build Coastguard Worker ctor public RemotePlaybackClient.StatusCallback(); 11029*344a7f5eSAndroid Build Coastguard Worker method public void onItemStatusChanged(android.os.Bundle, java.lang.String, android.support.v7.media.MediaSessionStatus, java.lang.String, android.support.v7.media.MediaItemStatus); 11030*344a7f5eSAndroid Build Coastguard Worker method public void onSessionChanged(java.lang.String); 11031*344a7f5eSAndroid Build Coastguard Worker method public void onSessionStatusChanged(android.os.Bundle, java.lang.String, android.support.v7.media.MediaSessionStatus); 11032*344a7f5eSAndroid Build Coastguard Worker } 11033*344a7f5eSAndroid Build Coastguard Worker 11034*344a7f5eSAndroid Build Coastguard Worker} 11035*344a7f5eSAndroid Build Coastguard Worker 11036*344a7f5eSAndroid Build Coastguard Workerpackage android.support.v7.preference { 11037*344a7f5eSAndroid Build Coastguard Worker 11038*344a7f5eSAndroid Build Coastguard Worker public class CheckBoxPreference extends android.support.v7.preference.TwoStatePreference { 11039*344a7f5eSAndroid Build Coastguard Worker ctor public CheckBoxPreference(android.content.Context, android.util.AttributeSet, int); 11040*344a7f5eSAndroid Build Coastguard Worker ctor public CheckBoxPreference(android.content.Context, android.util.AttributeSet, int, int); 11041*344a7f5eSAndroid Build Coastguard Worker ctor public CheckBoxPreference(android.content.Context, android.util.AttributeSet); 11042*344a7f5eSAndroid Build Coastguard Worker ctor public CheckBoxPreference(android.content.Context); 11043*344a7f5eSAndroid Build Coastguard Worker } 11044*344a7f5eSAndroid Build Coastguard Worker 11045*344a7f5eSAndroid Build Coastguard Worker public abstract class DialogPreference extends android.support.v7.preference.Preference { 11046*344a7f5eSAndroid Build Coastguard Worker ctor public DialogPreference(android.content.Context, android.util.AttributeSet, int, int); 11047*344a7f5eSAndroid Build Coastguard Worker ctor public DialogPreference(android.content.Context, android.util.AttributeSet, int); 11048*344a7f5eSAndroid Build Coastguard Worker ctor public DialogPreference(android.content.Context, android.util.AttributeSet); 11049*344a7f5eSAndroid Build Coastguard Worker ctor public DialogPreference(android.content.Context); 11050*344a7f5eSAndroid Build Coastguard Worker method public android.graphics.drawable.Drawable getDialogIcon(); 11051*344a7f5eSAndroid Build Coastguard Worker method public int getDialogLayoutResource(); 11052*344a7f5eSAndroid Build Coastguard Worker method public java.lang.CharSequence getDialogMessage(); 11053*344a7f5eSAndroid Build Coastguard Worker method public java.lang.CharSequence getDialogTitle(); 11054*344a7f5eSAndroid Build Coastguard Worker method public java.lang.CharSequence getNegativeButtonText(); 11055*344a7f5eSAndroid Build Coastguard Worker method public java.lang.CharSequence getPositiveButtonText(); 11056*344a7f5eSAndroid Build Coastguard Worker method public void setDialogIcon(android.graphics.drawable.Drawable); 11057*344a7f5eSAndroid Build Coastguard Worker method public void setDialogIcon(int); 11058*344a7f5eSAndroid Build Coastguard Worker method public void setDialogLayoutResource(int); 11059*344a7f5eSAndroid Build Coastguard Worker method public void setDialogMessage(java.lang.CharSequence); 11060*344a7f5eSAndroid Build Coastguard Worker method public void setDialogMessage(int); 11061*344a7f5eSAndroid Build Coastguard Worker method public void setDialogTitle(java.lang.CharSequence); 11062*344a7f5eSAndroid Build Coastguard Worker method public void setDialogTitle(int); 11063*344a7f5eSAndroid Build Coastguard Worker method public void setNegativeButtonText(java.lang.CharSequence); 11064*344a7f5eSAndroid Build Coastguard Worker method public void setNegativeButtonText(int); 11065*344a7f5eSAndroid Build Coastguard Worker method public void setPositiveButtonText(java.lang.CharSequence); 11066*344a7f5eSAndroid Build Coastguard Worker method public void setPositiveButtonText(int); 11067*344a7f5eSAndroid Build Coastguard Worker } 11068*344a7f5eSAndroid Build Coastguard Worker 11069*344a7f5eSAndroid Build Coastguard Worker public static abstract interface DialogPreference.TargetFragment { 11070*344a7f5eSAndroid Build Coastguard Worker method public abstract android.support.v7.preference.Preference findPreference(java.lang.CharSequence); 11071*344a7f5eSAndroid Build Coastguard Worker } 11072*344a7f5eSAndroid Build Coastguard Worker 11073*344a7f5eSAndroid Build Coastguard Worker public class DropDownPreference extends android.support.v7.preference.ListPreference { 11074*344a7f5eSAndroid Build Coastguard Worker ctor public DropDownPreference(android.content.Context); 11075*344a7f5eSAndroid Build Coastguard Worker ctor public DropDownPreference(android.content.Context, android.util.AttributeSet); 11076*344a7f5eSAndroid Build Coastguard Worker ctor public DropDownPreference(android.content.Context, android.util.AttributeSet, int); 11077*344a7f5eSAndroid Build Coastguard Worker ctor public DropDownPreference(android.content.Context, android.util.AttributeSet, int, int); 11078*344a7f5eSAndroid Build Coastguard Worker method protected android.widget.ArrayAdapter createAdapter(); 11079*344a7f5eSAndroid Build Coastguard Worker } 11080*344a7f5eSAndroid Build Coastguard Worker 11081*344a7f5eSAndroid Build Coastguard Worker public class EditTextPreference extends android.support.v7.preference.DialogPreference { 11082*344a7f5eSAndroid Build Coastguard Worker ctor public EditTextPreference(android.content.Context, android.util.AttributeSet, int, int); 11083*344a7f5eSAndroid Build Coastguard Worker ctor public EditTextPreference(android.content.Context, android.util.AttributeSet, int); 11084*344a7f5eSAndroid Build Coastguard Worker ctor public EditTextPreference(android.content.Context, android.util.AttributeSet); 11085*344a7f5eSAndroid Build Coastguard Worker ctor public EditTextPreference(android.content.Context); 11086*344a7f5eSAndroid Build Coastguard Worker method public java.lang.String getText(); 11087*344a7f5eSAndroid Build Coastguard Worker method public void setText(java.lang.String); 11088*344a7f5eSAndroid Build Coastguard Worker } 11089*344a7f5eSAndroid Build Coastguard Worker 11090*344a7f5eSAndroid Build Coastguard Worker public class EditTextPreferenceDialogFragmentCompat extends android.support.v7.preference.PreferenceDialogFragmentCompat { 11091*344a7f5eSAndroid Build Coastguard Worker ctor public EditTextPreferenceDialogFragmentCompat(); 11092*344a7f5eSAndroid Build Coastguard Worker method public static android.support.v7.preference.EditTextPreferenceDialogFragmentCompat newInstance(java.lang.String); 11093*344a7f5eSAndroid Build Coastguard Worker method public void onDialogClosed(boolean); 11094*344a7f5eSAndroid Build Coastguard Worker } 11095*344a7f5eSAndroid Build Coastguard Worker 11096*344a7f5eSAndroid Build Coastguard Worker public class ListPreference extends android.support.v7.preference.DialogPreference { 11097*344a7f5eSAndroid Build Coastguard Worker ctor public ListPreference(android.content.Context, android.util.AttributeSet, int, int); 11098*344a7f5eSAndroid Build Coastguard Worker ctor public ListPreference(android.content.Context, android.util.AttributeSet, int); 11099*344a7f5eSAndroid Build Coastguard Worker ctor public ListPreference(android.content.Context, android.util.AttributeSet); 11100*344a7f5eSAndroid Build Coastguard Worker ctor public ListPreference(android.content.Context); 11101*344a7f5eSAndroid Build Coastguard Worker method public int findIndexOfValue(java.lang.String); 11102*344a7f5eSAndroid Build Coastguard Worker method public java.lang.CharSequence[] getEntries(); 11103*344a7f5eSAndroid Build Coastguard Worker method public java.lang.CharSequence getEntry(); 11104*344a7f5eSAndroid Build Coastguard Worker method public java.lang.CharSequence[] getEntryValues(); 11105*344a7f5eSAndroid Build Coastguard Worker method public java.lang.String getValue(); 11106*344a7f5eSAndroid Build Coastguard Worker method public void setEntries(java.lang.CharSequence[]); 11107*344a7f5eSAndroid Build Coastguard Worker method public void setEntries(int); 11108*344a7f5eSAndroid Build Coastguard Worker method public void setEntryValues(java.lang.CharSequence[]); 11109*344a7f5eSAndroid Build Coastguard Worker method public void setEntryValues(int); 11110*344a7f5eSAndroid Build Coastguard Worker method public void setValue(java.lang.String); 11111*344a7f5eSAndroid Build Coastguard Worker method public void setValueIndex(int); 11112*344a7f5eSAndroid Build Coastguard Worker } 11113*344a7f5eSAndroid Build Coastguard Worker 11114*344a7f5eSAndroid Build Coastguard Worker public class ListPreferenceDialogFragmentCompat extends android.support.v7.preference.PreferenceDialogFragmentCompat { 11115*344a7f5eSAndroid Build Coastguard Worker ctor public ListPreferenceDialogFragmentCompat(); 11116*344a7f5eSAndroid Build Coastguard Worker method public static android.support.v7.preference.ListPreferenceDialogFragmentCompat newInstance(java.lang.String); 11117*344a7f5eSAndroid Build Coastguard Worker method public void onDialogClosed(boolean); 11118*344a7f5eSAndroid Build Coastguard Worker } 11119*344a7f5eSAndroid Build Coastguard Worker 11120*344a7f5eSAndroid Build Coastguard Worker public class MultiSelectListPreferenceDialogFragmentCompat extends android.support.v7.preference.PreferenceDialogFragmentCompat { 11121*344a7f5eSAndroid Build Coastguard Worker ctor public MultiSelectListPreferenceDialogFragmentCompat(); 11122*344a7f5eSAndroid Build Coastguard Worker method public static android.support.v7.preference.MultiSelectListPreferenceDialogFragmentCompat newInstance(java.lang.String); 11123*344a7f5eSAndroid Build Coastguard Worker method public void onDialogClosed(boolean); 11124*344a7f5eSAndroid Build Coastguard Worker } 11125*344a7f5eSAndroid Build Coastguard Worker 11126*344a7f5eSAndroid Build Coastguard Worker public class Preference implements java.lang.Comparable { 11127*344a7f5eSAndroid Build Coastguard Worker ctor public Preference(android.content.Context, android.util.AttributeSet, int, int); 11128*344a7f5eSAndroid Build Coastguard Worker ctor public Preference(android.content.Context, android.util.AttributeSet, int); 11129*344a7f5eSAndroid Build Coastguard Worker ctor public Preference(android.content.Context, android.util.AttributeSet); 11130*344a7f5eSAndroid Build Coastguard Worker ctor public Preference(android.content.Context); 11131*344a7f5eSAndroid Build Coastguard Worker method public boolean callChangeListener(java.lang.Object); 11132*344a7f5eSAndroid Build Coastguard Worker method public int compareTo(android.support.v7.preference.Preference); 11133*344a7f5eSAndroid Build Coastguard Worker method protected android.support.v7.preference.Preference findPreferenceInHierarchy(java.lang.String); 11134*344a7f5eSAndroid Build Coastguard Worker method public android.content.Context getContext(); 11135*344a7f5eSAndroid Build Coastguard Worker method public java.lang.String getDependency(); 11136*344a7f5eSAndroid Build Coastguard Worker method public android.os.Bundle getExtras(); 11137*344a7f5eSAndroid Build Coastguard Worker method public java.lang.String getFragment(); 11138*344a7f5eSAndroid Build Coastguard Worker method public android.graphics.drawable.Drawable getIcon(); 11139*344a7f5eSAndroid Build Coastguard Worker method public android.content.Intent getIntent(); 11140*344a7f5eSAndroid Build Coastguard Worker method public java.lang.String getKey(); 11141*344a7f5eSAndroid Build Coastguard Worker method public final int getLayoutResource(); 11142*344a7f5eSAndroid Build Coastguard Worker method public android.support.v7.preference.Preference.OnPreferenceChangeListener getOnPreferenceChangeListener(); 11143*344a7f5eSAndroid Build Coastguard Worker method public android.support.v7.preference.Preference.OnPreferenceClickListener getOnPreferenceClickListener(); 11144*344a7f5eSAndroid Build Coastguard Worker method public int getOrder(); 11145*344a7f5eSAndroid Build Coastguard Worker method public android.support.v7.preference.PreferenceGroup getParent(); 11146*344a7f5eSAndroid Build Coastguard Worker method protected boolean getPersistedBoolean(boolean); 11147*344a7f5eSAndroid Build Coastguard Worker method protected float getPersistedFloat(float); 11148*344a7f5eSAndroid Build Coastguard Worker method protected int getPersistedInt(int); 11149*344a7f5eSAndroid Build Coastguard Worker method protected long getPersistedLong(long); 11150*344a7f5eSAndroid Build Coastguard Worker method protected java.lang.String getPersistedString(java.lang.String); 11151*344a7f5eSAndroid Build Coastguard Worker method public java.util.Set<java.lang.String> getPersistedStringSet(java.util.Set<java.lang.String>); 11152*344a7f5eSAndroid Build Coastguard Worker method public android.support.v7.preference.PreferenceDataStore getPreferenceDataStore(); 11153*344a7f5eSAndroid Build Coastguard Worker method public android.support.v7.preference.PreferenceManager getPreferenceManager(); 11154*344a7f5eSAndroid Build Coastguard Worker method public android.content.SharedPreferences getSharedPreferences(); 11155*344a7f5eSAndroid Build Coastguard Worker method public boolean getShouldDisableView(); 11156*344a7f5eSAndroid Build Coastguard Worker method public java.lang.CharSequence getSummary(); 11157*344a7f5eSAndroid Build Coastguard Worker method public java.lang.CharSequence getTitle(); 11158*344a7f5eSAndroid Build Coastguard Worker method public final int getWidgetLayoutResource(); 11159*344a7f5eSAndroid Build Coastguard Worker method public boolean hasKey(); 11160*344a7f5eSAndroid Build Coastguard Worker method public boolean isEnabled(); 11161*344a7f5eSAndroid Build Coastguard Worker method public boolean isIconSpaceReserved(); 11162*344a7f5eSAndroid Build Coastguard Worker method public boolean isPersistent(); 11163*344a7f5eSAndroid Build Coastguard Worker method public boolean isSelectable(); 11164*344a7f5eSAndroid Build Coastguard Worker method public boolean isSingleLineTitle(); 11165*344a7f5eSAndroid Build Coastguard Worker method public final boolean isVisible(); 11166*344a7f5eSAndroid Build Coastguard Worker method protected void notifyChanged(); 11167*344a7f5eSAndroid Build Coastguard Worker method public void notifyDependencyChange(boolean); 11168*344a7f5eSAndroid Build Coastguard Worker method protected void notifyHierarchyChanged(); 11169*344a7f5eSAndroid Build Coastguard Worker method public void onAttached(); 11170*344a7f5eSAndroid Build Coastguard Worker method protected void onAttachedToHierarchy(android.support.v7.preference.PreferenceManager); 11171*344a7f5eSAndroid Build Coastguard Worker method public void onBindViewHolder(android.support.v7.preference.PreferenceViewHolder); 11172*344a7f5eSAndroid Build Coastguard Worker method protected void onClick(); 11173*344a7f5eSAndroid Build Coastguard Worker method public void onDependencyChanged(android.support.v7.preference.Preference, boolean); 11174*344a7f5eSAndroid Build Coastguard Worker method public void onDetached(); 11175*344a7f5eSAndroid Build Coastguard Worker method protected java.lang.Object onGetDefaultValue(android.content.res.TypedArray, int); 11176*344a7f5eSAndroid Build Coastguard Worker method public void onInitializeAccessibilityNodeInfo(android.support.v4.view.accessibility.AccessibilityNodeInfoCompat); 11177*344a7f5eSAndroid Build Coastguard Worker method public void onParentChanged(android.support.v7.preference.Preference, boolean); 11178*344a7f5eSAndroid Build Coastguard Worker method protected void onPrepareForRemoval(); 11179*344a7f5eSAndroid Build Coastguard Worker method protected void onRestoreInstanceState(android.os.Parcelable); 11180*344a7f5eSAndroid Build Coastguard Worker method protected android.os.Parcelable onSaveInstanceState(); 11181*344a7f5eSAndroid Build Coastguard Worker method protected void onSetInitialValue(boolean, java.lang.Object); 11182*344a7f5eSAndroid Build Coastguard Worker method public android.os.Bundle peekExtras(); 11183*344a7f5eSAndroid Build Coastguard Worker method protected boolean persistBoolean(boolean); 11184*344a7f5eSAndroid Build Coastguard Worker method protected boolean persistFloat(float); 11185*344a7f5eSAndroid Build Coastguard Worker method protected boolean persistInt(int); 11186*344a7f5eSAndroid Build Coastguard Worker method protected boolean persistLong(long); 11187*344a7f5eSAndroid Build Coastguard Worker method protected boolean persistString(java.lang.String); 11188*344a7f5eSAndroid Build Coastguard Worker method public boolean persistStringSet(java.util.Set<java.lang.String>); 11189*344a7f5eSAndroid Build Coastguard Worker method public void restoreHierarchyState(android.os.Bundle); 11190*344a7f5eSAndroid Build Coastguard Worker method public void saveHierarchyState(android.os.Bundle); 11191*344a7f5eSAndroid Build Coastguard Worker method public void setDefaultValue(java.lang.Object); 11192*344a7f5eSAndroid Build Coastguard Worker method public void setDependency(java.lang.String); 11193*344a7f5eSAndroid Build Coastguard Worker method public void setEnabled(boolean); 11194*344a7f5eSAndroid Build Coastguard Worker method public void setFragment(java.lang.String); 11195*344a7f5eSAndroid Build Coastguard Worker method public void setIcon(android.graphics.drawable.Drawable); 11196*344a7f5eSAndroid Build Coastguard Worker method public void setIcon(int); 11197*344a7f5eSAndroid Build Coastguard Worker method public void setIconSpaceReserved(boolean); 11198*344a7f5eSAndroid Build Coastguard Worker method public void setIntent(android.content.Intent); 11199*344a7f5eSAndroid Build Coastguard Worker method public void setKey(java.lang.String); 11200*344a7f5eSAndroid Build Coastguard Worker method public void setLayoutResource(int); 11201*344a7f5eSAndroid Build Coastguard Worker method public void setOnPreferenceChangeListener(android.support.v7.preference.Preference.OnPreferenceChangeListener); 11202*344a7f5eSAndroid Build Coastguard Worker method public void setOnPreferenceClickListener(android.support.v7.preference.Preference.OnPreferenceClickListener); 11203*344a7f5eSAndroid Build Coastguard Worker method public void setOrder(int); 11204*344a7f5eSAndroid Build Coastguard Worker method public void setPersistent(boolean); 11205*344a7f5eSAndroid Build Coastguard Worker method public void setPreferenceDataStore(android.support.v7.preference.PreferenceDataStore); 11206*344a7f5eSAndroid Build Coastguard Worker method public void setSelectable(boolean); 11207*344a7f5eSAndroid Build Coastguard Worker method public void setShouldDisableView(boolean); 11208*344a7f5eSAndroid Build Coastguard Worker method public void setSingleLineTitle(boolean); 11209*344a7f5eSAndroid Build Coastguard Worker method public void setSummary(java.lang.CharSequence); 11210*344a7f5eSAndroid Build Coastguard Worker method public void setSummary(int); 11211*344a7f5eSAndroid Build Coastguard Worker method public void setTitle(java.lang.CharSequence); 11212*344a7f5eSAndroid Build Coastguard Worker method public void setTitle(int); 11213*344a7f5eSAndroid Build Coastguard Worker method public void setViewId(int); 11214*344a7f5eSAndroid Build Coastguard Worker method public final void setVisible(boolean); 11215*344a7f5eSAndroid Build Coastguard Worker method public void setWidgetLayoutResource(int); 11216*344a7f5eSAndroid Build Coastguard Worker method public boolean shouldDisableDependents(); 11217*344a7f5eSAndroid Build Coastguard Worker method protected boolean shouldPersist(); 11218*344a7f5eSAndroid Build Coastguard Worker field public static final int DEFAULT_ORDER = 2147483647; // 0x7fffffff 11219*344a7f5eSAndroid Build Coastguard Worker } 11220*344a7f5eSAndroid Build Coastguard Worker 11221*344a7f5eSAndroid Build Coastguard Worker public static class Preference.BaseSavedState extends android.view.AbsSavedState { 11222*344a7f5eSAndroid Build Coastguard Worker ctor public Preference.BaseSavedState(android.os.Parcel); 11223*344a7f5eSAndroid Build Coastguard Worker ctor public Preference.BaseSavedState(android.os.Parcelable); 11224*344a7f5eSAndroid Build Coastguard Worker field public static final android.os.Parcelable.Creator<android.support.v7.preference.Preference.BaseSavedState> CREATOR; 11225*344a7f5eSAndroid Build Coastguard Worker } 11226*344a7f5eSAndroid Build Coastguard Worker 11227*344a7f5eSAndroid Build Coastguard Worker public static abstract interface Preference.OnPreferenceChangeListener { 11228*344a7f5eSAndroid Build Coastguard Worker method public abstract boolean onPreferenceChange(android.support.v7.preference.Preference, java.lang.Object); 11229*344a7f5eSAndroid Build Coastguard Worker } 11230*344a7f5eSAndroid Build Coastguard Worker 11231*344a7f5eSAndroid Build Coastguard Worker public static abstract interface Preference.OnPreferenceClickListener { 11232*344a7f5eSAndroid Build Coastguard Worker method public abstract boolean onPreferenceClick(android.support.v7.preference.Preference); 11233*344a7f5eSAndroid Build Coastguard Worker } 11234*344a7f5eSAndroid Build Coastguard Worker 11235*344a7f5eSAndroid Build Coastguard Worker public class PreferenceCategory extends android.support.v7.preference.PreferenceGroup { 11236*344a7f5eSAndroid Build Coastguard Worker ctor public PreferenceCategory(android.content.Context, android.util.AttributeSet, int, int); 11237*344a7f5eSAndroid Build Coastguard Worker ctor public PreferenceCategory(android.content.Context, android.util.AttributeSet, int); 11238*344a7f5eSAndroid Build Coastguard Worker ctor public PreferenceCategory(android.content.Context, android.util.AttributeSet); 11239*344a7f5eSAndroid Build Coastguard Worker ctor public PreferenceCategory(android.content.Context); 11240*344a7f5eSAndroid Build Coastguard Worker } 11241*344a7f5eSAndroid Build Coastguard Worker 11242*344a7f5eSAndroid Build Coastguard Worker public abstract class PreferenceDataStore { 11243*344a7f5eSAndroid Build Coastguard Worker ctor public PreferenceDataStore(); 11244*344a7f5eSAndroid Build Coastguard Worker method public boolean getBoolean(java.lang.String, boolean); 11245*344a7f5eSAndroid Build Coastguard Worker method public float getFloat(java.lang.String, float); 11246*344a7f5eSAndroid Build Coastguard Worker method public int getInt(java.lang.String, int); 11247*344a7f5eSAndroid Build Coastguard Worker method public long getLong(java.lang.String, long); 11248*344a7f5eSAndroid Build Coastguard Worker method public java.lang.String getString(java.lang.String, java.lang.String); 11249*344a7f5eSAndroid Build Coastguard Worker method public java.util.Set<java.lang.String> getStringSet(java.lang.String, java.util.Set<java.lang.String>); 11250*344a7f5eSAndroid Build Coastguard Worker method public void putBoolean(java.lang.String, boolean); 11251*344a7f5eSAndroid Build Coastguard Worker method public void putFloat(java.lang.String, float); 11252*344a7f5eSAndroid Build Coastguard Worker method public void putInt(java.lang.String, int); 11253*344a7f5eSAndroid Build Coastguard Worker method public void putLong(java.lang.String, long); 11254*344a7f5eSAndroid Build Coastguard Worker method public void putString(java.lang.String, java.lang.String); 11255*344a7f5eSAndroid Build Coastguard Worker method public void putStringSet(java.lang.String, java.util.Set<java.lang.String>); 11256*344a7f5eSAndroid Build Coastguard Worker } 11257*344a7f5eSAndroid Build Coastguard Worker 11258*344a7f5eSAndroid Build Coastguard Worker public abstract class PreferenceDialogFragmentCompat extends android.support.v4.app.DialogFragment implements android.content.DialogInterface.OnClickListener { 11259*344a7f5eSAndroid Build Coastguard Worker ctor public PreferenceDialogFragmentCompat(); 11260*344a7f5eSAndroid Build Coastguard Worker method public android.support.v7.preference.DialogPreference getPreference(); 11261*344a7f5eSAndroid Build Coastguard Worker method protected void onBindDialogView(android.view.View); 11262*344a7f5eSAndroid Build Coastguard Worker method public void onClick(android.content.DialogInterface, int); 11263*344a7f5eSAndroid Build Coastguard Worker method protected android.view.View onCreateDialogView(android.content.Context); 11264*344a7f5eSAndroid Build Coastguard Worker method public abstract void onDialogClosed(boolean); 11265*344a7f5eSAndroid Build Coastguard Worker method protected void onPrepareDialogBuilder(android.support.v7.app.AlertDialog.Builder); 11266*344a7f5eSAndroid Build Coastguard Worker field protected static final java.lang.String ARG_KEY = "key"; 11267*344a7f5eSAndroid Build Coastguard Worker } 11268*344a7f5eSAndroid Build Coastguard Worker 11269*344a7f5eSAndroid Build Coastguard Worker public abstract class PreferenceFragmentCompat extends android.support.v4.app.Fragment implements android.support.v7.preference.DialogPreference.TargetFragment android.support.v7.preference.PreferenceManager.OnDisplayPreferenceDialogListener android.support.v7.preference.PreferenceManager.OnNavigateToScreenListener android.support.v7.preference.PreferenceManager.OnPreferenceTreeClickListener { 11270*344a7f5eSAndroid Build Coastguard Worker ctor public PreferenceFragmentCompat(); 11271*344a7f5eSAndroid Build Coastguard Worker method public void addPreferencesFromResource(int); 11272*344a7f5eSAndroid Build Coastguard Worker method public android.support.v7.preference.Preference findPreference(java.lang.CharSequence); 11273*344a7f5eSAndroid Build Coastguard Worker method public final android.support.v7.widget.RecyclerView getListView(); 11274*344a7f5eSAndroid Build Coastguard Worker method public android.support.v7.preference.PreferenceManager getPreferenceManager(); 11275*344a7f5eSAndroid Build Coastguard Worker method public android.support.v7.preference.PreferenceScreen getPreferenceScreen(); 11276*344a7f5eSAndroid Build Coastguard Worker method protected android.support.v7.widget.RecyclerView.Adapter onCreateAdapter(android.support.v7.preference.PreferenceScreen); 11277*344a7f5eSAndroid Build Coastguard Worker method public android.support.v7.widget.RecyclerView.LayoutManager onCreateLayoutManager(); 11278*344a7f5eSAndroid Build Coastguard Worker method public abstract void onCreatePreferences(android.os.Bundle, java.lang.String); 11279*344a7f5eSAndroid Build Coastguard Worker method public android.support.v7.widget.RecyclerView onCreateRecyclerView(android.view.LayoutInflater, android.view.ViewGroup, android.os.Bundle); 11280*344a7f5eSAndroid Build Coastguard Worker method public void onDisplayPreferenceDialog(android.support.v7.preference.Preference); 11281*344a7f5eSAndroid Build Coastguard Worker method public void onNavigateToScreen(android.support.v7.preference.PreferenceScreen); 11282*344a7f5eSAndroid Build Coastguard Worker method public boolean onPreferenceTreeClick(android.support.v7.preference.Preference); 11283*344a7f5eSAndroid Build Coastguard Worker method public void scrollToPreference(java.lang.String); 11284*344a7f5eSAndroid Build Coastguard Worker method public void scrollToPreference(android.support.v7.preference.Preference); 11285*344a7f5eSAndroid Build Coastguard Worker method public void setDivider(android.graphics.drawable.Drawable); 11286*344a7f5eSAndroid Build Coastguard Worker method public void setDividerHeight(int); 11287*344a7f5eSAndroid Build Coastguard Worker method public void setPreferenceScreen(android.support.v7.preference.PreferenceScreen); 11288*344a7f5eSAndroid Build Coastguard Worker method public void setPreferencesFromResource(int, java.lang.String); 11289*344a7f5eSAndroid Build Coastguard Worker field public static final java.lang.String ARG_PREFERENCE_ROOT = "android.support.v7.preference.PreferenceFragmentCompat.PREFERENCE_ROOT"; 11290*344a7f5eSAndroid Build Coastguard Worker } 11291*344a7f5eSAndroid Build Coastguard Worker 11292*344a7f5eSAndroid Build Coastguard Worker public static abstract interface PreferenceFragmentCompat.OnPreferenceDisplayDialogCallback { 11293*344a7f5eSAndroid Build Coastguard Worker method public abstract boolean onPreferenceDisplayDialog(android.support.v7.preference.PreferenceFragmentCompat, android.support.v7.preference.Preference); 11294*344a7f5eSAndroid Build Coastguard Worker } 11295*344a7f5eSAndroid Build Coastguard Worker 11296*344a7f5eSAndroid Build Coastguard Worker public static abstract interface PreferenceFragmentCompat.OnPreferenceStartFragmentCallback { 11297*344a7f5eSAndroid Build Coastguard Worker method public abstract boolean onPreferenceStartFragment(android.support.v7.preference.PreferenceFragmentCompat, android.support.v7.preference.Preference); 11298*344a7f5eSAndroid Build Coastguard Worker } 11299*344a7f5eSAndroid Build Coastguard Worker 11300*344a7f5eSAndroid Build Coastguard Worker public static abstract interface PreferenceFragmentCompat.OnPreferenceStartScreenCallback { 11301*344a7f5eSAndroid Build Coastguard Worker method public abstract boolean onPreferenceStartScreen(android.support.v7.preference.PreferenceFragmentCompat, android.support.v7.preference.PreferenceScreen); 11302*344a7f5eSAndroid Build Coastguard Worker } 11303*344a7f5eSAndroid Build Coastguard Worker 11304*344a7f5eSAndroid Build Coastguard Worker public abstract class PreferenceGroup extends android.support.v7.preference.Preference { 11305*344a7f5eSAndroid Build Coastguard Worker ctor public PreferenceGroup(android.content.Context, android.util.AttributeSet, int, int); 11306*344a7f5eSAndroid Build Coastguard Worker ctor public PreferenceGroup(android.content.Context, android.util.AttributeSet, int); 11307*344a7f5eSAndroid Build Coastguard Worker ctor public PreferenceGroup(android.content.Context, android.util.AttributeSet); 11308*344a7f5eSAndroid Build Coastguard Worker method public void addItemFromInflater(android.support.v7.preference.Preference); 11309*344a7f5eSAndroid Build Coastguard Worker method public boolean addPreference(android.support.v7.preference.Preference); 11310*344a7f5eSAndroid Build Coastguard Worker method protected void dispatchRestoreInstanceState(android.os.Bundle); 11311*344a7f5eSAndroid Build Coastguard Worker method protected void dispatchSaveInstanceState(android.os.Bundle); 11312*344a7f5eSAndroid Build Coastguard Worker method public android.support.v7.preference.Preference findPreference(java.lang.CharSequence); 11313*344a7f5eSAndroid Build Coastguard Worker method public android.support.v7.preference.Preference getPreference(int); 11314*344a7f5eSAndroid Build Coastguard Worker method public int getPreferenceCount(); 11315*344a7f5eSAndroid Build Coastguard Worker method protected boolean isOnSameScreenAsChildren(); 11316*344a7f5eSAndroid Build Coastguard Worker method public boolean isOrderingAsAdded(); 11317*344a7f5eSAndroid Build Coastguard Worker method protected boolean onPrepareAddPreference(android.support.v7.preference.Preference); 11318*344a7f5eSAndroid Build Coastguard Worker method public void removeAll(); 11319*344a7f5eSAndroid Build Coastguard Worker method public boolean removePreference(android.support.v7.preference.Preference); 11320*344a7f5eSAndroid Build Coastguard Worker method public void setOrderingAsAdded(boolean); 11321*344a7f5eSAndroid Build Coastguard Worker } 11322*344a7f5eSAndroid Build Coastguard Worker 11323*344a7f5eSAndroid Build Coastguard Worker public static abstract interface PreferenceGroup.PreferencePositionCallback { 11324*344a7f5eSAndroid Build Coastguard Worker method public abstract int getPreferenceAdapterPosition(java.lang.String); 11325*344a7f5eSAndroid Build Coastguard Worker method public abstract int getPreferenceAdapterPosition(android.support.v7.preference.Preference); 11326*344a7f5eSAndroid Build Coastguard Worker } 11327*344a7f5eSAndroid Build Coastguard Worker 11328*344a7f5eSAndroid Build Coastguard Worker public class PreferenceManager { 11329*344a7f5eSAndroid Build Coastguard Worker method public android.support.v7.preference.PreferenceScreen createPreferenceScreen(android.content.Context); 11330*344a7f5eSAndroid Build Coastguard Worker method public android.support.v7.preference.Preference findPreference(java.lang.CharSequence); 11331*344a7f5eSAndroid Build Coastguard Worker method public android.content.Context getContext(); 11332*344a7f5eSAndroid Build Coastguard Worker method public static android.content.SharedPreferences getDefaultSharedPreferences(android.content.Context); 11333*344a7f5eSAndroid Build Coastguard Worker method public android.support.v7.preference.PreferenceManager.OnDisplayPreferenceDialogListener getOnDisplayPreferenceDialogListener(); 11334*344a7f5eSAndroid Build Coastguard Worker method public android.support.v7.preference.PreferenceManager.OnNavigateToScreenListener getOnNavigateToScreenListener(); 11335*344a7f5eSAndroid Build Coastguard Worker method public android.support.v7.preference.PreferenceManager.OnPreferenceTreeClickListener getOnPreferenceTreeClickListener(); 11336*344a7f5eSAndroid Build Coastguard Worker method public android.support.v7.preference.PreferenceManager.PreferenceComparisonCallback getPreferenceComparisonCallback(); 11337*344a7f5eSAndroid Build Coastguard Worker method public android.support.v7.preference.PreferenceDataStore getPreferenceDataStore(); 11338*344a7f5eSAndroid Build Coastguard Worker method public android.support.v7.preference.PreferenceScreen getPreferenceScreen(); 11339*344a7f5eSAndroid Build Coastguard Worker method public android.content.SharedPreferences getSharedPreferences(); 11340*344a7f5eSAndroid Build Coastguard Worker method public int getSharedPreferencesMode(); 11341*344a7f5eSAndroid Build Coastguard Worker method public java.lang.String getSharedPreferencesName(); 11342*344a7f5eSAndroid Build Coastguard Worker method public boolean isStorageDefault(); 11343*344a7f5eSAndroid Build Coastguard Worker method public boolean isStorageDeviceProtected(); 11344*344a7f5eSAndroid Build Coastguard Worker method public static void setDefaultValues(android.content.Context, int, boolean); 11345*344a7f5eSAndroid Build Coastguard Worker method public static void setDefaultValues(android.content.Context, java.lang.String, int, int, boolean); 11346*344a7f5eSAndroid Build Coastguard Worker method public void setOnDisplayPreferenceDialogListener(android.support.v7.preference.PreferenceManager.OnDisplayPreferenceDialogListener); 11347*344a7f5eSAndroid Build Coastguard Worker method public void setOnNavigateToScreenListener(android.support.v7.preference.PreferenceManager.OnNavigateToScreenListener); 11348*344a7f5eSAndroid Build Coastguard Worker method public void setOnPreferenceTreeClickListener(android.support.v7.preference.PreferenceManager.OnPreferenceTreeClickListener); 11349*344a7f5eSAndroid Build Coastguard Worker method public void setPreferenceComparisonCallback(android.support.v7.preference.PreferenceManager.PreferenceComparisonCallback); 11350*344a7f5eSAndroid Build Coastguard Worker method public void setPreferenceDataStore(android.support.v7.preference.PreferenceDataStore); 11351*344a7f5eSAndroid Build Coastguard Worker method public boolean setPreferences(android.support.v7.preference.PreferenceScreen); 11352*344a7f5eSAndroid Build Coastguard Worker method public void setSharedPreferencesMode(int); 11353*344a7f5eSAndroid Build Coastguard Worker method public void setSharedPreferencesName(java.lang.String); 11354*344a7f5eSAndroid Build Coastguard Worker method public void setStorageDefault(); 11355*344a7f5eSAndroid Build Coastguard Worker method public void setStorageDeviceProtected(); 11356*344a7f5eSAndroid Build Coastguard Worker method public void showDialog(android.support.v7.preference.Preference); 11357*344a7f5eSAndroid Build Coastguard Worker field public static final java.lang.String KEY_HAS_SET_DEFAULT_VALUES = "_has_set_default_values"; 11358*344a7f5eSAndroid Build Coastguard Worker } 11359*344a7f5eSAndroid Build Coastguard Worker 11360*344a7f5eSAndroid Build Coastguard Worker public static abstract interface PreferenceManager.OnDisplayPreferenceDialogListener { 11361*344a7f5eSAndroid Build Coastguard Worker method public abstract void onDisplayPreferenceDialog(android.support.v7.preference.Preference); 11362*344a7f5eSAndroid Build Coastguard Worker } 11363*344a7f5eSAndroid Build Coastguard Worker 11364*344a7f5eSAndroid Build Coastguard Worker public static abstract interface PreferenceManager.OnNavigateToScreenListener { 11365*344a7f5eSAndroid Build Coastguard Worker method public abstract void onNavigateToScreen(android.support.v7.preference.PreferenceScreen); 11366*344a7f5eSAndroid Build Coastguard Worker } 11367*344a7f5eSAndroid Build Coastguard Worker 11368*344a7f5eSAndroid Build Coastguard Worker public static abstract interface PreferenceManager.OnPreferenceTreeClickListener { 11369*344a7f5eSAndroid Build Coastguard Worker method public abstract boolean onPreferenceTreeClick(android.support.v7.preference.Preference); 11370*344a7f5eSAndroid Build Coastguard Worker } 11371*344a7f5eSAndroid Build Coastguard Worker 11372*344a7f5eSAndroid Build Coastguard Worker public static abstract class PreferenceManager.PreferenceComparisonCallback { 11373*344a7f5eSAndroid Build Coastguard Worker ctor public PreferenceManager.PreferenceComparisonCallback(); 11374*344a7f5eSAndroid Build Coastguard Worker method public abstract boolean arePreferenceContentsTheSame(android.support.v7.preference.Preference, android.support.v7.preference.Preference); 11375*344a7f5eSAndroid Build Coastguard Worker method public abstract boolean arePreferenceItemsTheSame(android.support.v7.preference.Preference, android.support.v7.preference.Preference); 11376*344a7f5eSAndroid Build Coastguard Worker } 11377*344a7f5eSAndroid Build Coastguard Worker 11378*344a7f5eSAndroid Build Coastguard Worker public static class PreferenceManager.SimplePreferenceComparisonCallback extends android.support.v7.preference.PreferenceManager.PreferenceComparisonCallback { 11379*344a7f5eSAndroid Build Coastguard Worker ctor public PreferenceManager.SimplePreferenceComparisonCallback(); 11380*344a7f5eSAndroid Build Coastguard Worker method public boolean arePreferenceContentsTheSame(android.support.v7.preference.Preference, android.support.v7.preference.Preference); 11381*344a7f5eSAndroid Build Coastguard Worker method public boolean arePreferenceItemsTheSame(android.support.v7.preference.Preference, android.support.v7.preference.Preference); 11382*344a7f5eSAndroid Build Coastguard Worker } 11383*344a7f5eSAndroid Build Coastguard Worker 11384*344a7f5eSAndroid Build Coastguard Worker public final class PreferenceScreen extends android.support.v7.preference.PreferenceGroup { 11385*344a7f5eSAndroid Build Coastguard Worker method public void setShouldUseGeneratedIds(boolean); 11386*344a7f5eSAndroid Build Coastguard Worker method public boolean shouldUseGeneratedIds(); 11387*344a7f5eSAndroid Build Coastguard Worker } 11388*344a7f5eSAndroid Build Coastguard Worker 11389*344a7f5eSAndroid Build Coastguard Worker public class PreferenceViewHolder extends android.support.v7.widget.RecyclerView.ViewHolder { 11390*344a7f5eSAndroid Build Coastguard Worker method public android.view.View findViewById(int); 11391*344a7f5eSAndroid Build Coastguard Worker method public boolean isDividerAllowedAbove(); 11392*344a7f5eSAndroid Build Coastguard Worker method public boolean isDividerAllowedBelow(); 11393*344a7f5eSAndroid Build Coastguard Worker method public void setDividerAllowedAbove(boolean); 11394*344a7f5eSAndroid Build Coastguard Worker method public void setDividerAllowedBelow(boolean); 11395*344a7f5eSAndroid Build Coastguard Worker } 11396*344a7f5eSAndroid Build Coastguard Worker 11397*344a7f5eSAndroid Build Coastguard Worker public class SeekBarPreference extends android.support.v7.preference.Preference { 11398*344a7f5eSAndroid Build Coastguard Worker ctor public SeekBarPreference(android.content.Context, android.util.AttributeSet, int, int); 11399*344a7f5eSAndroid Build Coastguard Worker ctor public SeekBarPreference(android.content.Context, android.util.AttributeSet, int); 11400*344a7f5eSAndroid Build Coastguard Worker ctor public SeekBarPreference(android.content.Context, android.util.AttributeSet); 11401*344a7f5eSAndroid Build Coastguard Worker ctor public SeekBarPreference(android.content.Context); 11402*344a7f5eSAndroid Build Coastguard Worker method public int getMax(); 11403*344a7f5eSAndroid Build Coastguard Worker method public int getMin(); 11404*344a7f5eSAndroid Build Coastguard Worker method public final int getSeekBarIncrement(); 11405*344a7f5eSAndroid Build Coastguard Worker method public int getValue(); 11406*344a7f5eSAndroid Build Coastguard Worker method public boolean isAdjustable(); 11407*344a7f5eSAndroid Build Coastguard Worker method public void setAdjustable(boolean); 11408*344a7f5eSAndroid Build Coastguard Worker method public final void setMax(int); 11409*344a7f5eSAndroid Build Coastguard Worker method public void setMin(int); 11410*344a7f5eSAndroid Build Coastguard Worker method public final void setSeekBarIncrement(int); 11411*344a7f5eSAndroid Build Coastguard Worker method public void setValue(int); 11412*344a7f5eSAndroid Build Coastguard Worker } 11413*344a7f5eSAndroid Build Coastguard Worker 11414*344a7f5eSAndroid Build Coastguard Worker public class SwitchPreferenceCompat extends android.support.v7.preference.TwoStatePreference { 11415*344a7f5eSAndroid Build Coastguard Worker ctor public SwitchPreferenceCompat(android.content.Context, android.util.AttributeSet, int, int); 11416*344a7f5eSAndroid Build Coastguard Worker ctor public SwitchPreferenceCompat(android.content.Context, android.util.AttributeSet, int); 11417*344a7f5eSAndroid Build Coastguard Worker ctor public SwitchPreferenceCompat(android.content.Context, android.util.AttributeSet); 11418*344a7f5eSAndroid Build Coastguard Worker ctor public SwitchPreferenceCompat(android.content.Context); 11419*344a7f5eSAndroid Build Coastguard Worker method public java.lang.CharSequence getSwitchTextOff(); 11420*344a7f5eSAndroid Build Coastguard Worker method public java.lang.CharSequence getSwitchTextOn(); 11421*344a7f5eSAndroid Build Coastguard Worker method public void setSwitchTextOff(java.lang.CharSequence); 11422*344a7f5eSAndroid Build Coastguard Worker method public void setSwitchTextOff(int); 11423*344a7f5eSAndroid Build Coastguard Worker method public void setSwitchTextOn(java.lang.CharSequence); 11424*344a7f5eSAndroid Build Coastguard Worker method public void setSwitchTextOn(int); 11425*344a7f5eSAndroid Build Coastguard Worker } 11426*344a7f5eSAndroid Build Coastguard Worker 11427*344a7f5eSAndroid Build Coastguard Worker public abstract class TwoStatePreference extends android.support.v7.preference.Preference { 11428*344a7f5eSAndroid Build Coastguard Worker ctor public TwoStatePreference(android.content.Context, android.util.AttributeSet, int, int); 11429*344a7f5eSAndroid Build Coastguard Worker ctor public TwoStatePreference(android.content.Context, android.util.AttributeSet, int); 11430*344a7f5eSAndroid Build Coastguard Worker ctor public TwoStatePreference(android.content.Context, android.util.AttributeSet); 11431*344a7f5eSAndroid Build Coastguard Worker ctor public TwoStatePreference(android.content.Context); 11432*344a7f5eSAndroid Build Coastguard Worker method public boolean getDisableDependentsState(); 11433*344a7f5eSAndroid Build Coastguard Worker method public java.lang.CharSequence getSummaryOff(); 11434*344a7f5eSAndroid Build Coastguard Worker method public java.lang.CharSequence getSummaryOn(); 11435*344a7f5eSAndroid Build Coastguard Worker method public boolean isChecked(); 11436*344a7f5eSAndroid Build Coastguard Worker method public void setChecked(boolean); 11437*344a7f5eSAndroid Build Coastguard Worker method public void setDisableDependentsState(boolean); 11438*344a7f5eSAndroid Build Coastguard Worker method public void setSummaryOff(java.lang.CharSequence); 11439*344a7f5eSAndroid Build Coastguard Worker method public void setSummaryOff(int); 11440*344a7f5eSAndroid Build Coastguard Worker method public void setSummaryOn(java.lang.CharSequence); 11441*344a7f5eSAndroid Build Coastguard Worker method public void setSummaryOn(int); 11442*344a7f5eSAndroid Build Coastguard Worker method protected void syncSummaryView(android.support.v7.preference.PreferenceViewHolder); 11443*344a7f5eSAndroid Build Coastguard Worker field protected boolean mChecked; 11444*344a7f5eSAndroid Build Coastguard Worker } 11445*344a7f5eSAndroid Build Coastguard Worker 11446*344a7f5eSAndroid Build Coastguard Worker} 11447*344a7f5eSAndroid Build Coastguard Worker 11448*344a7f5eSAndroid Build Coastguard Workerpackage android.support.v7.util { 11449*344a7f5eSAndroid Build Coastguard Worker 11450*344a7f5eSAndroid Build Coastguard Worker public class AsyncListUtil<T> { 11451*344a7f5eSAndroid Build Coastguard Worker ctor public AsyncListUtil(java.lang.Class<T>, int, android.support.v7.util.AsyncListUtil.DataCallback<T>, android.support.v7.util.AsyncListUtil.ViewCallback); 11452*344a7f5eSAndroid Build Coastguard Worker method public T getItem(int); 11453*344a7f5eSAndroid Build Coastguard Worker method public int getItemCount(); 11454*344a7f5eSAndroid Build Coastguard Worker method public void onRangeChanged(); 11455*344a7f5eSAndroid Build Coastguard Worker method public void refresh(); 11456*344a7f5eSAndroid Build Coastguard Worker } 11457*344a7f5eSAndroid Build Coastguard Worker 11458*344a7f5eSAndroid Build Coastguard Worker public static abstract class AsyncListUtil.DataCallback<T> { 11459*344a7f5eSAndroid Build Coastguard Worker ctor public AsyncListUtil.DataCallback(); 11460*344a7f5eSAndroid Build Coastguard Worker method public abstract void fillData(T[], int, int); 11461*344a7f5eSAndroid Build Coastguard Worker method public int getMaxCachedTiles(); 11462*344a7f5eSAndroid Build Coastguard Worker method public void recycleData(T[], int); 11463*344a7f5eSAndroid Build Coastguard Worker method public abstract int refreshData(); 11464*344a7f5eSAndroid Build Coastguard Worker } 11465*344a7f5eSAndroid Build Coastguard Worker 11466*344a7f5eSAndroid Build Coastguard Worker public static abstract class AsyncListUtil.ViewCallback { 11467*344a7f5eSAndroid Build Coastguard Worker ctor public AsyncListUtil.ViewCallback(); 11468*344a7f5eSAndroid Build Coastguard Worker method public void extendRangeInto(int[], int[], int); 11469*344a7f5eSAndroid Build Coastguard Worker method public abstract void getItemRangeInto(int[]); 11470*344a7f5eSAndroid Build Coastguard Worker method public abstract void onDataRefresh(); 11471*344a7f5eSAndroid Build Coastguard Worker method public abstract void onItemLoaded(int); 11472*344a7f5eSAndroid Build Coastguard Worker field public static final int HINT_SCROLL_ASC = 2; // 0x2 11473*344a7f5eSAndroid Build Coastguard Worker field public static final int HINT_SCROLL_DESC = 1; // 0x1 11474*344a7f5eSAndroid Build Coastguard Worker field public static final int HINT_SCROLL_NONE = 0; // 0x0 11475*344a7f5eSAndroid Build Coastguard Worker } 11476*344a7f5eSAndroid Build Coastguard Worker 11477*344a7f5eSAndroid Build Coastguard Worker public class BatchingListUpdateCallback implements android.support.v7.util.ListUpdateCallback { 11478*344a7f5eSAndroid Build Coastguard Worker ctor public BatchingListUpdateCallback(android.support.v7.util.ListUpdateCallback); 11479*344a7f5eSAndroid Build Coastguard Worker method public void dispatchLastEvent(); 11480*344a7f5eSAndroid Build Coastguard Worker method public void onChanged(int, int, java.lang.Object); 11481*344a7f5eSAndroid Build Coastguard Worker method public void onInserted(int, int); 11482*344a7f5eSAndroid Build Coastguard Worker method public void onMoved(int, int); 11483*344a7f5eSAndroid Build Coastguard Worker method public void onRemoved(int, int); 11484*344a7f5eSAndroid Build Coastguard Worker } 11485*344a7f5eSAndroid Build Coastguard Worker 11486*344a7f5eSAndroid Build Coastguard Worker public class DiffUtil { 11487*344a7f5eSAndroid Build Coastguard Worker method public static android.support.v7.util.DiffUtil.DiffResult calculateDiff(android.support.v7.util.DiffUtil.Callback); 11488*344a7f5eSAndroid Build Coastguard Worker method public static android.support.v7.util.DiffUtil.DiffResult calculateDiff(android.support.v7.util.DiffUtil.Callback, boolean); 11489*344a7f5eSAndroid Build Coastguard Worker } 11490*344a7f5eSAndroid Build Coastguard Worker 11491*344a7f5eSAndroid Build Coastguard Worker public static abstract class DiffUtil.Callback { 11492*344a7f5eSAndroid Build Coastguard Worker ctor public DiffUtil.Callback(); 11493*344a7f5eSAndroid Build Coastguard Worker method public abstract boolean areContentsTheSame(int, int); 11494*344a7f5eSAndroid Build Coastguard Worker method public abstract boolean areItemsTheSame(int, int); 11495*344a7f5eSAndroid Build Coastguard Worker method public java.lang.Object getChangePayload(int, int); 11496*344a7f5eSAndroid Build Coastguard Worker method public abstract int getNewListSize(); 11497*344a7f5eSAndroid Build Coastguard Worker method public abstract int getOldListSize(); 11498*344a7f5eSAndroid Build Coastguard Worker } 11499*344a7f5eSAndroid Build Coastguard Worker 11500*344a7f5eSAndroid Build Coastguard Worker public static class DiffUtil.DiffResult { 11501*344a7f5eSAndroid Build Coastguard Worker method public void dispatchUpdatesTo(android.support.v7.widget.RecyclerView.Adapter); 11502*344a7f5eSAndroid Build Coastguard Worker method public void dispatchUpdatesTo(android.support.v7.util.ListUpdateCallback); 11503*344a7f5eSAndroid Build Coastguard Worker } 11504*344a7f5eSAndroid Build Coastguard Worker 11505*344a7f5eSAndroid Build Coastguard Worker public abstract interface ListUpdateCallback { 11506*344a7f5eSAndroid Build Coastguard Worker method public abstract void onChanged(int, int, java.lang.Object); 11507*344a7f5eSAndroid Build Coastguard Worker method public abstract void onInserted(int, int); 11508*344a7f5eSAndroid Build Coastguard Worker method public abstract void onMoved(int, int); 11509*344a7f5eSAndroid Build Coastguard Worker method public abstract void onRemoved(int, int); 11510*344a7f5eSAndroid Build Coastguard Worker } 11511*344a7f5eSAndroid Build Coastguard Worker 11512*344a7f5eSAndroid Build Coastguard Worker public class SortedList<T> { 11513*344a7f5eSAndroid Build Coastguard Worker ctor public SortedList(java.lang.Class<T>, android.support.v7.util.SortedList.Callback<T>); 11514*344a7f5eSAndroid Build Coastguard Worker ctor public SortedList(java.lang.Class<T>, android.support.v7.util.SortedList.Callback<T>, int); 11515*344a7f5eSAndroid Build Coastguard Worker method public int add(T); 11516*344a7f5eSAndroid Build Coastguard Worker method public void addAll(T[], boolean); 11517*344a7f5eSAndroid Build Coastguard Worker method public void addAll(T...); 11518*344a7f5eSAndroid Build Coastguard Worker method public void addAll(java.util.Collection<T>); 11519*344a7f5eSAndroid Build Coastguard Worker method public void beginBatchedUpdates(); 11520*344a7f5eSAndroid Build Coastguard Worker method public void clear(); 11521*344a7f5eSAndroid Build Coastguard Worker method public void endBatchedUpdates(); 11522*344a7f5eSAndroid Build Coastguard Worker method public T get(int) throws java.lang.IndexOutOfBoundsException; 11523*344a7f5eSAndroid Build Coastguard Worker method public int indexOf(T); 11524*344a7f5eSAndroid Build Coastguard Worker method public void recalculatePositionOfItemAt(int); 11525*344a7f5eSAndroid Build Coastguard Worker method public boolean remove(T); 11526*344a7f5eSAndroid Build Coastguard Worker method public T removeItemAt(int); 11527*344a7f5eSAndroid Build Coastguard Worker method public int size(); 11528*344a7f5eSAndroid Build Coastguard Worker method public void updateItemAt(int, T); 11529*344a7f5eSAndroid Build Coastguard Worker field public static final int INVALID_POSITION = -1; // 0xffffffff 11530*344a7f5eSAndroid Build Coastguard Worker } 11531*344a7f5eSAndroid Build Coastguard Worker 11532*344a7f5eSAndroid Build Coastguard Worker public static class SortedList.BatchedCallback<T2> extends android.support.v7.util.SortedList.Callback { 11533*344a7f5eSAndroid Build Coastguard Worker ctor public SortedList.BatchedCallback(android.support.v7.util.SortedList.Callback<T2>); 11534*344a7f5eSAndroid Build Coastguard Worker method public boolean areContentsTheSame(T2, T2); 11535*344a7f5eSAndroid Build Coastguard Worker method public boolean areItemsTheSame(T2, T2); 11536*344a7f5eSAndroid Build Coastguard Worker method public int compare(T2, T2); 11537*344a7f5eSAndroid Build Coastguard Worker method public void dispatchLastEvent(); 11538*344a7f5eSAndroid Build Coastguard Worker method public void onChanged(int, int); 11539*344a7f5eSAndroid Build Coastguard Worker method public void onInserted(int, int); 11540*344a7f5eSAndroid Build Coastguard Worker method public void onMoved(int, int); 11541*344a7f5eSAndroid Build Coastguard Worker method public void onRemoved(int, int); 11542*344a7f5eSAndroid Build Coastguard Worker } 11543*344a7f5eSAndroid Build Coastguard Worker 11544*344a7f5eSAndroid Build Coastguard Worker public static abstract class SortedList.Callback<T2> implements java.util.Comparator android.support.v7.util.ListUpdateCallback { 11545*344a7f5eSAndroid Build Coastguard Worker ctor public SortedList.Callback(); 11546*344a7f5eSAndroid Build Coastguard Worker method public abstract boolean areContentsTheSame(T2, T2); 11547*344a7f5eSAndroid Build Coastguard Worker method public abstract boolean areItemsTheSame(T2, T2); 11548*344a7f5eSAndroid Build Coastguard Worker method public abstract int compare(T2, T2); 11549*344a7f5eSAndroid Build Coastguard Worker method public abstract void onChanged(int, int); 11550*344a7f5eSAndroid Build Coastguard Worker method public void onChanged(int, int, java.lang.Object); 11551*344a7f5eSAndroid Build Coastguard Worker } 11552*344a7f5eSAndroid Build Coastguard Worker 11553*344a7f5eSAndroid Build Coastguard Worker} 11554*344a7f5eSAndroid Build Coastguard Worker 11555*344a7f5eSAndroid Build Coastguard Workerpackage android.support.v7.view { 11556*344a7f5eSAndroid Build Coastguard Worker 11557*344a7f5eSAndroid Build Coastguard Worker public abstract class ActionMode { 11558*344a7f5eSAndroid Build Coastguard Worker ctor public ActionMode(); 11559*344a7f5eSAndroid Build Coastguard Worker method public abstract void finish(); 11560*344a7f5eSAndroid Build Coastguard Worker method public abstract android.view.View getCustomView(); 11561*344a7f5eSAndroid Build Coastguard Worker method public abstract android.view.Menu getMenu(); 11562*344a7f5eSAndroid Build Coastguard Worker method public abstract android.view.MenuInflater getMenuInflater(); 11563*344a7f5eSAndroid Build Coastguard Worker method public abstract java.lang.CharSequence getSubtitle(); 11564*344a7f5eSAndroid Build Coastguard Worker method public java.lang.Object getTag(); 11565*344a7f5eSAndroid Build Coastguard Worker method public abstract java.lang.CharSequence getTitle(); 11566*344a7f5eSAndroid Build Coastguard Worker method public boolean getTitleOptionalHint(); 11567*344a7f5eSAndroid Build Coastguard Worker method public abstract void invalidate(); 11568*344a7f5eSAndroid Build Coastguard Worker method public boolean isTitleOptional(); 11569*344a7f5eSAndroid Build Coastguard Worker method public abstract void setCustomView(android.view.View); 11570*344a7f5eSAndroid Build Coastguard Worker method public abstract void setSubtitle(java.lang.CharSequence); 11571*344a7f5eSAndroid Build Coastguard Worker method public abstract void setSubtitle(int); 11572*344a7f5eSAndroid Build Coastguard Worker method public void setTag(java.lang.Object); 11573*344a7f5eSAndroid Build Coastguard Worker method public abstract void setTitle(java.lang.CharSequence); 11574*344a7f5eSAndroid Build Coastguard Worker method public abstract void setTitle(int); 11575*344a7f5eSAndroid Build Coastguard Worker method public void setTitleOptionalHint(boolean); 11576*344a7f5eSAndroid Build Coastguard Worker } 11577*344a7f5eSAndroid Build Coastguard Worker 11578*344a7f5eSAndroid Build Coastguard Worker public static abstract interface ActionMode.Callback { 11579*344a7f5eSAndroid Build Coastguard Worker method public abstract boolean onActionItemClicked(android.support.v7.view.ActionMode, android.view.MenuItem); 11580*344a7f5eSAndroid Build Coastguard Worker method public abstract boolean onCreateActionMode(android.support.v7.view.ActionMode, android.view.Menu); 11581*344a7f5eSAndroid Build Coastguard Worker method public abstract void onDestroyActionMode(android.support.v7.view.ActionMode); 11582*344a7f5eSAndroid Build Coastguard Worker method public abstract boolean onPrepareActionMode(android.support.v7.view.ActionMode, android.view.Menu); 11583*344a7f5eSAndroid Build Coastguard Worker } 11584*344a7f5eSAndroid Build Coastguard Worker 11585*344a7f5eSAndroid Build Coastguard Worker public abstract interface CollapsibleActionView { 11586*344a7f5eSAndroid Build Coastguard Worker method public abstract void onActionViewCollapsed(); 11587*344a7f5eSAndroid Build Coastguard Worker method public abstract void onActionViewExpanded(); 11588*344a7f5eSAndroid Build Coastguard Worker } 11589*344a7f5eSAndroid Build Coastguard Worker 11590*344a7f5eSAndroid Build Coastguard Worker} 11591*344a7f5eSAndroid Build Coastguard Worker 11592*344a7f5eSAndroid Build Coastguard Workerpackage android.support.v7.widget { 11593*344a7f5eSAndroid Build Coastguard Worker 11594*344a7f5eSAndroid Build Coastguard Worker public class ActionMenuView extends android.support.v7.widget.LinearLayoutCompat { 11595*344a7f5eSAndroid Build Coastguard Worker ctor public ActionMenuView(android.content.Context); 11596*344a7f5eSAndroid Build Coastguard Worker ctor public ActionMenuView(android.content.Context, android.util.AttributeSet); 11597*344a7f5eSAndroid Build Coastguard Worker method public void dismissPopupMenus(); 11598*344a7f5eSAndroid Build Coastguard Worker method public android.view.Menu getMenu(); 11599*344a7f5eSAndroid Build Coastguard Worker method public android.graphics.drawable.Drawable getOverflowIcon(); 11600*344a7f5eSAndroid Build Coastguard Worker method public int getPopupTheme(); 11601*344a7f5eSAndroid Build Coastguard Worker method public boolean hideOverflowMenu(); 11602*344a7f5eSAndroid Build Coastguard Worker method public boolean isOverflowMenuShowing(); 11603*344a7f5eSAndroid Build Coastguard Worker method public void onConfigurationChanged(android.content.res.Configuration); 11604*344a7f5eSAndroid Build Coastguard Worker method public void onDetachedFromWindow(); 11605*344a7f5eSAndroid Build Coastguard Worker method public void setOnMenuItemClickListener(android.support.v7.widget.ActionMenuView.OnMenuItemClickListener); 11606*344a7f5eSAndroid Build Coastguard Worker method public void setOverflowIcon(android.graphics.drawable.Drawable); 11607*344a7f5eSAndroid Build Coastguard Worker method public void setPopupTheme(int); 11608*344a7f5eSAndroid Build Coastguard Worker method public boolean showOverflowMenu(); 11609*344a7f5eSAndroid Build Coastguard Worker } 11610*344a7f5eSAndroid Build Coastguard Worker 11611*344a7f5eSAndroid Build Coastguard Worker public static class ActionMenuView.LayoutParams extends android.support.v7.widget.LinearLayoutCompat.LayoutParams { 11612*344a7f5eSAndroid Build Coastguard Worker ctor public ActionMenuView.LayoutParams(android.content.Context, android.util.AttributeSet); 11613*344a7f5eSAndroid Build Coastguard Worker ctor public ActionMenuView.LayoutParams(android.view.ViewGroup.LayoutParams); 11614*344a7f5eSAndroid Build Coastguard Worker ctor public ActionMenuView.LayoutParams(android.support.v7.widget.ActionMenuView.LayoutParams); 11615*344a7f5eSAndroid Build Coastguard Worker ctor public ActionMenuView.LayoutParams(int, int); 11616*344a7f5eSAndroid Build Coastguard Worker field public int cellsUsed; 11617*344a7f5eSAndroid Build Coastguard Worker field public boolean expandable; 11618*344a7f5eSAndroid Build Coastguard Worker field public int extraPixels; 11619*344a7f5eSAndroid Build Coastguard Worker field public boolean isOverflowButton; 11620*344a7f5eSAndroid Build Coastguard Worker field public boolean preventEdgeOffset; 11621*344a7f5eSAndroid Build Coastguard Worker } 11622*344a7f5eSAndroid Build Coastguard Worker 11623*344a7f5eSAndroid Build Coastguard Worker public static abstract interface ActionMenuView.OnMenuItemClickListener { 11624*344a7f5eSAndroid Build Coastguard Worker method public abstract boolean onMenuItemClick(android.view.MenuItem); 11625*344a7f5eSAndroid Build Coastguard Worker } 11626*344a7f5eSAndroid Build Coastguard Worker 11627*344a7f5eSAndroid Build Coastguard Worker public class AppCompatAutoCompleteTextView extends android.widget.AutoCompleteTextView implements android.support.v4.view.TintableBackgroundView { 11628*344a7f5eSAndroid Build Coastguard Worker ctor public AppCompatAutoCompleteTextView(android.content.Context); 11629*344a7f5eSAndroid Build Coastguard Worker ctor public AppCompatAutoCompleteTextView(android.content.Context, android.util.AttributeSet); 11630*344a7f5eSAndroid Build Coastguard Worker ctor public AppCompatAutoCompleteTextView(android.content.Context, android.util.AttributeSet, int); 11631*344a7f5eSAndroid Build Coastguard Worker } 11632*344a7f5eSAndroid Build Coastguard Worker 11633*344a7f5eSAndroid Build Coastguard Worker public class AppCompatButton extends android.widget.Button implements android.support.v4.view.TintableBackgroundView { 11634*344a7f5eSAndroid Build Coastguard Worker ctor public AppCompatButton(android.content.Context); 11635*344a7f5eSAndroid Build Coastguard Worker ctor public AppCompatButton(android.content.Context, android.util.AttributeSet); 11636*344a7f5eSAndroid Build Coastguard Worker ctor public AppCompatButton(android.content.Context, android.util.AttributeSet, int); 11637*344a7f5eSAndroid Build Coastguard Worker method public void setSupportAllCaps(boolean); 11638*344a7f5eSAndroid Build Coastguard Worker } 11639*344a7f5eSAndroid Build Coastguard Worker 11640*344a7f5eSAndroid Build Coastguard Worker public class AppCompatCheckBox extends android.widget.CheckBox implements android.support.v4.widget.TintableCompoundButton { 11641*344a7f5eSAndroid Build Coastguard Worker ctor public AppCompatCheckBox(android.content.Context); 11642*344a7f5eSAndroid Build Coastguard Worker ctor public AppCompatCheckBox(android.content.Context, android.util.AttributeSet); 11643*344a7f5eSAndroid Build Coastguard Worker ctor public AppCompatCheckBox(android.content.Context, android.util.AttributeSet, int); 11644*344a7f5eSAndroid Build Coastguard Worker } 11645*344a7f5eSAndroid Build Coastguard Worker 11646*344a7f5eSAndroid Build Coastguard Worker public class AppCompatCheckedTextView extends android.widget.CheckedTextView { 11647*344a7f5eSAndroid Build Coastguard Worker ctor public AppCompatCheckedTextView(android.content.Context); 11648*344a7f5eSAndroid Build Coastguard Worker ctor public AppCompatCheckedTextView(android.content.Context, android.util.AttributeSet); 11649*344a7f5eSAndroid Build Coastguard Worker ctor public AppCompatCheckedTextView(android.content.Context, android.util.AttributeSet, int); 11650*344a7f5eSAndroid Build Coastguard Worker } 11651*344a7f5eSAndroid Build Coastguard Worker 11652*344a7f5eSAndroid Build Coastguard Worker public class AppCompatEditText extends android.widget.EditText implements android.support.v4.view.TintableBackgroundView { 11653*344a7f5eSAndroid Build Coastguard Worker ctor public AppCompatEditText(android.content.Context); 11654*344a7f5eSAndroid Build Coastguard Worker ctor public AppCompatEditText(android.content.Context, android.util.AttributeSet); 11655*344a7f5eSAndroid Build Coastguard Worker ctor public AppCompatEditText(android.content.Context, android.util.AttributeSet, int); 11656*344a7f5eSAndroid Build Coastguard Worker } 11657*344a7f5eSAndroid Build Coastguard Worker 11658*344a7f5eSAndroid Build Coastguard Worker public class AppCompatImageButton extends android.widget.ImageButton implements android.support.v4.view.TintableBackgroundView { 11659*344a7f5eSAndroid Build Coastguard Worker ctor public AppCompatImageButton(android.content.Context); 11660*344a7f5eSAndroid Build Coastguard Worker ctor public AppCompatImageButton(android.content.Context, android.util.AttributeSet); 11661*344a7f5eSAndroid Build Coastguard Worker ctor public AppCompatImageButton(android.content.Context, android.util.AttributeSet, int); 11662*344a7f5eSAndroid Build Coastguard Worker } 11663*344a7f5eSAndroid Build Coastguard Worker 11664*344a7f5eSAndroid Build Coastguard Worker public class AppCompatImageView extends android.widget.ImageView implements android.support.v4.view.TintableBackgroundView { 11665*344a7f5eSAndroid Build Coastguard Worker ctor public AppCompatImageView(android.content.Context); 11666*344a7f5eSAndroid Build Coastguard Worker ctor public AppCompatImageView(android.content.Context, android.util.AttributeSet); 11667*344a7f5eSAndroid Build Coastguard Worker ctor public AppCompatImageView(android.content.Context, android.util.AttributeSet, int); 11668*344a7f5eSAndroid Build Coastguard Worker } 11669*344a7f5eSAndroid Build Coastguard Worker 11670*344a7f5eSAndroid Build Coastguard Worker public class AppCompatMultiAutoCompleteTextView extends android.widget.MultiAutoCompleteTextView implements android.support.v4.view.TintableBackgroundView { 11671*344a7f5eSAndroid Build Coastguard Worker ctor public AppCompatMultiAutoCompleteTextView(android.content.Context); 11672*344a7f5eSAndroid Build Coastguard Worker ctor public AppCompatMultiAutoCompleteTextView(android.content.Context, android.util.AttributeSet); 11673*344a7f5eSAndroid Build Coastguard Worker ctor public AppCompatMultiAutoCompleteTextView(android.content.Context, android.util.AttributeSet, int); 11674*344a7f5eSAndroid Build Coastguard Worker } 11675*344a7f5eSAndroid Build Coastguard Worker 11676*344a7f5eSAndroid Build Coastguard Worker public class AppCompatRadioButton extends android.widget.RadioButton implements android.support.v4.widget.TintableCompoundButton { 11677*344a7f5eSAndroid Build Coastguard Worker ctor public AppCompatRadioButton(android.content.Context); 11678*344a7f5eSAndroid Build Coastguard Worker ctor public AppCompatRadioButton(android.content.Context, android.util.AttributeSet); 11679*344a7f5eSAndroid Build Coastguard Worker ctor public AppCompatRadioButton(android.content.Context, android.util.AttributeSet, int); 11680*344a7f5eSAndroid Build Coastguard Worker } 11681*344a7f5eSAndroid Build Coastguard Worker 11682*344a7f5eSAndroid Build Coastguard Worker public class AppCompatRatingBar extends android.widget.RatingBar { 11683*344a7f5eSAndroid Build Coastguard Worker ctor public AppCompatRatingBar(android.content.Context); 11684*344a7f5eSAndroid Build Coastguard Worker ctor public AppCompatRatingBar(android.content.Context, android.util.AttributeSet); 11685*344a7f5eSAndroid Build Coastguard Worker ctor public AppCompatRatingBar(android.content.Context, android.util.AttributeSet, int); 11686*344a7f5eSAndroid Build Coastguard Worker } 11687*344a7f5eSAndroid Build Coastguard Worker 11688*344a7f5eSAndroid Build Coastguard Worker public class AppCompatSeekBar extends android.widget.SeekBar { 11689*344a7f5eSAndroid Build Coastguard Worker ctor public AppCompatSeekBar(android.content.Context); 11690*344a7f5eSAndroid Build Coastguard Worker ctor public AppCompatSeekBar(android.content.Context, android.util.AttributeSet); 11691*344a7f5eSAndroid Build Coastguard Worker ctor public AppCompatSeekBar(android.content.Context, android.util.AttributeSet, int); 11692*344a7f5eSAndroid Build Coastguard Worker } 11693*344a7f5eSAndroid Build Coastguard Worker 11694*344a7f5eSAndroid Build Coastguard Worker public class AppCompatSpinner extends android.widget.Spinner implements android.support.v4.view.TintableBackgroundView { 11695*344a7f5eSAndroid Build Coastguard Worker ctor public AppCompatSpinner(android.content.Context); 11696*344a7f5eSAndroid Build Coastguard Worker ctor public AppCompatSpinner(android.content.Context, int); 11697*344a7f5eSAndroid Build Coastguard Worker ctor public AppCompatSpinner(android.content.Context, android.util.AttributeSet); 11698*344a7f5eSAndroid Build Coastguard Worker ctor public AppCompatSpinner(android.content.Context, android.util.AttributeSet, int); 11699*344a7f5eSAndroid Build Coastguard Worker ctor public AppCompatSpinner(android.content.Context, android.util.AttributeSet, int, int); 11700*344a7f5eSAndroid Build Coastguard Worker ctor public AppCompatSpinner(android.content.Context, android.util.AttributeSet, int, int, android.content.res.Resources.Theme); 11701*344a7f5eSAndroid Build Coastguard Worker } 11702*344a7f5eSAndroid Build Coastguard Worker 11703*344a7f5eSAndroid Build Coastguard Worker public class AppCompatTextView extends android.widget.TextView implements android.support.v4.view.TintableBackgroundView { 11704*344a7f5eSAndroid Build Coastguard Worker ctor public AppCompatTextView(android.content.Context); 11705*344a7f5eSAndroid Build Coastguard Worker ctor public AppCompatTextView(android.content.Context, android.util.AttributeSet); 11706*344a7f5eSAndroid Build Coastguard Worker ctor public AppCompatTextView(android.content.Context, android.util.AttributeSet, int); 11707*344a7f5eSAndroid Build Coastguard Worker } 11708*344a7f5eSAndroid Build Coastguard Worker 11709*344a7f5eSAndroid Build Coastguard Worker public class CardView extends android.widget.FrameLayout { 11710*344a7f5eSAndroid Build Coastguard Worker ctor public CardView(android.content.Context); 11711*344a7f5eSAndroid Build Coastguard Worker ctor public CardView(android.content.Context, android.util.AttributeSet); 11712*344a7f5eSAndroid Build Coastguard Worker ctor public CardView(android.content.Context, android.util.AttributeSet, int); 11713*344a7f5eSAndroid Build Coastguard Worker method public android.content.res.ColorStateList getCardBackgroundColor(); 11714*344a7f5eSAndroid Build Coastguard Worker method public float getCardElevation(); 11715*344a7f5eSAndroid Build Coastguard Worker method public int getContentPaddingBottom(); 11716*344a7f5eSAndroid Build Coastguard Worker method public int getContentPaddingLeft(); 11717*344a7f5eSAndroid Build Coastguard Worker method public int getContentPaddingRight(); 11718*344a7f5eSAndroid Build Coastguard Worker method public int getContentPaddingTop(); 11719*344a7f5eSAndroid Build Coastguard Worker method public float getMaxCardElevation(); 11720*344a7f5eSAndroid Build Coastguard Worker method public boolean getPreventCornerOverlap(); 11721*344a7f5eSAndroid Build Coastguard Worker method public float getRadius(); 11722*344a7f5eSAndroid Build Coastguard Worker method public boolean getUseCompatPadding(); 11723*344a7f5eSAndroid Build Coastguard Worker method public void setCardBackgroundColor(int); 11724*344a7f5eSAndroid Build Coastguard Worker method public void setCardBackgroundColor(android.content.res.ColorStateList); 11725*344a7f5eSAndroid Build Coastguard Worker method public void setCardElevation(float); 11726*344a7f5eSAndroid Build Coastguard Worker method public void setContentPadding(int, int, int, int); 11727*344a7f5eSAndroid Build Coastguard Worker method public void setMaxCardElevation(float); 11728*344a7f5eSAndroid Build Coastguard Worker method public void setPreventCornerOverlap(boolean); 11729*344a7f5eSAndroid Build Coastguard Worker method public void setRadius(float); 11730*344a7f5eSAndroid Build Coastguard Worker method public void setUseCompatPadding(boolean); 11731*344a7f5eSAndroid Build Coastguard Worker } 11732*344a7f5eSAndroid Build Coastguard Worker 11733*344a7f5eSAndroid Build Coastguard Worker public class DefaultItemAnimator extends android.support.v7.widget.SimpleItemAnimator { 11734*344a7f5eSAndroid Build Coastguard Worker ctor public DefaultItemAnimator(); 11735*344a7f5eSAndroid Build Coastguard Worker method public boolean animateAdd(android.support.v7.widget.RecyclerView.ViewHolder); 11736*344a7f5eSAndroid Build Coastguard Worker method public boolean animateChange(android.support.v7.widget.RecyclerView.ViewHolder, android.support.v7.widget.RecyclerView.ViewHolder, int, int, int, int); 11737*344a7f5eSAndroid Build Coastguard Worker method public boolean animateMove(android.support.v7.widget.RecyclerView.ViewHolder, int, int, int, int); 11738*344a7f5eSAndroid Build Coastguard Worker method public boolean animateRemove(android.support.v7.widget.RecyclerView.ViewHolder); 11739*344a7f5eSAndroid Build Coastguard Worker method public void endAnimation(android.support.v7.widget.RecyclerView.ViewHolder); 11740*344a7f5eSAndroid Build Coastguard Worker method public void endAnimations(); 11741*344a7f5eSAndroid Build Coastguard Worker method public boolean isRunning(); 11742*344a7f5eSAndroid Build Coastguard Worker method public void runPendingAnimations(); 11743*344a7f5eSAndroid Build Coastguard Worker } 11744*344a7f5eSAndroid Build Coastguard Worker 11745*344a7f5eSAndroid Build Coastguard Worker public class DividerItemDecoration extends android.support.v7.widget.RecyclerView.ItemDecoration { 11746*344a7f5eSAndroid Build Coastguard Worker ctor public DividerItemDecoration(android.content.Context, int); 11747*344a7f5eSAndroid Build Coastguard Worker method public void setDrawable(android.graphics.drawable.Drawable); 11748*344a7f5eSAndroid Build Coastguard Worker method public void setOrientation(int); 11749*344a7f5eSAndroid Build Coastguard Worker field public static final int HORIZONTAL = 0; // 0x0 11750*344a7f5eSAndroid Build Coastguard Worker field public static final int VERTICAL = 1; // 0x1 11751*344a7f5eSAndroid Build Coastguard Worker } 11752*344a7f5eSAndroid Build Coastguard Worker 11753*344a7f5eSAndroid Build Coastguard Worker public class GridLayout extends android.view.ViewGroup { 11754*344a7f5eSAndroid Build Coastguard Worker ctor public GridLayout(android.content.Context, android.util.AttributeSet, int); 11755*344a7f5eSAndroid Build Coastguard Worker ctor public GridLayout(android.content.Context, android.util.AttributeSet); 11756*344a7f5eSAndroid Build Coastguard Worker ctor public GridLayout(android.content.Context); 11757*344a7f5eSAndroid Build Coastguard Worker method public int getAlignmentMode(); 11758*344a7f5eSAndroid Build Coastguard Worker method public int getColumnCount(); 11759*344a7f5eSAndroid Build Coastguard Worker method public int getOrientation(); 11760*344a7f5eSAndroid Build Coastguard Worker method public android.util.Printer getPrinter(); 11761*344a7f5eSAndroid Build Coastguard Worker method public int getRowCount(); 11762*344a7f5eSAndroid Build Coastguard Worker method public boolean getUseDefaultMargins(); 11763*344a7f5eSAndroid Build Coastguard Worker method public boolean isColumnOrderPreserved(); 11764*344a7f5eSAndroid Build Coastguard Worker method public boolean isRowOrderPreserved(); 11765*344a7f5eSAndroid Build Coastguard Worker method protected void onLayout(boolean, int, int, int, int); 11766*344a7f5eSAndroid Build Coastguard Worker method public void setAlignmentMode(int); 11767*344a7f5eSAndroid Build Coastguard Worker method public void setColumnCount(int); 11768*344a7f5eSAndroid Build Coastguard Worker method public void setColumnOrderPreserved(boolean); 11769*344a7f5eSAndroid Build Coastguard Worker method public void setOrientation(int); 11770*344a7f5eSAndroid Build Coastguard Worker method public void setPrinter(android.util.Printer); 11771*344a7f5eSAndroid Build Coastguard Worker method public void setRowCount(int); 11772*344a7f5eSAndroid Build Coastguard Worker method public void setRowOrderPreserved(boolean); 11773*344a7f5eSAndroid Build Coastguard Worker method public void setUseDefaultMargins(boolean); 11774*344a7f5eSAndroid Build Coastguard Worker method public static android.support.v7.widget.GridLayout.Spec spec(int, int, android.support.v7.widget.GridLayout.Alignment, float); 11775*344a7f5eSAndroid Build Coastguard Worker method public static android.support.v7.widget.GridLayout.Spec spec(int, android.support.v7.widget.GridLayout.Alignment, float); 11776*344a7f5eSAndroid Build Coastguard Worker method public static android.support.v7.widget.GridLayout.Spec spec(int, int, float); 11777*344a7f5eSAndroid Build Coastguard Worker method public static android.support.v7.widget.GridLayout.Spec spec(int, float); 11778*344a7f5eSAndroid Build Coastguard Worker method public static android.support.v7.widget.GridLayout.Spec spec(int, int, android.support.v7.widget.GridLayout.Alignment); 11779*344a7f5eSAndroid Build Coastguard Worker method public static android.support.v7.widget.GridLayout.Spec spec(int, android.support.v7.widget.GridLayout.Alignment); 11780*344a7f5eSAndroid Build Coastguard Worker method public static android.support.v7.widget.GridLayout.Spec spec(int, int); 11781*344a7f5eSAndroid Build Coastguard Worker method public static android.support.v7.widget.GridLayout.Spec spec(int); 11782*344a7f5eSAndroid Build Coastguard Worker field public static final int ALIGN_BOUNDS = 0; // 0x0 11783*344a7f5eSAndroid Build Coastguard Worker field public static final int ALIGN_MARGINS = 1; // 0x1 11784*344a7f5eSAndroid Build Coastguard Worker field public static final android.support.v7.widget.GridLayout.Alignment BASELINE; 11785*344a7f5eSAndroid Build Coastguard Worker field public static final android.support.v7.widget.GridLayout.Alignment BOTTOM; 11786*344a7f5eSAndroid Build Coastguard Worker field public static final android.support.v7.widget.GridLayout.Alignment CENTER; 11787*344a7f5eSAndroid Build Coastguard Worker field public static final android.support.v7.widget.GridLayout.Alignment END; 11788*344a7f5eSAndroid Build Coastguard Worker field public static final android.support.v7.widget.GridLayout.Alignment FILL; 11789*344a7f5eSAndroid Build Coastguard Worker field public static final int HORIZONTAL = 0; // 0x0 11790*344a7f5eSAndroid Build Coastguard Worker field public static final android.support.v7.widget.GridLayout.Alignment LEFT; 11791*344a7f5eSAndroid Build Coastguard Worker field public static final android.support.v7.widget.GridLayout.Alignment RIGHT; 11792*344a7f5eSAndroid Build Coastguard Worker field public static final android.support.v7.widget.GridLayout.Alignment START; 11793*344a7f5eSAndroid Build Coastguard Worker field public static final android.support.v7.widget.GridLayout.Alignment TOP; 11794*344a7f5eSAndroid Build Coastguard Worker field public static final int UNDEFINED = -2147483648; // 0x80000000 11795*344a7f5eSAndroid Build Coastguard Worker field public static final int VERTICAL = 1; // 0x1 11796*344a7f5eSAndroid Build Coastguard Worker } 11797*344a7f5eSAndroid Build Coastguard Worker 11798*344a7f5eSAndroid Build Coastguard Worker public static abstract class GridLayout.Alignment { 11799*344a7f5eSAndroid Build Coastguard Worker } 11800*344a7f5eSAndroid Build Coastguard Worker 11801*344a7f5eSAndroid Build Coastguard Worker public static class GridLayout.LayoutParams extends android.view.ViewGroup.MarginLayoutParams { 11802*344a7f5eSAndroid Build Coastguard Worker ctor public GridLayout.LayoutParams(android.support.v7.widget.GridLayout.Spec, android.support.v7.widget.GridLayout.Spec); 11803*344a7f5eSAndroid Build Coastguard Worker ctor public GridLayout.LayoutParams(); 11804*344a7f5eSAndroid Build Coastguard Worker ctor public GridLayout.LayoutParams(android.view.ViewGroup.LayoutParams); 11805*344a7f5eSAndroid Build Coastguard Worker ctor public GridLayout.LayoutParams(android.view.ViewGroup.MarginLayoutParams); 11806*344a7f5eSAndroid Build Coastguard Worker ctor public GridLayout.LayoutParams(android.support.v7.widget.GridLayout.LayoutParams); 11807*344a7f5eSAndroid Build Coastguard Worker ctor public GridLayout.LayoutParams(android.content.Context, android.util.AttributeSet); 11808*344a7f5eSAndroid Build Coastguard Worker method public void setGravity(int); 11809*344a7f5eSAndroid Build Coastguard Worker field public android.support.v7.widget.GridLayout.Spec columnSpec; 11810*344a7f5eSAndroid Build Coastguard Worker field public android.support.v7.widget.GridLayout.Spec rowSpec; 11811*344a7f5eSAndroid Build Coastguard Worker } 11812*344a7f5eSAndroid Build Coastguard Worker 11813*344a7f5eSAndroid Build Coastguard Worker public static class GridLayout.Spec { 11814*344a7f5eSAndroid Build Coastguard Worker method public android.support.v7.widget.GridLayout.Alignment getAbsoluteAlignment(boolean); 11815*344a7f5eSAndroid Build Coastguard Worker } 11816*344a7f5eSAndroid Build Coastguard Worker 11817*344a7f5eSAndroid Build Coastguard Worker public class GridLayoutManager extends android.support.v7.widget.LinearLayoutManager { 11818*344a7f5eSAndroid Build Coastguard Worker ctor public GridLayoutManager(android.content.Context, android.util.AttributeSet, int, int); 11819*344a7f5eSAndroid Build Coastguard Worker ctor public GridLayoutManager(android.content.Context, int); 11820*344a7f5eSAndroid Build Coastguard Worker ctor public GridLayoutManager(android.content.Context, int, int, boolean); 11821*344a7f5eSAndroid Build Coastguard Worker method public int getSpanCount(); 11822*344a7f5eSAndroid Build Coastguard Worker method public android.support.v7.widget.GridLayoutManager.SpanSizeLookup getSpanSizeLookup(); 11823*344a7f5eSAndroid Build Coastguard Worker method public void setSpanCount(int); 11824*344a7f5eSAndroid Build Coastguard Worker method public void setSpanSizeLookup(android.support.v7.widget.GridLayoutManager.SpanSizeLookup); 11825*344a7f5eSAndroid Build Coastguard Worker field public static final int DEFAULT_SPAN_COUNT = -1; // 0xffffffff 11826*344a7f5eSAndroid Build Coastguard Worker } 11827*344a7f5eSAndroid Build Coastguard Worker 11828*344a7f5eSAndroid Build Coastguard Worker public static final class GridLayoutManager.DefaultSpanSizeLookup extends android.support.v7.widget.GridLayoutManager.SpanSizeLookup { 11829*344a7f5eSAndroid Build Coastguard Worker ctor public GridLayoutManager.DefaultSpanSizeLookup(); 11830*344a7f5eSAndroid Build Coastguard Worker method public int getSpanSize(int); 11831*344a7f5eSAndroid Build Coastguard Worker } 11832*344a7f5eSAndroid Build Coastguard Worker 11833*344a7f5eSAndroid Build Coastguard Worker public static class GridLayoutManager.LayoutParams extends android.support.v7.widget.RecyclerView.LayoutParams { 11834*344a7f5eSAndroid Build Coastguard Worker ctor public GridLayoutManager.LayoutParams(android.content.Context, android.util.AttributeSet); 11835*344a7f5eSAndroid Build Coastguard Worker ctor public GridLayoutManager.LayoutParams(int, int); 11836*344a7f5eSAndroid Build Coastguard Worker ctor public GridLayoutManager.LayoutParams(android.view.ViewGroup.MarginLayoutParams); 11837*344a7f5eSAndroid Build Coastguard Worker ctor public GridLayoutManager.LayoutParams(android.view.ViewGroup.LayoutParams); 11838*344a7f5eSAndroid Build Coastguard Worker ctor public GridLayoutManager.LayoutParams(android.support.v7.widget.RecyclerView.LayoutParams); 11839*344a7f5eSAndroid Build Coastguard Worker method public int getSpanIndex(); 11840*344a7f5eSAndroid Build Coastguard Worker method public int getSpanSize(); 11841*344a7f5eSAndroid Build Coastguard Worker field public static final int INVALID_SPAN_ID = -1; // 0xffffffff 11842*344a7f5eSAndroid Build Coastguard Worker } 11843*344a7f5eSAndroid Build Coastguard Worker 11844*344a7f5eSAndroid Build Coastguard Worker public static abstract class GridLayoutManager.SpanSizeLookup { 11845*344a7f5eSAndroid Build Coastguard Worker ctor public GridLayoutManager.SpanSizeLookup(); 11846*344a7f5eSAndroid Build Coastguard Worker method public int getSpanGroupIndex(int, int); 11847*344a7f5eSAndroid Build Coastguard Worker method public int getSpanIndex(int, int); 11848*344a7f5eSAndroid Build Coastguard Worker method public abstract int getSpanSize(int); 11849*344a7f5eSAndroid Build Coastguard Worker method public void invalidateSpanIndexCache(); 11850*344a7f5eSAndroid Build Coastguard Worker method public boolean isSpanIndexCacheEnabled(); 11851*344a7f5eSAndroid Build Coastguard Worker method public void setSpanIndexCacheEnabled(boolean); 11852*344a7f5eSAndroid Build Coastguard Worker } 11853*344a7f5eSAndroid Build Coastguard Worker 11854*344a7f5eSAndroid Build Coastguard Worker public class LinearLayoutCompat extends android.view.ViewGroup { 11855*344a7f5eSAndroid Build Coastguard Worker ctor public LinearLayoutCompat(android.content.Context); 11856*344a7f5eSAndroid Build Coastguard Worker ctor public LinearLayoutCompat(android.content.Context, android.util.AttributeSet); 11857*344a7f5eSAndroid Build Coastguard Worker ctor public LinearLayoutCompat(android.content.Context, android.util.AttributeSet, int); 11858*344a7f5eSAndroid Build Coastguard Worker method public int getBaselineAlignedChildIndex(); 11859*344a7f5eSAndroid Build Coastguard Worker method public android.graphics.drawable.Drawable getDividerDrawable(); 11860*344a7f5eSAndroid Build Coastguard Worker method public int getDividerPadding(); 11861*344a7f5eSAndroid Build Coastguard Worker method public int getGravity(); 11862*344a7f5eSAndroid Build Coastguard Worker method public int getOrientation(); 11863*344a7f5eSAndroid Build Coastguard Worker method public int getShowDividers(); 11864*344a7f5eSAndroid Build Coastguard Worker method public float getWeightSum(); 11865*344a7f5eSAndroid Build Coastguard Worker method public boolean isBaselineAligned(); 11866*344a7f5eSAndroid Build Coastguard Worker method public boolean isMeasureWithLargestChildEnabled(); 11867*344a7f5eSAndroid Build Coastguard Worker method protected void onLayout(boolean, int, int, int, int); 11868*344a7f5eSAndroid Build Coastguard Worker method public void setBaselineAligned(boolean); 11869*344a7f5eSAndroid Build Coastguard Worker method public void setBaselineAlignedChildIndex(int); 11870*344a7f5eSAndroid Build Coastguard Worker method public void setDividerDrawable(android.graphics.drawable.Drawable); 11871*344a7f5eSAndroid Build Coastguard Worker method public void setDividerPadding(int); 11872*344a7f5eSAndroid Build Coastguard Worker method public void setGravity(int); 11873*344a7f5eSAndroid Build Coastguard Worker method public void setHorizontalGravity(int); 11874*344a7f5eSAndroid Build Coastguard Worker method public void setMeasureWithLargestChildEnabled(boolean); 11875*344a7f5eSAndroid Build Coastguard Worker method public void setOrientation(int); 11876*344a7f5eSAndroid Build Coastguard Worker method public void setShowDividers(int); 11877*344a7f5eSAndroid Build Coastguard Worker method public void setVerticalGravity(int); 11878*344a7f5eSAndroid Build Coastguard Worker method public void setWeightSum(float); 11879*344a7f5eSAndroid Build Coastguard Worker field public static final int HORIZONTAL = 0; // 0x0 11880*344a7f5eSAndroid Build Coastguard Worker field public static final int SHOW_DIVIDER_BEGINNING = 1; // 0x1 11881*344a7f5eSAndroid Build Coastguard Worker field public static final int SHOW_DIVIDER_END = 4; // 0x4 11882*344a7f5eSAndroid Build Coastguard Worker field public static final int SHOW_DIVIDER_MIDDLE = 2; // 0x2 11883*344a7f5eSAndroid Build Coastguard Worker field public static final int SHOW_DIVIDER_NONE = 0; // 0x0 11884*344a7f5eSAndroid Build Coastguard Worker field public static final int VERTICAL = 1; // 0x1 11885*344a7f5eSAndroid Build Coastguard Worker } 11886*344a7f5eSAndroid Build Coastguard Worker 11887*344a7f5eSAndroid Build Coastguard Worker public static class LinearLayoutCompat.LayoutParams extends android.view.ViewGroup.MarginLayoutParams { 11888*344a7f5eSAndroid Build Coastguard Worker ctor public LinearLayoutCompat.LayoutParams(android.content.Context, android.util.AttributeSet); 11889*344a7f5eSAndroid Build Coastguard Worker ctor public LinearLayoutCompat.LayoutParams(int, int); 11890*344a7f5eSAndroid Build Coastguard Worker ctor public LinearLayoutCompat.LayoutParams(int, int, float); 11891*344a7f5eSAndroid Build Coastguard Worker ctor public LinearLayoutCompat.LayoutParams(android.view.ViewGroup.LayoutParams); 11892*344a7f5eSAndroid Build Coastguard Worker ctor public LinearLayoutCompat.LayoutParams(android.view.ViewGroup.MarginLayoutParams); 11893*344a7f5eSAndroid Build Coastguard Worker ctor public LinearLayoutCompat.LayoutParams(android.support.v7.widget.LinearLayoutCompat.LayoutParams); 11894*344a7f5eSAndroid Build Coastguard Worker field public int gravity; 11895*344a7f5eSAndroid Build Coastguard Worker field public float weight; 11896*344a7f5eSAndroid Build Coastguard Worker } 11897*344a7f5eSAndroid Build Coastguard Worker 11898*344a7f5eSAndroid Build Coastguard Worker public class LinearLayoutManager extends android.support.v7.widget.RecyclerView.LayoutManager implements android.support.v7.widget.helper.ItemTouchHelper.ViewDropHandler android.support.v7.widget.RecyclerView.SmoothScroller.ScrollVectorProvider { 11899*344a7f5eSAndroid Build Coastguard Worker ctor public LinearLayoutManager(android.content.Context); 11900*344a7f5eSAndroid Build Coastguard Worker ctor public LinearLayoutManager(android.content.Context, int, boolean); 11901*344a7f5eSAndroid Build Coastguard Worker ctor public LinearLayoutManager(android.content.Context, android.util.AttributeSet, int, int); 11902*344a7f5eSAndroid Build Coastguard Worker method public android.graphics.PointF computeScrollVectorForPosition(int); 11903*344a7f5eSAndroid Build Coastguard Worker method public int findFirstCompletelyVisibleItemPosition(); 11904*344a7f5eSAndroid Build Coastguard Worker method public int findFirstVisibleItemPosition(); 11905*344a7f5eSAndroid Build Coastguard Worker method public int findLastCompletelyVisibleItemPosition(); 11906*344a7f5eSAndroid Build Coastguard Worker method public int findLastVisibleItemPosition(); 11907*344a7f5eSAndroid Build Coastguard Worker method public android.support.v7.widget.RecyclerView.LayoutParams generateDefaultLayoutParams(); 11908*344a7f5eSAndroid Build Coastguard Worker method protected int getExtraLayoutSpace(android.support.v7.widget.RecyclerView.State); 11909*344a7f5eSAndroid Build Coastguard Worker method public int getInitialPrefetchItemCount(); 11910*344a7f5eSAndroid Build Coastguard Worker method public int getOrientation(); 11911*344a7f5eSAndroid Build Coastguard Worker method public boolean getRecycleChildrenOnDetach(); 11912*344a7f5eSAndroid Build Coastguard Worker method public boolean getReverseLayout(); 11913*344a7f5eSAndroid Build Coastguard Worker method public boolean getStackFromEnd(); 11914*344a7f5eSAndroid Build Coastguard Worker method protected boolean isLayoutRTL(); 11915*344a7f5eSAndroid Build Coastguard Worker method public boolean isSmoothScrollbarEnabled(); 11916*344a7f5eSAndroid Build Coastguard Worker method public void scrollToPositionWithOffset(int, int); 11917*344a7f5eSAndroid Build Coastguard Worker method public void setInitialPrefetchItemCount(int); 11918*344a7f5eSAndroid Build Coastguard Worker method public void setOrientation(int); 11919*344a7f5eSAndroid Build Coastguard Worker method public void setRecycleChildrenOnDetach(boolean); 11920*344a7f5eSAndroid Build Coastguard Worker method public void setReverseLayout(boolean); 11921*344a7f5eSAndroid Build Coastguard Worker method public void setSmoothScrollbarEnabled(boolean); 11922*344a7f5eSAndroid Build Coastguard Worker method public void setStackFromEnd(boolean); 11923*344a7f5eSAndroid Build Coastguard Worker field public static final int HORIZONTAL = 0; // 0x0 11924*344a7f5eSAndroid Build Coastguard Worker field public static final int INVALID_OFFSET = -2147483648; // 0x80000000 11925*344a7f5eSAndroid Build Coastguard Worker field public static final int VERTICAL = 1; // 0x1 11926*344a7f5eSAndroid Build Coastguard Worker } 11927*344a7f5eSAndroid Build Coastguard Worker 11928*344a7f5eSAndroid Build Coastguard Worker protected static class LinearLayoutManager.LayoutChunkResult { 11929*344a7f5eSAndroid Build Coastguard Worker ctor protected LinearLayoutManager.LayoutChunkResult(); 11930*344a7f5eSAndroid Build Coastguard Worker field public int mConsumed; 11931*344a7f5eSAndroid Build Coastguard Worker field public boolean mFinished; 11932*344a7f5eSAndroid Build Coastguard Worker field public boolean mFocusable; 11933*344a7f5eSAndroid Build Coastguard Worker field public boolean mIgnoreConsumed; 11934*344a7f5eSAndroid Build Coastguard Worker } 11935*344a7f5eSAndroid Build Coastguard Worker 11936*344a7f5eSAndroid Build Coastguard Worker public class LinearSmoothScroller extends android.support.v7.widget.RecyclerView.SmoothScroller { 11937*344a7f5eSAndroid Build Coastguard Worker ctor public LinearSmoothScroller(android.content.Context); 11938*344a7f5eSAndroid Build Coastguard Worker method public int calculateDtToFit(int, int, int, int, int); 11939*344a7f5eSAndroid Build Coastguard Worker method public int calculateDxToMakeVisible(android.view.View, int); 11940*344a7f5eSAndroid Build Coastguard Worker method public int calculateDyToMakeVisible(android.view.View, int); 11941*344a7f5eSAndroid Build Coastguard Worker method protected float calculateSpeedPerPixel(android.util.DisplayMetrics); 11942*344a7f5eSAndroid Build Coastguard Worker method protected int calculateTimeForDeceleration(int); 11943*344a7f5eSAndroid Build Coastguard Worker method protected int calculateTimeForScrolling(int); 11944*344a7f5eSAndroid Build Coastguard Worker method public android.graphics.PointF computeScrollVectorForPosition(int); 11945*344a7f5eSAndroid Build Coastguard Worker method protected int getHorizontalSnapPreference(); 11946*344a7f5eSAndroid Build Coastguard Worker method protected int getVerticalSnapPreference(); 11947*344a7f5eSAndroid Build Coastguard Worker method protected void onSeekTargetStep(int, int, android.support.v7.widget.RecyclerView.State, android.support.v7.widget.RecyclerView.SmoothScroller.Action); 11948*344a7f5eSAndroid Build Coastguard Worker method protected void onStart(); 11949*344a7f5eSAndroid Build Coastguard Worker method protected void onStop(); 11950*344a7f5eSAndroid Build Coastguard Worker method protected void onTargetFound(android.view.View, android.support.v7.widget.RecyclerView.State, android.support.v7.widget.RecyclerView.SmoothScroller.Action); 11951*344a7f5eSAndroid Build Coastguard Worker method protected void updateActionForInterimTarget(android.support.v7.widget.RecyclerView.SmoothScroller.Action); 11952*344a7f5eSAndroid Build Coastguard Worker field public static final int SNAP_TO_ANY = 0; // 0x0 11953*344a7f5eSAndroid Build Coastguard Worker field public static final int SNAP_TO_END = 1; // 0x1 11954*344a7f5eSAndroid Build Coastguard Worker field public static final int SNAP_TO_START = -1; // 0xffffffff 11955*344a7f5eSAndroid Build Coastguard Worker field protected final android.view.animation.DecelerateInterpolator mDecelerateInterpolator; 11956*344a7f5eSAndroid Build Coastguard Worker field protected int mInterimTargetDx; 11957*344a7f5eSAndroid Build Coastguard Worker field protected int mInterimTargetDy; 11958*344a7f5eSAndroid Build Coastguard Worker field protected final android.view.animation.LinearInterpolator mLinearInterpolator; 11959*344a7f5eSAndroid Build Coastguard Worker field protected android.graphics.PointF mTargetVector; 11960*344a7f5eSAndroid Build Coastguard Worker } 11961*344a7f5eSAndroid Build Coastguard Worker 11962*344a7f5eSAndroid Build Coastguard Worker public class LinearSnapHelper extends android.support.v7.widget.SnapHelper { 11963*344a7f5eSAndroid Build Coastguard Worker ctor public LinearSnapHelper(); 11964*344a7f5eSAndroid Build Coastguard Worker method public int[] calculateDistanceToFinalSnap(android.support.v7.widget.RecyclerView.LayoutManager, android.view.View); 11965*344a7f5eSAndroid Build Coastguard Worker method public android.view.View findSnapView(android.support.v7.widget.RecyclerView.LayoutManager); 11966*344a7f5eSAndroid Build Coastguard Worker method public int findTargetSnapPosition(android.support.v7.widget.RecyclerView.LayoutManager, int, int); 11967*344a7f5eSAndroid Build Coastguard Worker } 11968*344a7f5eSAndroid Build Coastguard Worker 11969*344a7f5eSAndroid Build Coastguard Worker public class ListPopupWindow { 11970*344a7f5eSAndroid Build Coastguard Worker ctor public ListPopupWindow(android.content.Context); 11971*344a7f5eSAndroid Build Coastguard Worker ctor public ListPopupWindow(android.content.Context, android.util.AttributeSet); 11972*344a7f5eSAndroid Build Coastguard Worker ctor public ListPopupWindow(android.content.Context, android.util.AttributeSet, int); 11973*344a7f5eSAndroid Build Coastguard Worker ctor public ListPopupWindow(android.content.Context, android.util.AttributeSet, int, int); 11974*344a7f5eSAndroid Build Coastguard Worker method public void clearListSelection(); 11975*344a7f5eSAndroid Build Coastguard Worker method public android.view.View.OnTouchListener createDragToOpenListener(android.view.View); 11976*344a7f5eSAndroid Build Coastguard Worker method public void dismiss(); 11977*344a7f5eSAndroid Build Coastguard Worker method public android.view.View getAnchorView(); 11978*344a7f5eSAndroid Build Coastguard Worker method public int getAnimationStyle(); 11979*344a7f5eSAndroid Build Coastguard Worker method public android.graphics.drawable.Drawable getBackground(); 11980*344a7f5eSAndroid Build Coastguard Worker method public int getHeight(); 11981*344a7f5eSAndroid Build Coastguard Worker method public int getHorizontalOffset(); 11982*344a7f5eSAndroid Build Coastguard Worker method public int getInputMethodMode(); 11983*344a7f5eSAndroid Build Coastguard Worker method public android.widget.ListView getListView(); 11984*344a7f5eSAndroid Build Coastguard Worker method public int getPromptPosition(); 11985*344a7f5eSAndroid Build Coastguard Worker method public java.lang.Object getSelectedItem(); 11986*344a7f5eSAndroid Build Coastguard Worker method public long getSelectedItemId(); 11987*344a7f5eSAndroid Build Coastguard Worker method public int getSelectedItemPosition(); 11988*344a7f5eSAndroid Build Coastguard Worker method public android.view.View getSelectedView(); 11989*344a7f5eSAndroid Build Coastguard Worker method public int getSoftInputMode(); 11990*344a7f5eSAndroid Build Coastguard Worker method public int getVerticalOffset(); 11991*344a7f5eSAndroid Build Coastguard Worker method public int getWidth(); 11992*344a7f5eSAndroid Build Coastguard Worker method public boolean isInputMethodNotNeeded(); 11993*344a7f5eSAndroid Build Coastguard Worker method public boolean isModal(); 11994*344a7f5eSAndroid Build Coastguard Worker method public boolean isShowing(); 11995*344a7f5eSAndroid Build Coastguard Worker method public boolean onKeyDown(int, android.view.KeyEvent); 11996*344a7f5eSAndroid Build Coastguard Worker method public boolean onKeyPreIme(int, android.view.KeyEvent); 11997*344a7f5eSAndroid Build Coastguard Worker method public boolean onKeyUp(int, android.view.KeyEvent); 11998*344a7f5eSAndroid Build Coastguard Worker method public boolean performItemClick(int); 11999*344a7f5eSAndroid Build Coastguard Worker method public void postShow(); 12000*344a7f5eSAndroid Build Coastguard Worker method public void setAdapter(android.widget.ListAdapter); 12001*344a7f5eSAndroid Build Coastguard Worker method public void setAnchorView(android.view.View); 12002*344a7f5eSAndroid Build Coastguard Worker method public void setAnimationStyle(int); 12003*344a7f5eSAndroid Build Coastguard Worker method public void setBackgroundDrawable(android.graphics.drawable.Drawable); 12004*344a7f5eSAndroid Build Coastguard Worker method public void setContentWidth(int); 12005*344a7f5eSAndroid Build Coastguard Worker method public void setDropDownGravity(int); 12006*344a7f5eSAndroid Build Coastguard Worker method public void setHeight(int); 12007*344a7f5eSAndroid Build Coastguard Worker method public void setHorizontalOffset(int); 12008*344a7f5eSAndroid Build Coastguard Worker method public void setInputMethodMode(int); 12009*344a7f5eSAndroid Build Coastguard Worker method public void setListSelector(android.graphics.drawable.Drawable); 12010*344a7f5eSAndroid Build Coastguard Worker method public void setModal(boolean); 12011*344a7f5eSAndroid Build Coastguard Worker method public void setOnDismissListener(android.widget.PopupWindow.OnDismissListener); 12012*344a7f5eSAndroid Build Coastguard Worker method public void setOnItemClickListener(android.widget.AdapterView.OnItemClickListener); 12013*344a7f5eSAndroid Build Coastguard Worker method public void setOnItemSelectedListener(android.widget.AdapterView.OnItemSelectedListener); 12014*344a7f5eSAndroid Build Coastguard Worker method public void setPromptPosition(int); 12015*344a7f5eSAndroid Build Coastguard Worker method public void setPromptView(android.view.View); 12016*344a7f5eSAndroid Build Coastguard Worker method public void setSelection(int); 12017*344a7f5eSAndroid Build Coastguard Worker method public void setSoftInputMode(int); 12018*344a7f5eSAndroid Build Coastguard Worker method public void setVerticalOffset(int); 12019*344a7f5eSAndroid Build Coastguard Worker method public void setWidth(int); 12020*344a7f5eSAndroid Build Coastguard Worker method public void setWindowLayoutType(int); 12021*344a7f5eSAndroid Build Coastguard Worker method public void show(); 12022*344a7f5eSAndroid Build Coastguard Worker field public static final int INPUT_METHOD_FROM_FOCUSABLE = 0; // 0x0 12023*344a7f5eSAndroid Build Coastguard Worker field public static final int INPUT_METHOD_NEEDED = 1; // 0x1 12024*344a7f5eSAndroid Build Coastguard Worker field public static final int INPUT_METHOD_NOT_NEEDED = 2; // 0x2 12025*344a7f5eSAndroid Build Coastguard Worker field public static final int MATCH_PARENT = -1; // 0xffffffff 12026*344a7f5eSAndroid Build Coastguard Worker field public static final int POSITION_PROMPT_ABOVE = 0; // 0x0 12027*344a7f5eSAndroid Build Coastguard Worker field public static final int POSITION_PROMPT_BELOW = 1; // 0x1 12028*344a7f5eSAndroid Build Coastguard Worker field public static final int WRAP_CONTENT = -2; // 0xfffffffe 12029*344a7f5eSAndroid Build Coastguard Worker } 12030*344a7f5eSAndroid Build Coastguard Worker 12031*344a7f5eSAndroid Build Coastguard Worker public abstract class OrientationHelper { 12032*344a7f5eSAndroid Build Coastguard Worker method public static android.support.v7.widget.OrientationHelper createHorizontalHelper(android.support.v7.widget.RecyclerView.LayoutManager); 12033*344a7f5eSAndroid Build Coastguard Worker method public static android.support.v7.widget.OrientationHelper createOrientationHelper(android.support.v7.widget.RecyclerView.LayoutManager, int); 12034*344a7f5eSAndroid Build Coastguard Worker method public static android.support.v7.widget.OrientationHelper createVerticalHelper(android.support.v7.widget.RecyclerView.LayoutManager); 12035*344a7f5eSAndroid Build Coastguard Worker method public abstract int getDecoratedEnd(android.view.View); 12036*344a7f5eSAndroid Build Coastguard Worker method public abstract int getDecoratedMeasurement(android.view.View); 12037*344a7f5eSAndroid Build Coastguard Worker method public abstract int getDecoratedMeasurementInOther(android.view.View); 12038*344a7f5eSAndroid Build Coastguard Worker method public abstract int getDecoratedStart(android.view.View); 12039*344a7f5eSAndroid Build Coastguard Worker method public abstract int getEnd(); 12040*344a7f5eSAndroid Build Coastguard Worker method public abstract int getEndAfterPadding(); 12041*344a7f5eSAndroid Build Coastguard Worker method public abstract int getEndPadding(); 12042*344a7f5eSAndroid Build Coastguard Worker method public abstract int getMode(); 12043*344a7f5eSAndroid Build Coastguard Worker method public abstract int getModeInOther(); 12044*344a7f5eSAndroid Build Coastguard Worker method public abstract int getStartAfterPadding(); 12045*344a7f5eSAndroid Build Coastguard Worker method public abstract int getTotalSpace(); 12046*344a7f5eSAndroid Build Coastguard Worker method public int getTotalSpaceChange(); 12047*344a7f5eSAndroid Build Coastguard Worker method public abstract int getTransformedEndWithDecoration(android.view.View); 12048*344a7f5eSAndroid Build Coastguard Worker method public abstract int getTransformedStartWithDecoration(android.view.View); 12049*344a7f5eSAndroid Build Coastguard Worker method public abstract void offsetChild(android.view.View, int); 12050*344a7f5eSAndroid Build Coastguard Worker method public abstract void offsetChildren(int); 12051*344a7f5eSAndroid Build Coastguard Worker method public void onLayoutComplete(); 12052*344a7f5eSAndroid Build Coastguard Worker field public static final int HORIZONTAL = 0; // 0x0 12053*344a7f5eSAndroid Build Coastguard Worker field public static final int VERTICAL = 1; // 0x1 12054*344a7f5eSAndroid Build Coastguard Worker field protected final android.support.v7.widget.RecyclerView.LayoutManager mLayoutManager; 12055*344a7f5eSAndroid Build Coastguard Worker } 12056*344a7f5eSAndroid Build Coastguard Worker 12057*344a7f5eSAndroid Build Coastguard Worker public class PagerSnapHelper extends android.support.v7.widget.SnapHelper { 12058*344a7f5eSAndroid Build Coastguard Worker ctor public PagerSnapHelper(); 12059*344a7f5eSAndroid Build Coastguard Worker method public int[] calculateDistanceToFinalSnap(android.support.v7.widget.RecyclerView.LayoutManager, android.view.View); 12060*344a7f5eSAndroid Build Coastguard Worker method public android.view.View findSnapView(android.support.v7.widget.RecyclerView.LayoutManager); 12061*344a7f5eSAndroid Build Coastguard Worker method public int findTargetSnapPosition(android.support.v7.widget.RecyclerView.LayoutManager, int, int); 12062*344a7f5eSAndroid Build Coastguard Worker } 12063*344a7f5eSAndroid Build Coastguard Worker 12064*344a7f5eSAndroid Build Coastguard Worker public class PopupMenu { 12065*344a7f5eSAndroid Build Coastguard Worker ctor public PopupMenu(android.content.Context, android.view.View); 12066*344a7f5eSAndroid Build Coastguard Worker ctor public PopupMenu(android.content.Context, android.view.View, int); 12067*344a7f5eSAndroid Build Coastguard Worker ctor public PopupMenu(android.content.Context, android.view.View, int, int, int); 12068*344a7f5eSAndroid Build Coastguard Worker method public void dismiss(); 12069*344a7f5eSAndroid Build Coastguard Worker method public android.view.View.OnTouchListener getDragToOpenListener(); 12070*344a7f5eSAndroid Build Coastguard Worker method public int getGravity(); 12071*344a7f5eSAndroid Build Coastguard Worker method public android.view.Menu getMenu(); 12072*344a7f5eSAndroid Build Coastguard Worker method public android.view.MenuInflater getMenuInflater(); 12073*344a7f5eSAndroid Build Coastguard Worker method public void inflate(int); 12074*344a7f5eSAndroid Build Coastguard Worker method public void setGravity(int); 12075*344a7f5eSAndroid Build Coastguard Worker method public void setOnDismissListener(android.support.v7.widget.PopupMenu.OnDismissListener); 12076*344a7f5eSAndroid Build Coastguard Worker method public void setOnMenuItemClickListener(android.support.v7.widget.PopupMenu.OnMenuItemClickListener); 12077*344a7f5eSAndroid Build Coastguard Worker method public void show(); 12078*344a7f5eSAndroid Build Coastguard Worker } 12079*344a7f5eSAndroid Build Coastguard Worker 12080*344a7f5eSAndroid Build Coastguard Worker public static abstract interface PopupMenu.OnDismissListener { 12081*344a7f5eSAndroid Build Coastguard Worker method public abstract void onDismiss(android.support.v7.widget.PopupMenu); 12082*344a7f5eSAndroid Build Coastguard Worker } 12083*344a7f5eSAndroid Build Coastguard Worker 12084*344a7f5eSAndroid Build Coastguard Worker public static abstract interface PopupMenu.OnMenuItemClickListener { 12085*344a7f5eSAndroid Build Coastguard Worker method public abstract boolean onMenuItemClick(android.view.MenuItem); 12086*344a7f5eSAndroid Build Coastguard Worker } 12087*344a7f5eSAndroid Build Coastguard Worker 12088*344a7f5eSAndroid Build Coastguard Worker public class RecyclerView extends android.view.ViewGroup implements android.support.v4.view.NestedScrollingChild2 android.support.v4.view.ScrollingView { 12089*344a7f5eSAndroid Build Coastguard Worker ctor public RecyclerView(android.content.Context); 12090*344a7f5eSAndroid Build Coastguard Worker ctor public RecyclerView(android.content.Context, android.util.AttributeSet); 12091*344a7f5eSAndroid Build Coastguard Worker ctor public RecyclerView(android.content.Context, android.util.AttributeSet, int); 12092*344a7f5eSAndroid Build Coastguard Worker method public void addItemDecoration(android.support.v7.widget.RecyclerView.ItemDecoration, int); 12093*344a7f5eSAndroid Build Coastguard Worker method public void addItemDecoration(android.support.v7.widget.RecyclerView.ItemDecoration); 12094*344a7f5eSAndroid Build Coastguard Worker method public void addOnChildAttachStateChangeListener(android.support.v7.widget.RecyclerView.OnChildAttachStateChangeListener); 12095*344a7f5eSAndroid Build Coastguard Worker method public void addOnItemTouchListener(android.support.v7.widget.RecyclerView.OnItemTouchListener); 12096*344a7f5eSAndroid Build Coastguard Worker method public void addOnScrollListener(android.support.v7.widget.RecyclerView.OnScrollListener); 12097*344a7f5eSAndroid Build Coastguard Worker method public void clearOnChildAttachStateChangeListeners(); 12098*344a7f5eSAndroid Build Coastguard Worker method public void clearOnScrollListeners(); 12099*344a7f5eSAndroid Build Coastguard Worker method public int computeHorizontalScrollExtent(); 12100*344a7f5eSAndroid Build Coastguard Worker method public int computeHorizontalScrollOffset(); 12101*344a7f5eSAndroid Build Coastguard Worker method public int computeHorizontalScrollRange(); 12102*344a7f5eSAndroid Build Coastguard Worker method public int computeVerticalScrollExtent(); 12103*344a7f5eSAndroid Build Coastguard Worker method public int computeVerticalScrollOffset(); 12104*344a7f5eSAndroid Build Coastguard Worker method public int computeVerticalScrollRange(); 12105*344a7f5eSAndroid Build Coastguard Worker method public boolean dispatchNestedPreScroll(int, int, int[], int[], int); 12106*344a7f5eSAndroid Build Coastguard Worker method public boolean dispatchNestedScroll(int, int, int, int, int[], int); 12107*344a7f5eSAndroid Build Coastguard Worker method public boolean drawChild(android.graphics.Canvas, android.view.View, long); 12108*344a7f5eSAndroid Build Coastguard Worker method public android.view.View findChildViewUnder(float, float); 12109*344a7f5eSAndroid Build Coastguard Worker method public android.view.View findContainingItemView(android.view.View); 12110*344a7f5eSAndroid Build Coastguard Worker method public android.support.v7.widget.RecyclerView.ViewHolder findContainingViewHolder(android.view.View); 12111*344a7f5eSAndroid Build Coastguard Worker method public android.support.v7.widget.RecyclerView.ViewHolder findViewHolderForAdapterPosition(int); 12112*344a7f5eSAndroid Build Coastguard Worker method public android.support.v7.widget.RecyclerView.ViewHolder findViewHolderForItemId(long); 12113*344a7f5eSAndroid Build Coastguard Worker method public android.support.v7.widget.RecyclerView.ViewHolder findViewHolderForLayoutPosition(int); 12114*344a7f5eSAndroid Build Coastguard Worker method public deprecated android.support.v7.widget.RecyclerView.ViewHolder findViewHolderForPosition(int); 12115*344a7f5eSAndroid Build Coastguard Worker method public boolean fling(int, int); 12116*344a7f5eSAndroid Build Coastguard Worker method public android.support.v7.widget.RecyclerView.Adapter getAdapter(); 12117*344a7f5eSAndroid Build Coastguard Worker method public int getChildAdapterPosition(android.view.View); 12118*344a7f5eSAndroid Build Coastguard Worker method public long getChildItemId(android.view.View); 12119*344a7f5eSAndroid Build Coastguard Worker method public int getChildLayoutPosition(android.view.View); 12120*344a7f5eSAndroid Build Coastguard Worker method public deprecated int getChildPosition(android.view.View); 12121*344a7f5eSAndroid Build Coastguard Worker method public android.support.v7.widget.RecyclerView.ViewHolder getChildViewHolder(android.view.View); 12122*344a7f5eSAndroid Build Coastguard Worker method public android.support.v7.widget.RecyclerViewAccessibilityDelegate getCompatAccessibilityDelegate(); 12123*344a7f5eSAndroid Build Coastguard Worker method public void getDecoratedBoundsWithMargins(android.view.View, android.graphics.Rect); 12124*344a7f5eSAndroid Build Coastguard Worker method public android.support.v7.widget.RecyclerView.ItemAnimator getItemAnimator(); 12125*344a7f5eSAndroid Build Coastguard Worker method public android.support.v7.widget.RecyclerView.ItemDecoration getItemDecorationAt(int); 12126*344a7f5eSAndroid Build Coastguard Worker method public int getItemDecorationCount(); 12127*344a7f5eSAndroid Build Coastguard Worker method public android.support.v7.widget.RecyclerView.LayoutManager getLayoutManager(); 12128*344a7f5eSAndroid Build Coastguard Worker method public int getMaxFlingVelocity(); 12129*344a7f5eSAndroid Build Coastguard Worker method public int getMinFlingVelocity(); 12130*344a7f5eSAndroid Build Coastguard Worker method public android.support.v7.widget.RecyclerView.OnFlingListener getOnFlingListener(); 12131*344a7f5eSAndroid Build Coastguard Worker method public boolean getPreserveFocusAfterLayout(); 12132*344a7f5eSAndroid Build Coastguard Worker method public android.support.v7.widget.RecyclerView.RecycledViewPool getRecycledViewPool(); 12133*344a7f5eSAndroid Build Coastguard Worker method public int getScrollState(); 12134*344a7f5eSAndroid Build Coastguard Worker method public boolean hasFixedSize(); 12135*344a7f5eSAndroid Build Coastguard Worker method public boolean hasNestedScrollingParent(int); 12136*344a7f5eSAndroid Build Coastguard Worker method public boolean hasPendingAdapterUpdates(); 12137*344a7f5eSAndroid Build Coastguard Worker method public void invalidateItemDecorations(); 12138*344a7f5eSAndroid Build Coastguard Worker method public boolean isAnimating(); 12139*344a7f5eSAndroid Build Coastguard Worker method public boolean isComputingLayout(); 12140*344a7f5eSAndroid Build Coastguard Worker method public boolean isLayoutFrozen(); 12141*344a7f5eSAndroid Build Coastguard Worker method public void offsetChildrenHorizontal(int); 12142*344a7f5eSAndroid Build Coastguard Worker method public void offsetChildrenVertical(int); 12143*344a7f5eSAndroid Build Coastguard Worker method public void onChildAttachedToWindow(android.view.View); 12144*344a7f5eSAndroid Build Coastguard Worker method public void onChildDetachedFromWindow(android.view.View); 12145*344a7f5eSAndroid Build Coastguard Worker method public void onDraw(android.graphics.Canvas); 12146*344a7f5eSAndroid Build Coastguard Worker method protected void onLayout(boolean, int, int, int, int); 12147*344a7f5eSAndroid Build Coastguard Worker method public void onScrollStateChanged(int); 12148*344a7f5eSAndroid Build Coastguard Worker method public void onScrolled(int, int); 12149*344a7f5eSAndroid Build Coastguard Worker method public void removeItemDecoration(android.support.v7.widget.RecyclerView.ItemDecoration); 12150*344a7f5eSAndroid Build Coastguard Worker method public void removeItemDecorationAt(int); 12151*344a7f5eSAndroid Build Coastguard Worker method public void removeOnChildAttachStateChangeListener(android.support.v7.widget.RecyclerView.OnChildAttachStateChangeListener); 12152*344a7f5eSAndroid Build Coastguard Worker method public void removeOnItemTouchListener(android.support.v7.widget.RecyclerView.OnItemTouchListener); 12153*344a7f5eSAndroid Build Coastguard Worker method public void removeOnScrollListener(android.support.v7.widget.RecyclerView.OnScrollListener); 12154*344a7f5eSAndroid Build Coastguard Worker method public void scrollToPosition(int); 12155*344a7f5eSAndroid Build Coastguard Worker method public void setAccessibilityDelegateCompat(android.support.v7.widget.RecyclerViewAccessibilityDelegate); 12156*344a7f5eSAndroid Build Coastguard Worker method public void setAdapter(android.support.v7.widget.RecyclerView.Adapter); 12157*344a7f5eSAndroid Build Coastguard Worker method public void setChildDrawingOrderCallback(android.support.v7.widget.RecyclerView.ChildDrawingOrderCallback); 12158*344a7f5eSAndroid Build Coastguard Worker method public void setHasFixedSize(boolean); 12159*344a7f5eSAndroid Build Coastguard Worker method public void setItemAnimator(android.support.v7.widget.RecyclerView.ItemAnimator); 12160*344a7f5eSAndroid Build Coastguard Worker method public void setItemViewCacheSize(int); 12161*344a7f5eSAndroid Build Coastguard Worker method public void setLayoutFrozen(boolean); 12162*344a7f5eSAndroid Build Coastguard Worker method public void setLayoutManager(android.support.v7.widget.RecyclerView.LayoutManager); 12163*344a7f5eSAndroid Build Coastguard Worker method public void setOnFlingListener(android.support.v7.widget.RecyclerView.OnFlingListener); 12164*344a7f5eSAndroid Build Coastguard Worker method public deprecated void setOnScrollListener(android.support.v7.widget.RecyclerView.OnScrollListener); 12165*344a7f5eSAndroid Build Coastguard Worker method public void setPreserveFocusAfterLayout(boolean); 12166*344a7f5eSAndroid Build Coastguard Worker method public void setRecycledViewPool(android.support.v7.widget.RecyclerView.RecycledViewPool); 12167*344a7f5eSAndroid Build Coastguard Worker method public void setRecyclerListener(android.support.v7.widget.RecyclerView.RecyclerListener); 12168*344a7f5eSAndroid Build Coastguard Worker method public void setScrollingTouchSlop(int); 12169*344a7f5eSAndroid Build Coastguard Worker method public void setViewCacheExtension(android.support.v7.widget.RecyclerView.ViewCacheExtension); 12170*344a7f5eSAndroid Build Coastguard Worker method public void smoothScrollBy(int, int); 12171*344a7f5eSAndroid Build Coastguard Worker method public void smoothScrollBy(int, int, android.view.animation.Interpolator); 12172*344a7f5eSAndroid Build Coastguard Worker method public void smoothScrollToPosition(int); 12173*344a7f5eSAndroid Build Coastguard Worker method public boolean startNestedScroll(int, int); 12174*344a7f5eSAndroid Build Coastguard Worker method public void stopNestedScroll(int); 12175*344a7f5eSAndroid Build Coastguard Worker method public void stopScroll(); 12176*344a7f5eSAndroid Build Coastguard Worker method public void swapAdapter(android.support.v7.widget.RecyclerView.Adapter, boolean); 12177*344a7f5eSAndroid Build Coastguard Worker field public static final int HORIZONTAL = 0; // 0x0 12178*344a7f5eSAndroid Build Coastguard Worker field public static final int INVALID_TYPE = -1; // 0xffffffff 12179*344a7f5eSAndroid Build Coastguard Worker field public static final long NO_ID = -1L; // 0xffffffffffffffffL 12180*344a7f5eSAndroid Build Coastguard Worker field public static final int NO_POSITION = -1; // 0xffffffff 12181*344a7f5eSAndroid Build Coastguard Worker field public static final int SCROLL_STATE_DRAGGING = 1; // 0x1 12182*344a7f5eSAndroid Build Coastguard Worker field public static final int SCROLL_STATE_IDLE = 0; // 0x0 12183*344a7f5eSAndroid Build Coastguard Worker field public static final int SCROLL_STATE_SETTLING = 2; // 0x2 12184*344a7f5eSAndroid Build Coastguard Worker field public static final int TOUCH_SLOP_DEFAULT = 0; // 0x0 12185*344a7f5eSAndroid Build Coastguard Worker field public static final int TOUCH_SLOP_PAGING = 1; // 0x1 12186*344a7f5eSAndroid Build Coastguard Worker field public static final int VERTICAL = 1; // 0x1 12187*344a7f5eSAndroid Build Coastguard Worker } 12188*344a7f5eSAndroid Build Coastguard Worker 12189*344a7f5eSAndroid Build Coastguard Worker public static abstract class RecyclerView.Adapter<VH extends android.support.v7.widget.RecyclerView.ViewHolder> { 12190*344a7f5eSAndroid Build Coastguard Worker ctor public RecyclerView.Adapter(); 12191*344a7f5eSAndroid Build Coastguard Worker method public final void bindViewHolder(VH, int); 12192*344a7f5eSAndroid Build Coastguard Worker method public final VH createViewHolder(android.view.ViewGroup, int); 12193*344a7f5eSAndroid Build Coastguard Worker method public abstract int getItemCount(); 12194*344a7f5eSAndroid Build Coastguard Worker method public long getItemId(int); 12195*344a7f5eSAndroid Build Coastguard Worker method public int getItemViewType(int); 12196*344a7f5eSAndroid Build Coastguard Worker method public final boolean hasObservers(); 12197*344a7f5eSAndroid Build Coastguard Worker method public final boolean hasStableIds(); 12198*344a7f5eSAndroid Build Coastguard Worker method public final void notifyDataSetChanged(); 12199*344a7f5eSAndroid Build Coastguard Worker method public final void notifyItemChanged(int); 12200*344a7f5eSAndroid Build Coastguard Worker method public final void notifyItemChanged(int, java.lang.Object); 12201*344a7f5eSAndroid Build Coastguard Worker method public final void notifyItemInserted(int); 12202*344a7f5eSAndroid Build Coastguard Worker method public final void notifyItemMoved(int, int); 12203*344a7f5eSAndroid Build Coastguard Worker method public final void notifyItemRangeChanged(int, int); 12204*344a7f5eSAndroid Build Coastguard Worker method public final void notifyItemRangeChanged(int, int, java.lang.Object); 12205*344a7f5eSAndroid Build Coastguard Worker method public final void notifyItemRangeInserted(int, int); 12206*344a7f5eSAndroid Build Coastguard Worker method public final void notifyItemRangeRemoved(int, int); 12207*344a7f5eSAndroid Build Coastguard Worker method public final void notifyItemRemoved(int); 12208*344a7f5eSAndroid Build Coastguard Worker method public void onAttachedToRecyclerView(android.support.v7.widget.RecyclerView); 12209*344a7f5eSAndroid Build Coastguard Worker method public abstract void onBindViewHolder(VH, int); 12210*344a7f5eSAndroid Build Coastguard Worker method public void onBindViewHolder(VH, int, java.util.List<java.lang.Object>); 12211*344a7f5eSAndroid Build Coastguard Worker method public abstract VH onCreateViewHolder(android.view.ViewGroup, int); 12212*344a7f5eSAndroid Build Coastguard Worker method public void onDetachedFromRecyclerView(android.support.v7.widget.RecyclerView); 12213*344a7f5eSAndroid Build Coastguard Worker method public boolean onFailedToRecycleView(VH); 12214*344a7f5eSAndroid Build Coastguard Worker method public void onViewAttachedToWindow(VH); 12215*344a7f5eSAndroid Build Coastguard Worker method public void onViewDetachedFromWindow(VH); 12216*344a7f5eSAndroid Build Coastguard Worker method public void onViewRecycled(VH); 12217*344a7f5eSAndroid Build Coastguard Worker method public void registerAdapterDataObserver(android.support.v7.widget.RecyclerView.AdapterDataObserver); 12218*344a7f5eSAndroid Build Coastguard Worker method public void setHasStableIds(boolean); 12219*344a7f5eSAndroid Build Coastguard Worker method public void unregisterAdapterDataObserver(android.support.v7.widget.RecyclerView.AdapterDataObserver); 12220*344a7f5eSAndroid Build Coastguard Worker } 12221*344a7f5eSAndroid Build Coastguard Worker 12222*344a7f5eSAndroid Build Coastguard Worker public static abstract class RecyclerView.AdapterDataObserver { 12223*344a7f5eSAndroid Build Coastguard Worker ctor public RecyclerView.AdapterDataObserver(); 12224*344a7f5eSAndroid Build Coastguard Worker method public void onChanged(); 12225*344a7f5eSAndroid Build Coastguard Worker method public void onItemRangeChanged(int, int); 12226*344a7f5eSAndroid Build Coastguard Worker method public void onItemRangeChanged(int, int, java.lang.Object); 12227*344a7f5eSAndroid Build Coastguard Worker method public void onItemRangeInserted(int, int); 12228*344a7f5eSAndroid Build Coastguard Worker method public void onItemRangeMoved(int, int, int); 12229*344a7f5eSAndroid Build Coastguard Worker method public void onItemRangeRemoved(int, int); 12230*344a7f5eSAndroid Build Coastguard Worker } 12231*344a7f5eSAndroid Build Coastguard Worker 12232*344a7f5eSAndroid Build Coastguard Worker public static abstract interface RecyclerView.ChildDrawingOrderCallback { 12233*344a7f5eSAndroid Build Coastguard Worker method public abstract int onGetChildDrawingOrder(int, int); 12234*344a7f5eSAndroid Build Coastguard Worker } 12235*344a7f5eSAndroid Build Coastguard Worker 12236*344a7f5eSAndroid Build Coastguard Worker public static abstract class RecyclerView.ItemAnimator { 12237*344a7f5eSAndroid Build Coastguard Worker ctor public RecyclerView.ItemAnimator(); 12238*344a7f5eSAndroid Build Coastguard Worker method public abstract boolean animateAppearance(android.support.v7.widget.RecyclerView.ViewHolder, android.support.v7.widget.RecyclerView.ItemAnimator.ItemHolderInfo, android.support.v7.widget.RecyclerView.ItemAnimator.ItemHolderInfo); 12239*344a7f5eSAndroid Build Coastguard Worker method public abstract boolean animateChange(android.support.v7.widget.RecyclerView.ViewHolder, android.support.v7.widget.RecyclerView.ViewHolder, android.support.v7.widget.RecyclerView.ItemAnimator.ItemHolderInfo, android.support.v7.widget.RecyclerView.ItemAnimator.ItemHolderInfo); 12240*344a7f5eSAndroid Build Coastguard Worker method public abstract boolean animateDisappearance(android.support.v7.widget.RecyclerView.ViewHolder, android.support.v7.widget.RecyclerView.ItemAnimator.ItemHolderInfo, android.support.v7.widget.RecyclerView.ItemAnimator.ItemHolderInfo); 12241*344a7f5eSAndroid Build Coastguard Worker method public abstract boolean animatePersistence(android.support.v7.widget.RecyclerView.ViewHolder, android.support.v7.widget.RecyclerView.ItemAnimator.ItemHolderInfo, android.support.v7.widget.RecyclerView.ItemAnimator.ItemHolderInfo); 12242*344a7f5eSAndroid Build Coastguard Worker method public boolean canReuseUpdatedViewHolder(android.support.v7.widget.RecyclerView.ViewHolder); 12243*344a7f5eSAndroid Build Coastguard Worker method public boolean canReuseUpdatedViewHolder(android.support.v7.widget.RecyclerView.ViewHolder, java.util.List<java.lang.Object>); 12244*344a7f5eSAndroid Build Coastguard Worker method public final void dispatchAnimationFinished(android.support.v7.widget.RecyclerView.ViewHolder); 12245*344a7f5eSAndroid Build Coastguard Worker method public final void dispatchAnimationStarted(android.support.v7.widget.RecyclerView.ViewHolder); 12246*344a7f5eSAndroid Build Coastguard Worker method public final void dispatchAnimationsFinished(); 12247*344a7f5eSAndroid Build Coastguard Worker method public abstract void endAnimation(android.support.v7.widget.RecyclerView.ViewHolder); 12248*344a7f5eSAndroid Build Coastguard Worker method public abstract void endAnimations(); 12249*344a7f5eSAndroid Build Coastguard Worker method public long getAddDuration(); 12250*344a7f5eSAndroid Build Coastguard Worker method public long getChangeDuration(); 12251*344a7f5eSAndroid Build Coastguard Worker method public long getMoveDuration(); 12252*344a7f5eSAndroid Build Coastguard Worker method public long getRemoveDuration(); 12253*344a7f5eSAndroid Build Coastguard Worker method public abstract boolean isRunning(); 12254*344a7f5eSAndroid Build Coastguard Worker method public final boolean isRunning(android.support.v7.widget.RecyclerView.ItemAnimator.ItemAnimatorFinishedListener); 12255*344a7f5eSAndroid Build Coastguard Worker method public android.support.v7.widget.RecyclerView.ItemAnimator.ItemHolderInfo obtainHolderInfo(); 12256*344a7f5eSAndroid Build Coastguard Worker method public void onAnimationFinished(android.support.v7.widget.RecyclerView.ViewHolder); 12257*344a7f5eSAndroid Build Coastguard Worker method public void onAnimationStarted(android.support.v7.widget.RecyclerView.ViewHolder); 12258*344a7f5eSAndroid Build Coastguard Worker method public android.support.v7.widget.RecyclerView.ItemAnimator.ItemHolderInfo recordPostLayoutInformation(android.support.v7.widget.RecyclerView.State, android.support.v7.widget.RecyclerView.ViewHolder); 12259*344a7f5eSAndroid Build Coastguard Worker method public android.support.v7.widget.RecyclerView.ItemAnimator.ItemHolderInfo recordPreLayoutInformation(android.support.v7.widget.RecyclerView.State, android.support.v7.widget.RecyclerView.ViewHolder, int, java.util.List<java.lang.Object>); 12260*344a7f5eSAndroid Build Coastguard Worker method public abstract void runPendingAnimations(); 12261*344a7f5eSAndroid Build Coastguard Worker method public void setAddDuration(long); 12262*344a7f5eSAndroid Build Coastguard Worker method public void setChangeDuration(long); 12263*344a7f5eSAndroid Build Coastguard Worker method public void setMoveDuration(long); 12264*344a7f5eSAndroid Build Coastguard Worker method public void setRemoveDuration(long); 12265*344a7f5eSAndroid Build Coastguard Worker field public static final int FLAG_APPEARED_IN_PRE_LAYOUT = 4096; // 0x1000 12266*344a7f5eSAndroid Build Coastguard Worker field public static final int FLAG_CHANGED = 2; // 0x2 12267*344a7f5eSAndroid Build Coastguard Worker field public static final int FLAG_INVALIDATED = 4; // 0x4 12268*344a7f5eSAndroid Build Coastguard Worker field public static final int FLAG_MOVED = 2048; // 0x800 12269*344a7f5eSAndroid Build Coastguard Worker field public static final int FLAG_REMOVED = 8; // 0x8 12270*344a7f5eSAndroid Build Coastguard Worker } 12271*344a7f5eSAndroid Build Coastguard Worker 12272*344a7f5eSAndroid Build Coastguard Worker public static abstract class RecyclerView.ItemAnimator.AdapterChanges implements java.lang.annotation.Annotation { 12273*344a7f5eSAndroid Build Coastguard Worker } 12274*344a7f5eSAndroid Build Coastguard Worker 12275*344a7f5eSAndroid Build Coastguard Worker public static abstract interface RecyclerView.ItemAnimator.ItemAnimatorFinishedListener { 12276*344a7f5eSAndroid Build Coastguard Worker method public abstract void onAnimationsFinished(); 12277*344a7f5eSAndroid Build Coastguard Worker } 12278*344a7f5eSAndroid Build Coastguard Worker 12279*344a7f5eSAndroid Build Coastguard Worker public static class RecyclerView.ItemAnimator.ItemHolderInfo { 12280*344a7f5eSAndroid Build Coastguard Worker ctor public RecyclerView.ItemAnimator.ItemHolderInfo(); 12281*344a7f5eSAndroid Build Coastguard Worker method public android.support.v7.widget.RecyclerView.ItemAnimator.ItemHolderInfo setFrom(android.support.v7.widget.RecyclerView.ViewHolder); 12282*344a7f5eSAndroid Build Coastguard Worker method public android.support.v7.widget.RecyclerView.ItemAnimator.ItemHolderInfo setFrom(android.support.v7.widget.RecyclerView.ViewHolder, int); 12283*344a7f5eSAndroid Build Coastguard Worker field public int bottom; 12284*344a7f5eSAndroid Build Coastguard Worker field public int changeFlags; 12285*344a7f5eSAndroid Build Coastguard Worker field public int left; 12286*344a7f5eSAndroid Build Coastguard Worker field public int right; 12287*344a7f5eSAndroid Build Coastguard Worker field public int top; 12288*344a7f5eSAndroid Build Coastguard Worker } 12289*344a7f5eSAndroid Build Coastguard Worker 12290*344a7f5eSAndroid Build Coastguard Worker public static abstract class RecyclerView.ItemDecoration { 12291*344a7f5eSAndroid Build Coastguard Worker ctor public RecyclerView.ItemDecoration(); 12292*344a7f5eSAndroid Build Coastguard Worker method public deprecated void getItemOffsets(android.graphics.Rect, int, android.support.v7.widget.RecyclerView); 12293*344a7f5eSAndroid Build Coastguard Worker method public void getItemOffsets(android.graphics.Rect, android.view.View, android.support.v7.widget.RecyclerView, android.support.v7.widget.RecyclerView.State); 12294*344a7f5eSAndroid Build Coastguard Worker method public void onDraw(android.graphics.Canvas, android.support.v7.widget.RecyclerView, android.support.v7.widget.RecyclerView.State); 12295*344a7f5eSAndroid Build Coastguard Worker method public deprecated void onDraw(android.graphics.Canvas, android.support.v7.widget.RecyclerView); 12296*344a7f5eSAndroid Build Coastguard Worker method public void onDrawOver(android.graphics.Canvas, android.support.v7.widget.RecyclerView, android.support.v7.widget.RecyclerView.State); 12297*344a7f5eSAndroid Build Coastguard Worker method public deprecated void onDrawOver(android.graphics.Canvas, android.support.v7.widget.RecyclerView); 12298*344a7f5eSAndroid Build Coastguard Worker } 12299*344a7f5eSAndroid Build Coastguard Worker 12300*344a7f5eSAndroid Build Coastguard Worker public static abstract class RecyclerView.LayoutManager { 12301*344a7f5eSAndroid Build Coastguard Worker ctor public RecyclerView.LayoutManager(); 12302*344a7f5eSAndroid Build Coastguard Worker method public void addDisappearingView(android.view.View); 12303*344a7f5eSAndroid Build Coastguard Worker method public void addDisappearingView(android.view.View, int); 12304*344a7f5eSAndroid Build Coastguard Worker method public void addView(android.view.View); 12305*344a7f5eSAndroid Build Coastguard Worker method public void addView(android.view.View, int); 12306*344a7f5eSAndroid Build Coastguard Worker method public void assertInLayoutOrScroll(java.lang.String); 12307*344a7f5eSAndroid Build Coastguard Worker method public void assertNotInLayoutOrScroll(java.lang.String); 12308*344a7f5eSAndroid Build Coastguard Worker method public void attachView(android.view.View, int, android.support.v7.widget.RecyclerView.LayoutParams); 12309*344a7f5eSAndroid Build Coastguard Worker method public void attachView(android.view.View, int); 12310*344a7f5eSAndroid Build Coastguard Worker method public void attachView(android.view.View); 12311*344a7f5eSAndroid Build Coastguard Worker method public void calculateItemDecorationsForChild(android.view.View, android.graphics.Rect); 12312*344a7f5eSAndroid Build Coastguard Worker method public boolean canScrollHorizontally(); 12313*344a7f5eSAndroid Build Coastguard Worker method public boolean canScrollVertically(); 12314*344a7f5eSAndroid Build Coastguard Worker method public boolean checkLayoutParams(android.support.v7.widget.RecyclerView.LayoutParams); 12315*344a7f5eSAndroid Build Coastguard Worker method public static int chooseSize(int, int, int); 12316*344a7f5eSAndroid Build Coastguard Worker method public void collectAdjacentPrefetchPositions(int, int, android.support.v7.widget.RecyclerView.State, android.support.v7.widget.RecyclerView.LayoutManager.LayoutPrefetchRegistry); 12317*344a7f5eSAndroid Build Coastguard Worker method public void collectInitialPrefetchPositions(int, android.support.v7.widget.RecyclerView.LayoutManager.LayoutPrefetchRegistry); 12318*344a7f5eSAndroid Build Coastguard Worker method public int computeHorizontalScrollExtent(android.support.v7.widget.RecyclerView.State); 12319*344a7f5eSAndroid Build Coastguard Worker method public int computeHorizontalScrollOffset(android.support.v7.widget.RecyclerView.State); 12320*344a7f5eSAndroid Build Coastguard Worker method public int computeHorizontalScrollRange(android.support.v7.widget.RecyclerView.State); 12321*344a7f5eSAndroid Build Coastguard Worker method public int computeVerticalScrollExtent(android.support.v7.widget.RecyclerView.State); 12322*344a7f5eSAndroid Build Coastguard Worker method public int computeVerticalScrollOffset(android.support.v7.widget.RecyclerView.State); 12323*344a7f5eSAndroid Build Coastguard Worker method public int computeVerticalScrollRange(android.support.v7.widget.RecyclerView.State); 12324*344a7f5eSAndroid Build Coastguard Worker method public void detachAndScrapAttachedViews(android.support.v7.widget.RecyclerView.Recycler); 12325*344a7f5eSAndroid Build Coastguard Worker method public void detachAndScrapView(android.view.View, android.support.v7.widget.RecyclerView.Recycler); 12326*344a7f5eSAndroid Build Coastguard Worker method public void detachAndScrapViewAt(int, android.support.v7.widget.RecyclerView.Recycler); 12327*344a7f5eSAndroid Build Coastguard Worker method public void detachView(android.view.View); 12328*344a7f5eSAndroid Build Coastguard Worker method public void detachViewAt(int); 12329*344a7f5eSAndroid Build Coastguard Worker method public void endAnimation(android.view.View); 12330*344a7f5eSAndroid Build Coastguard Worker method public android.view.View findContainingItemView(android.view.View); 12331*344a7f5eSAndroid Build Coastguard Worker method public android.view.View findViewByPosition(int); 12332*344a7f5eSAndroid Build Coastguard Worker method public abstract android.support.v7.widget.RecyclerView.LayoutParams generateDefaultLayoutParams(); 12333*344a7f5eSAndroid Build Coastguard Worker method public android.support.v7.widget.RecyclerView.LayoutParams generateLayoutParams(android.view.ViewGroup.LayoutParams); 12334*344a7f5eSAndroid Build Coastguard Worker method public android.support.v7.widget.RecyclerView.LayoutParams generateLayoutParams(android.content.Context, android.util.AttributeSet); 12335*344a7f5eSAndroid Build Coastguard Worker method public int getBaseline(); 12336*344a7f5eSAndroid Build Coastguard Worker method public int getBottomDecorationHeight(android.view.View); 12337*344a7f5eSAndroid Build Coastguard Worker method public android.view.View getChildAt(int); 12338*344a7f5eSAndroid Build Coastguard Worker method public int getChildCount(); 12339*344a7f5eSAndroid Build Coastguard Worker method public static deprecated int getChildMeasureSpec(int, int, int, boolean); 12340*344a7f5eSAndroid Build Coastguard Worker method public static int getChildMeasureSpec(int, int, int, int, boolean); 12341*344a7f5eSAndroid Build Coastguard Worker method public boolean getClipToPadding(); 12342*344a7f5eSAndroid Build Coastguard Worker method public int getColumnCountForAccessibility(android.support.v7.widget.RecyclerView.Recycler, android.support.v7.widget.RecyclerView.State); 12343*344a7f5eSAndroid Build Coastguard Worker method public int getDecoratedBottom(android.view.View); 12344*344a7f5eSAndroid Build Coastguard Worker method public void getDecoratedBoundsWithMargins(android.view.View, android.graphics.Rect); 12345*344a7f5eSAndroid Build Coastguard Worker method public int getDecoratedLeft(android.view.View); 12346*344a7f5eSAndroid Build Coastguard Worker method public int getDecoratedMeasuredHeight(android.view.View); 12347*344a7f5eSAndroid Build Coastguard Worker method public int getDecoratedMeasuredWidth(android.view.View); 12348*344a7f5eSAndroid Build Coastguard Worker method public int getDecoratedRight(android.view.View); 12349*344a7f5eSAndroid Build Coastguard Worker method public int getDecoratedTop(android.view.View); 12350*344a7f5eSAndroid Build Coastguard Worker method public android.view.View getFocusedChild(); 12351*344a7f5eSAndroid Build Coastguard Worker method public int getHeight(); 12352*344a7f5eSAndroid Build Coastguard Worker method public int getHeightMode(); 12353*344a7f5eSAndroid Build Coastguard Worker method public int getItemCount(); 12354*344a7f5eSAndroid Build Coastguard Worker method public int getItemViewType(android.view.View); 12355*344a7f5eSAndroid Build Coastguard Worker method public int getLayoutDirection(); 12356*344a7f5eSAndroid Build Coastguard Worker method public int getLeftDecorationWidth(android.view.View); 12357*344a7f5eSAndroid Build Coastguard Worker method public int getMinimumHeight(); 12358*344a7f5eSAndroid Build Coastguard Worker method public int getMinimumWidth(); 12359*344a7f5eSAndroid Build Coastguard Worker method public int getPaddingBottom(); 12360*344a7f5eSAndroid Build Coastguard Worker method public int getPaddingEnd(); 12361*344a7f5eSAndroid Build Coastguard Worker method public int getPaddingLeft(); 12362*344a7f5eSAndroid Build Coastguard Worker method public int getPaddingRight(); 12363*344a7f5eSAndroid Build Coastguard Worker method public int getPaddingStart(); 12364*344a7f5eSAndroid Build Coastguard Worker method public int getPaddingTop(); 12365*344a7f5eSAndroid Build Coastguard Worker method public int getPosition(android.view.View); 12366*344a7f5eSAndroid Build Coastguard Worker method public static android.support.v7.widget.RecyclerView.LayoutManager.Properties getProperties(android.content.Context, android.util.AttributeSet, int, int); 12367*344a7f5eSAndroid Build Coastguard Worker method public int getRightDecorationWidth(android.view.View); 12368*344a7f5eSAndroid Build Coastguard Worker method public int getRowCountForAccessibility(android.support.v7.widget.RecyclerView.Recycler, android.support.v7.widget.RecyclerView.State); 12369*344a7f5eSAndroid Build Coastguard Worker method public int getSelectionModeForAccessibility(android.support.v7.widget.RecyclerView.Recycler, android.support.v7.widget.RecyclerView.State); 12370*344a7f5eSAndroid Build Coastguard Worker method public int getTopDecorationHeight(android.view.View); 12371*344a7f5eSAndroid Build Coastguard Worker method public void getTransformedBoundingBox(android.view.View, boolean, android.graphics.Rect); 12372*344a7f5eSAndroid Build Coastguard Worker method public int getWidth(); 12373*344a7f5eSAndroid Build Coastguard Worker method public int getWidthMode(); 12374*344a7f5eSAndroid Build Coastguard Worker method public boolean hasFocus(); 12375*344a7f5eSAndroid Build Coastguard Worker method public void ignoreView(android.view.View); 12376*344a7f5eSAndroid Build Coastguard Worker method public boolean isAttachedToWindow(); 12377*344a7f5eSAndroid Build Coastguard Worker method public boolean isAutoMeasureEnabled(); 12378*344a7f5eSAndroid Build Coastguard Worker method public boolean isFocused(); 12379*344a7f5eSAndroid Build Coastguard Worker method public final boolean isItemPrefetchEnabled(); 12380*344a7f5eSAndroid Build Coastguard Worker method public boolean isLayoutHierarchical(android.support.v7.widget.RecyclerView.Recycler, android.support.v7.widget.RecyclerView.State); 12381*344a7f5eSAndroid Build Coastguard Worker method public boolean isMeasurementCacheEnabled(); 12382*344a7f5eSAndroid Build Coastguard Worker method public boolean isSmoothScrolling(); 12383*344a7f5eSAndroid Build Coastguard Worker method public boolean isViewPartiallyVisible(android.view.View, boolean, boolean); 12384*344a7f5eSAndroid Build Coastguard Worker method public void layoutDecorated(android.view.View, int, int, int, int); 12385*344a7f5eSAndroid Build Coastguard Worker method public void layoutDecoratedWithMargins(android.view.View, int, int, int, int); 12386*344a7f5eSAndroid Build Coastguard Worker method public void measureChild(android.view.View, int, int); 12387*344a7f5eSAndroid Build Coastguard Worker method public void measureChildWithMargins(android.view.View, int, int); 12388*344a7f5eSAndroid Build Coastguard Worker method public void moveView(int, int); 12389*344a7f5eSAndroid Build Coastguard Worker method public void offsetChildrenHorizontal(int); 12390*344a7f5eSAndroid Build Coastguard Worker method public void offsetChildrenVertical(int); 12391*344a7f5eSAndroid Build Coastguard Worker method public void onAdapterChanged(android.support.v7.widget.RecyclerView.Adapter, android.support.v7.widget.RecyclerView.Adapter); 12392*344a7f5eSAndroid Build Coastguard Worker method public boolean onAddFocusables(android.support.v7.widget.RecyclerView, java.util.ArrayList<android.view.View>, int, int); 12393*344a7f5eSAndroid Build Coastguard Worker method public void onAttachedToWindow(android.support.v7.widget.RecyclerView); 12394*344a7f5eSAndroid Build Coastguard Worker method public deprecated void onDetachedFromWindow(android.support.v7.widget.RecyclerView); 12395*344a7f5eSAndroid Build Coastguard Worker method public void onDetachedFromWindow(android.support.v7.widget.RecyclerView, android.support.v7.widget.RecyclerView.Recycler); 12396*344a7f5eSAndroid Build Coastguard Worker method public android.view.View onFocusSearchFailed(android.view.View, int, android.support.v7.widget.RecyclerView.Recycler, android.support.v7.widget.RecyclerView.State); 12397*344a7f5eSAndroid Build Coastguard Worker method public void onInitializeAccessibilityEvent(android.view.accessibility.AccessibilityEvent); 12398*344a7f5eSAndroid Build Coastguard Worker method public void onInitializeAccessibilityEvent(android.support.v7.widget.RecyclerView.Recycler, android.support.v7.widget.RecyclerView.State, android.view.accessibility.AccessibilityEvent); 12399*344a7f5eSAndroid Build Coastguard Worker method public void onInitializeAccessibilityNodeInfo(android.support.v7.widget.RecyclerView.Recycler, android.support.v7.widget.RecyclerView.State, android.support.v4.view.accessibility.AccessibilityNodeInfoCompat); 12400*344a7f5eSAndroid Build Coastguard Worker method public void onInitializeAccessibilityNodeInfoForItem(android.support.v7.widget.RecyclerView.Recycler, android.support.v7.widget.RecyclerView.State, android.view.View, android.support.v4.view.accessibility.AccessibilityNodeInfoCompat); 12401*344a7f5eSAndroid Build Coastguard Worker method public android.view.View onInterceptFocusSearch(android.view.View, int); 12402*344a7f5eSAndroid Build Coastguard Worker method public void onItemsAdded(android.support.v7.widget.RecyclerView, int, int); 12403*344a7f5eSAndroid Build Coastguard Worker method public void onItemsChanged(android.support.v7.widget.RecyclerView); 12404*344a7f5eSAndroid Build Coastguard Worker method public void onItemsMoved(android.support.v7.widget.RecyclerView, int, int, int); 12405*344a7f5eSAndroid Build Coastguard Worker method public void onItemsRemoved(android.support.v7.widget.RecyclerView, int, int); 12406*344a7f5eSAndroid Build Coastguard Worker method public void onItemsUpdated(android.support.v7.widget.RecyclerView, int, int); 12407*344a7f5eSAndroid Build Coastguard Worker method public void onItemsUpdated(android.support.v7.widget.RecyclerView, int, int, java.lang.Object); 12408*344a7f5eSAndroid Build Coastguard Worker method public void onLayoutChildren(android.support.v7.widget.RecyclerView.Recycler, android.support.v7.widget.RecyclerView.State); 12409*344a7f5eSAndroid Build Coastguard Worker method public void onLayoutCompleted(android.support.v7.widget.RecyclerView.State); 12410*344a7f5eSAndroid Build Coastguard Worker method public void onMeasure(android.support.v7.widget.RecyclerView.Recycler, android.support.v7.widget.RecyclerView.State, int, int); 12411*344a7f5eSAndroid Build Coastguard Worker method public deprecated boolean onRequestChildFocus(android.support.v7.widget.RecyclerView, android.view.View, android.view.View); 12412*344a7f5eSAndroid Build Coastguard Worker method public boolean onRequestChildFocus(android.support.v7.widget.RecyclerView, android.support.v7.widget.RecyclerView.State, android.view.View, android.view.View); 12413*344a7f5eSAndroid Build Coastguard Worker method public void onRestoreInstanceState(android.os.Parcelable); 12414*344a7f5eSAndroid Build Coastguard Worker method public android.os.Parcelable onSaveInstanceState(); 12415*344a7f5eSAndroid Build Coastguard Worker method public void onScrollStateChanged(int); 12416*344a7f5eSAndroid Build Coastguard Worker method public boolean performAccessibilityAction(android.support.v7.widget.RecyclerView.Recycler, android.support.v7.widget.RecyclerView.State, int, android.os.Bundle); 12417*344a7f5eSAndroid Build Coastguard Worker method public boolean performAccessibilityActionForItem(android.support.v7.widget.RecyclerView.Recycler, android.support.v7.widget.RecyclerView.State, android.view.View, int, android.os.Bundle); 12418*344a7f5eSAndroid Build Coastguard Worker method public void postOnAnimation(java.lang.Runnable); 12419*344a7f5eSAndroid Build Coastguard Worker method public void removeAllViews(); 12420*344a7f5eSAndroid Build Coastguard Worker method public void removeAndRecycleAllViews(android.support.v7.widget.RecyclerView.Recycler); 12421*344a7f5eSAndroid Build Coastguard Worker method public void removeAndRecycleView(android.view.View, android.support.v7.widget.RecyclerView.Recycler); 12422*344a7f5eSAndroid Build Coastguard Worker method public void removeAndRecycleViewAt(int, android.support.v7.widget.RecyclerView.Recycler); 12423*344a7f5eSAndroid Build Coastguard Worker method public boolean removeCallbacks(java.lang.Runnable); 12424*344a7f5eSAndroid Build Coastguard Worker method public void removeDetachedView(android.view.View); 12425*344a7f5eSAndroid Build Coastguard Worker method public void removeView(android.view.View); 12426*344a7f5eSAndroid Build Coastguard Worker method public void removeViewAt(int); 12427*344a7f5eSAndroid Build Coastguard Worker method public boolean requestChildRectangleOnScreen(android.support.v7.widget.RecyclerView, android.view.View, android.graphics.Rect, boolean); 12428*344a7f5eSAndroid Build Coastguard Worker method public boolean requestChildRectangleOnScreen(android.support.v7.widget.RecyclerView, android.view.View, android.graphics.Rect, boolean, boolean); 12429*344a7f5eSAndroid Build Coastguard Worker method public void requestLayout(); 12430*344a7f5eSAndroid Build Coastguard Worker method public void requestSimpleAnimationsInNextLayout(); 12431*344a7f5eSAndroid Build Coastguard Worker method public int scrollHorizontallyBy(int, android.support.v7.widget.RecyclerView.Recycler, android.support.v7.widget.RecyclerView.State); 12432*344a7f5eSAndroid Build Coastguard Worker method public void scrollToPosition(int); 12433*344a7f5eSAndroid Build Coastguard Worker method public int scrollVerticallyBy(int, android.support.v7.widget.RecyclerView.Recycler, android.support.v7.widget.RecyclerView.State); 12434*344a7f5eSAndroid Build Coastguard Worker method public void setAutoMeasureEnabled(boolean); 12435*344a7f5eSAndroid Build Coastguard Worker method public final void setItemPrefetchEnabled(boolean); 12436*344a7f5eSAndroid Build Coastguard Worker method public void setMeasuredDimension(android.graphics.Rect, int, int); 12437*344a7f5eSAndroid Build Coastguard Worker method public void setMeasuredDimension(int, int); 12438*344a7f5eSAndroid Build Coastguard Worker method public void setMeasurementCacheEnabled(boolean); 12439*344a7f5eSAndroid Build Coastguard Worker method public void smoothScrollToPosition(android.support.v7.widget.RecyclerView, android.support.v7.widget.RecyclerView.State, int); 12440*344a7f5eSAndroid Build Coastguard Worker method public void startSmoothScroll(android.support.v7.widget.RecyclerView.SmoothScroller); 12441*344a7f5eSAndroid Build Coastguard Worker method public void stopIgnoringView(android.view.View); 12442*344a7f5eSAndroid Build Coastguard Worker method public boolean supportsPredictiveItemAnimations(); 12443*344a7f5eSAndroid Build Coastguard Worker } 12444*344a7f5eSAndroid Build Coastguard Worker 12445*344a7f5eSAndroid Build Coastguard Worker public static abstract interface RecyclerView.LayoutManager.LayoutPrefetchRegistry { 12446*344a7f5eSAndroid Build Coastguard Worker method public abstract void addPosition(int, int); 12447*344a7f5eSAndroid Build Coastguard Worker } 12448*344a7f5eSAndroid Build Coastguard Worker 12449*344a7f5eSAndroid Build Coastguard Worker public static class RecyclerView.LayoutManager.Properties { 12450*344a7f5eSAndroid Build Coastguard Worker ctor public RecyclerView.LayoutManager.Properties(); 12451*344a7f5eSAndroid Build Coastguard Worker field public int orientation; 12452*344a7f5eSAndroid Build Coastguard Worker field public boolean reverseLayout; 12453*344a7f5eSAndroid Build Coastguard Worker field public int spanCount; 12454*344a7f5eSAndroid Build Coastguard Worker field public boolean stackFromEnd; 12455*344a7f5eSAndroid Build Coastguard Worker } 12456*344a7f5eSAndroid Build Coastguard Worker 12457*344a7f5eSAndroid Build Coastguard Worker public static class RecyclerView.LayoutParams extends android.view.ViewGroup.MarginLayoutParams { 12458*344a7f5eSAndroid Build Coastguard Worker ctor public RecyclerView.LayoutParams(android.content.Context, android.util.AttributeSet); 12459*344a7f5eSAndroid Build Coastguard Worker ctor public RecyclerView.LayoutParams(int, int); 12460*344a7f5eSAndroid Build Coastguard Worker ctor public RecyclerView.LayoutParams(android.view.ViewGroup.MarginLayoutParams); 12461*344a7f5eSAndroid Build Coastguard Worker ctor public RecyclerView.LayoutParams(android.view.ViewGroup.LayoutParams); 12462*344a7f5eSAndroid Build Coastguard Worker ctor public RecyclerView.LayoutParams(android.support.v7.widget.RecyclerView.LayoutParams); 12463*344a7f5eSAndroid Build Coastguard Worker method public int getViewAdapterPosition(); 12464*344a7f5eSAndroid Build Coastguard Worker method public int getViewLayoutPosition(); 12465*344a7f5eSAndroid Build Coastguard Worker method public deprecated int getViewPosition(); 12466*344a7f5eSAndroid Build Coastguard Worker method public boolean isItemChanged(); 12467*344a7f5eSAndroid Build Coastguard Worker method public boolean isItemRemoved(); 12468*344a7f5eSAndroid Build Coastguard Worker method public boolean isViewInvalid(); 12469*344a7f5eSAndroid Build Coastguard Worker method public boolean viewNeedsUpdate(); 12470*344a7f5eSAndroid Build Coastguard Worker } 12471*344a7f5eSAndroid Build Coastguard Worker 12472*344a7f5eSAndroid Build Coastguard Worker public static abstract interface RecyclerView.OnChildAttachStateChangeListener { 12473*344a7f5eSAndroid Build Coastguard Worker method public abstract void onChildViewAttachedToWindow(android.view.View); 12474*344a7f5eSAndroid Build Coastguard Worker method public abstract void onChildViewDetachedFromWindow(android.view.View); 12475*344a7f5eSAndroid Build Coastguard Worker } 12476*344a7f5eSAndroid Build Coastguard Worker 12477*344a7f5eSAndroid Build Coastguard Worker public static abstract class RecyclerView.OnFlingListener { 12478*344a7f5eSAndroid Build Coastguard Worker ctor public RecyclerView.OnFlingListener(); 12479*344a7f5eSAndroid Build Coastguard Worker method public abstract boolean onFling(int, int); 12480*344a7f5eSAndroid Build Coastguard Worker } 12481*344a7f5eSAndroid Build Coastguard Worker 12482*344a7f5eSAndroid Build Coastguard Worker public static abstract interface RecyclerView.OnItemTouchListener { 12483*344a7f5eSAndroid Build Coastguard Worker method public abstract boolean onInterceptTouchEvent(android.support.v7.widget.RecyclerView, android.view.MotionEvent); 12484*344a7f5eSAndroid Build Coastguard Worker method public abstract void onRequestDisallowInterceptTouchEvent(boolean); 12485*344a7f5eSAndroid Build Coastguard Worker method public abstract void onTouchEvent(android.support.v7.widget.RecyclerView, android.view.MotionEvent); 12486*344a7f5eSAndroid Build Coastguard Worker } 12487*344a7f5eSAndroid Build Coastguard Worker 12488*344a7f5eSAndroid Build Coastguard Worker public static abstract class RecyclerView.OnScrollListener { 12489*344a7f5eSAndroid Build Coastguard Worker ctor public RecyclerView.OnScrollListener(); 12490*344a7f5eSAndroid Build Coastguard Worker method public void onScrollStateChanged(android.support.v7.widget.RecyclerView, int); 12491*344a7f5eSAndroid Build Coastguard Worker method public void onScrolled(android.support.v7.widget.RecyclerView, int, int); 12492*344a7f5eSAndroid Build Coastguard Worker } 12493*344a7f5eSAndroid Build Coastguard Worker 12494*344a7f5eSAndroid Build Coastguard Worker public static class RecyclerView.RecycledViewPool { 12495*344a7f5eSAndroid Build Coastguard Worker ctor public RecyclerView.RecycledViewPool(); 12496*344a7f5eSAndroid Build Coastguard Worker method public void clear(); 12497*344a7f5eSAndroid Build Coastguard Worker method public android.support.v7.widget.RecyclerView.ViewHolder getRecycledView(int); 12498*344a7f5eSAndroid Build Coastguard Worker method public int getRecycledViewCount(int); 12499*344a7f5eSAndroid Build Coastguard Worker method public void putRecycledView(android.support.v7.widget.RecyclerView.ViewHolder); 12500*344a7f5eSAndroid Build Coastguard Worker method public void setMaxRecycledViews(int, int); 12501*344a7f5eSAndroid Build Coastguard Worker } 12502*344a7f5eSAndroid Build Coastguard Worker 12503*344a7f5eSAndroid Build Coastguard Worker public final class RecyclerView.Recycler { 12504*344a7f5eSAndroid Build Coastguard Worker ctor public RecyclerView.Recycler(); 12505*344a7f5eSAndroid Build Coastguard Worker method public void bindViewToPosition(android.view.View, int); 12506*344a7f5eSAndroid Build Coastguard Worker method public void clear(); 12507*344a7f5eSAndroid Build Coastguard Worker method public int convertPreLayoutPositionToPostLayout(int); 12508*344a7f5eSAndroid Build Coastguard Worker method public java.util.List<android.support.v7.widget.RecyclerView.ViewHolder> getScrapList(); 12509*344a7f5eSAndroid Build Coastguard Worker method public android.view.View getViewForPosition(int); 12510*344a7f5eSAndroid Build Coastguard Worker method public void recycleView(android.view.View); 12511*344a7f5eSAndroid Build Coastguard Worker method public void setViewCacheSize(int); 12512*344a7f5eSAndroid Build Coastguard Worker } 12513*344a7f5eSAndroid Build Coastguard Worker 12514*344a7f5eSAndroid Build Coastguard Worker public static abstract interface RecyclerView.RecyclerListener { 12515*344a7f5eSAndroid Build Coastguard Worker method public abstract void onViewRecycled(android.support.v7.widget.RecyclerView.ViewHolder); 12516*344a7f5eSAndroid Build Coastguard Worker } 12517*344a7f5eSAndroid Build Coastguard Worker 12518*344a7f5eSAndroid Build Coastguard Worker public static class RecyclerView.SimpleOnItemTouchListener implements android.support.v7.widget.RecyclerView.OnItemTouchListener { 12519*344a7f5eSAndroid Build Coastguard Worker ctor public RecyclerView.SimpleOnItemTouchListener(); 12520*344a7f5eSAndroid Build Coastguard Worker method public boolean onInterceptTouchEvent(android.support.v7.widget.RecyclerView, android.view.MotionEvent); 12521*344a7f5eSAndroid Build Coastguard Worker method public void onRequestDisallowInterceptTouchEvent(boolean); 12522*344a7f5eSAndroid Build Coastguard Worker method public void onTouchEvent(android.support.v7.widget.RecyclerView, android.view.MotionEvent); 12523*344a7f5eSAndroid Build Coastguard Worker } 12524*344a7f5eSAndroid Build Coastguard Worker 12525*344a7f5eSAndroid Build Coastguard Worker public static abstract class RecyclerView.SmoothScroller { 12526*344a7f5eSAndroid Build Coastguard Worker ctor public RecyclerView.SmoothScroller(); 12527*344a7f5eSAndroid Build Coastguard Worker method public android.view.View findViewByPosition(int); 12528*344a7f5eSAndroid Build Coastguard Worker method public int getChildCount(); 12529*344a7f5eSAndroid Build Coastguard Worker method public int getChildPosition(android.view.View); 12530*344a7f5eSAndroid Build Coastguard Worker method public android.support.v7.widget.RecyclerView.LayoutManager getLayoutManager(); 12531*344a7f5eSAndroid Build Coastguard Worker method public int getTargetPosition(); 12532*344a7f5eSAndroid Build Coastguard Worker method public deprecated void instantScrollToPosition(int); 12533*344a7f5eSAndroid Build Coastguard Worker method public boolean isPendingInitialRun(); 12534*344a7f5eSAndroid Build Coastguard Worker method public boolean isRunning(); 12535*344a7f5eSAndroid Build Coastguard Worker method protected void normalize(android.graphics.PointF); 12536*344a7f5eSAndroid Build Coastguard Worker method protected void onChildAttachedToWindow(android.view.View); 12537*344a7f5eSAndroid Build Coastguard Worker method protected abstract void onSeekTargetStep(int, int, android.support.v7.widget.RecyclerView.State, android.support.v7.widget.RecyclerView.SmoothScroller.Action); 12538*344a7f5eSAndroid Build Coastguard Worker method protected abstract void onStart(); 12539*344a7f5eSAndroid Build Coastguard Worker method protected abstract void onStop(); 12540*344a7f5eSAndroid Build Coastguard Worker method protected abstract void onTargetFound(android.view.View, android.support.v7.widget.RecyclerView.State, android.support.v7.widget.RecyclerView.SmoothScroller.Action); 12541*344a7f5eSAndroid Build Coastguard Worker method public void setTargetPosition(int); 12542*344a7f5eSAndroid Build Coastguard Worker method protected final void stop(); 12543*344a7f5eSAndroid Build Coastguard Worker } 12544*344a7f5eSAndroid Build Coastguard Worker 12545*344a7f5eSAndroid Build Coastguard Worker public static class RecyclerView.SmoothScroller.Action { 12546*344a7f5eSAndroid Build Coastguard Worker ctor public RecyclerView.SmoothScroller.Action(int, int); 12547*344a7f5eSAndroid Build Coastguard Worker ctor public RecyclerView.SmoothScroller.Action(int, int, int); 12548*344a7f5eSAndroid Build Coastguard Worker ctor public RecyclerView.SmoothScroller.Action(int, int, int, android.view.animation.Interpolator); 12549*344a7f5eSAndroid Build Coastguard Worker method public int getDuration(); 12550*344a7f5eSAndroid Build Coastguard Worker method public int getDx(); 12551*344a7f5eSAndroid Build Coastguard Worker method public int getDy(); 12552*344a7f5eSAndroid Build Coastguard Worker method public android.view.animation.Interpolator getInterpolator(); 12553*344a7f5eSAndroid Build Coastguard Worker method public void jumpTo(int); 12554*344a7f5eSAndroid Build Coastguard Worker method public void setDuration(int); 12555*344a7f5eSAndroid Build Coastguard Worker method public void setDx(int); 12556*344a7f5eSAndroid Build Coastguard Worker method public void setDy(int); 12557*344a7f5eSAndroid Build Coastguard Worker method public void setInterpolator(android.view.animation.Interpolator); 12558*344a7f5eSAndroid Build Coastguard Worker method public void update(int, int, int, android.view.animation.Interpolator); 12559*344a7f5eSAndroid Build Coastguard Worker field public static final int UNDEFINED_DURATION = -2147483648; // 0x80000000 12560*344a7f5eSAndroid Build Coastguard Worker } 12561*344a7f5eSAndroid Build Coastguard Worker 12562*344a7f5eSAndroid Build Coastguard Worker public static abstract interface RecyclerView.SmoothScroller.ScrollVectorProvider { 12563*344a7f5eSAndroid Build Coastguard Worker method public abstract android.graphics.PointF computeScrollVectorForPosition(int); 12564*344a7f5eSAndroid Build Coastguard Worker } 12565*344a7f5eSAndroid Build Coastguard Worker 12566*344a7f5eSAndroid Build Coastguard Worker public static class RecyclerView.State { 12567*344a7f5eSAndroid Build Coastguard Worker ctor public RecyclerView.State(); 12568*344a7f5eSAndroid Build Coastguard Worker method public boolean didStructureChange(); 12569*344a7f5eSAndroid Build Coastguard Worker method public <T> T get(int); 12570*344a7f5eSAndroid Build Coastguard Worker method public int getItemCount(); 12571*344a7f5eSAndroid Build Coastguard Worker method public int getRemainingScrollHorizontal(); 12572*344a7f5eSAndroid Build Coastguard Worker method public int getRemainingScrollVertical(); 12573*344a7f5eSAndroid Build Coastguard Worker method public int getTargetScrollPosition(); 12574*344a7f5eSAndroid Build Coastguard Worker method public boolean hasTargetScrollPosition(); 12575*344a7f5eSAndroid Build Coastguard Worker method public boolean isMeasuring(); 12576*344a7f5eSAndroid Build Coastguard Worker method public boolean isPreLayout(); 12577*344a7f5eSAndroid Build Coastguard Worker method public void put(int, java.lang.Object); 12578*344a7f5eSAndroid Build Coastguard Worker method public void remove(int); 12579*344a7f5eSAndroid Build Coastguard Worker method public boolean willRunPredictiveAnimations(); 12580*344a7f5eSAndroid Build Coastguard Worker method public boolean willRunSimpleAnimations(); 12581*344a7f5eSAndroid Build Coastguard Worker } 12582*344a7f5eSAndroid Build Coastguard Worker 12583*344a7f5eSAndroid Build Coastguard Worker public static abstract class RecyclerView.ViewCacheExtension { 12584*344a7f5eSAndroid Build Coastguard Worker ctor public RecyclerView.ViewCacheExtension(); 12585*344a7f5eSAndroid Build Coastguard Worker method public abstract android.view.View getViewForPositionAndType(android.support.v7.widget.RecyclerView.Recycler, int, int); 12586*344a7f5eSAndroid Build Coastguard Worker } 12587*344a7f5eSAndroid Build Coastguard Worker 12588*344a7f5eSAndroid Build Coastguard Worker public static abstract class RecyclerView.ViewHolder { 12589*344a7f5eSAndroid Build Coastguard Worker ctor public RecyclerView.ViewHolder(android.view.View); 12590*344a7f5eSAndroid Build Coastguard Worker method public final int getAdapterPosition(); 12591*344a7f5eSAndroid Build Coastguard Worker method public final long getItemId(); 12592*344a7f5eSAndroid Build Coastguard Worker method public final int getItemViewType(); 12593*344a7f5eSAndroid Build Coastguard Worker method public final int getLayoutPosition(); 12594*344a7f5eSAndroid Build Coastguard Worker method public final int getOldPosition(); 12595*344a7f5eSAndroid Build Coastguard Worker method public final deprecated int getPosition(); 12596*344a7f5eSAndroid Build Coastguard Worker method public final boolean isRecyclable(); 12597*344a7f5eSAndroid Build Coastguard Worker method public final void setIsRecyclable(boolean); 12598*344a7f5eSAndroid Build Coastguard Worker field public final android.view.View itemView; 12599*344a7f5eSAndroid Build Coastguard Worker } 12600*344a7f5eSAndroid Build Coastguard Worker 12601*344a7f5eSAndroid Build Coastguard Worker public class RecyclerViewAccessibilityDelegate extends android.support.v4.view.AccessibilityDelegateCompat { 12602*344a7f5eSAndroid Build Coastguard Worker ctor public RecyclerViewAccessibilityDelegate(android.support.v7.widget.RecyclerView); 12603*344a7f5eSAndroid Build Coastguard Worker method public android.support.v4.view.AccessibilityDelegateCompat getItemDelegate(); 12604*344a7f5eSAndroid Build Coastguard Worker } 12605*344a7f5eSAndroid Build Coastguard Worker 12606*344a7f5eSAndroid Build Coastguard Worker public static class RecyclerViewAccessibilityDelegate.ItemDelegate extends android.support.v4.view.AccessibilityDelegateCompat { 12607*344a7f5eSAndroid Build Coastguard Worker ctor public RecyclerViewAccessibilityDelegate.ItemDelegate(android.support.v7.widget.RecyclerViewAccessibilityDelegate); 12608*344a7f5eSAndroid Build Coastguard Worker } 12609*344a7f5eSAndroid Build Coastguard Worker 12610*344a7f5eSAndroid Build Coastguard Worker public class SearchView extends android.support.v7.widget.LinearLayoutCompat implements android.support.v7.view.CollapsibleActionView { 12611*344a7f5eSAndroid Build Coastguard Worker ctor public SearchView(android.content.Context); 12612*344a7f5eSAndroid Build Coastguard Worker ctor public SearchView(android.content.Context, android.util.AttributeSet); 12613*344a7f5eSAndroid Build Coastguard Worker ctor public SearchView(android.content.Context, android.util.AttributeSet, int); 12614*344a7f5eSAndroid Build Coastguard Worker method public int getImeOptions(); 12615*344a7f5eSAndroid Build Coastguard Worker method public int getInputType(); 12616*344a7f5eSAndroid Build Coastguard Worker method public int getMaxWidth(); 12617*344a7f5eSAndroid Build Coastguard Worker method public java.lang.CharSequence getQuery(); 12618*344a7f5eSAndroid Build Coastguard Worker method public java.lang.CharSequence getQueryHint(); 12619*344a7f5eSAndroid Build Coastguard Worker method public android.support.v4.widget.CursorAdapter getSuggestionsAdapter(); 12620*344a7f5eSAndroid Build Coastguard Worker method public boolean isIconfiedByDefault(); 12621*344a7f5eSAndroid Build Coastguard Worker method public boolean isIconified(); 12622*344a7f5eSAndroid Build Coastguard Worker method public boolean isQueryRefinementEnabled(); 12623*344a7f5eSAndroid Build Coastguard Worker method public boolean isSubmitButtonEnabled(); 12624*344a7f5eSAndroid Build Coastguard Worker method public void onActionViewCollapsed(); 12625*344a7f5eSAndroid Build Coastguard Worker method public void onActionViewExpanded(); 12626*344a7f5eSAndroid Build Coastguard Worker method public void setIconified(boolean); 12627*344a7f5eSAndroid Build Coastguard Worker method public void setIconifiedByDefault(boolean); 12628*344a7f5eSAndroid Build Coastguard Worker method public void setImeOptions(int); 12629*344a7f5eSAndroid Build Coastguard Worker method public void setInputType(int); 12630*344a7f5eSAndroid Build Coastguard Worker method public void setMaxWidth(int); 12631*344a7f5eSAndroid Build Coastguard Worker method public void setOnCloseListener(android.support.v7.widget.SearchView.OnCloseListener); 12632*344a7f5eSAndroid Build Coastguard Worker method public void setOnQueryTextFocusChangeListener(android.view.View.OnFocusChangeListener); 12633*344a7f5eSAndroid Build Coastguard Worker method public void setOnQueryTextListener(android.support.v7.widget.SearchView.OnQueryTextListener); 12634*344a7f5eSAndroid Build Coastguard Worker method public void setOnSearchClickListener(android.view.View.OnClickListener); 12635*344a7f5eSAndroid Build Coastguard Worker method public void setOnSuggestionListener(android.support.v7.widget.SearchView.OnSuggestionListener); 12636*344a7f5eSAndroid Build Coastguard Worker method public void setQuery(java.lang.CharSequence, boolean); 12637*344a7f5eSAndroid Build Coastguard Worker method public void setQueryHint(java.lang.CharSequence); 12638*344a7f5eSAndroid Build Coastguard Worker method public void setQueryRefinementEnabled(boolean); 12639*344a7f5eSAndroid Build Coastguard Worker method public void setSearchableInfo(android.app.SearchableInfo); 12640*344a7f5eSAndroid Build Coastguard Worker method public void setSubmitButtonEnabled(boolean); 12641*344a7f5eSAndroid Build Coastguard Worker method public void setSuggestionsAdapter(android.support.v4.widget.CursorAdapter); 12642*344a7f5eSAndroid Build Coastguard Worker } 12643*344a7f5eSAndroid Build Coastguard Worker 12644*344a7f5eSAndroid Build Coastguard Worker public static abstract interface SearchView.OnCloseListener { 12645*344a7f5eSAndroid Build Coastguard Worker method public abstract boolean onClose(); 12646*344a7f5eSAndroid Build Coastguard Worker } 12647*344a7f5eSAndroid Build Coastguard Worker 12648*344a7f5eSAndroid Build Coastguard Worker public static abstract interface SearchView.OnQueryTextListener { 12649*344a7f5eSAndroid Build Coastguard Worker method public abstract boolean onQueryTextChange(java.lang.String); 12650*344a7f5eSAndroid Build Coastguard Worker method public abstract boolean onQueryTextSubmit(java.lang.String); 12651*344a7f5eSAndroid Build Coastguard Worker } 12652*344a7f5eSAndroid Build Coastguard Worker 12653*344a7f5eSAndroid Build Coastguard Worker public static abstract interface SearchView.OnSuggestionListener { 12654*344a7f5eSAndroid Build Coastguard Worker method public abstract boolean onSuggestionClick(int); 12655*344a7f5eSAndroid Build Coastguard Worker method public abstract boolean onSuggestionSelect(int); 12656*344a7f5eSAndroid Build Coastguard Worker } 12657*344a7f5eSAndroid Build Coastguard Worker 12658*344a7f5eSAndroid Build Coastguard Worker public class ShareActionProvider extends android.support.v4.view.ActionProvider { 12659*344a7f5eSAndroid Build Coastguard Worker ctor public ShareActionProvider(android.content.Context); 12660*344a7f5eSAndroid Build Coastguard Worker method public android.view.View onCreateActionView(); 12661*344a7f5eSAndroid Build Coastguard Worker method public void setOnShareTargetSelectedListener(android.support.v7.widget.ShareActionProvider.OnShareTargetSelectedListener); 12662*344a7f5eSAndroid Build Coastguard Worker method public void setShareHistoryFileName(java.lang.String); 12663*344a7f5eSAndroid Build Coastguard Worker method public void setShareIntent(android.content.Intent); 12664*344a7f5eSAndroid Build Coastguard Worker field public static final java.lang.String DEFAULT_SHARE_HISTORY_FILE_NAME = "share_history.xml"; 12665*344a7f5eSAndroid Build Coastguard Worker } 12666*344a7f5eSAndroid Build Coastguard Worker 12667*344a7f5eSAndroid Build Coastguard Worker public static abstract interface ShareActionProvider.OnShareTargetSelectedListener { 12668*344a7f5eSAndroid Build Coastguard Worker method public abstract boolean onShareTargetSelected(android.support.v7.widget.ShareActionProvider, android.content.Intent); 12669*344a7f5eSAndroid Build Coastguard Worker } 12670*344a7f5eSAndroid Build Coastguard Worker 12671*344a7f5eSAndroid Build Coastguard Worker public abstract class SimpleItemAnimator extends android.support.v7.widget.RecyclerView.ItemAnimator { 12672*344a7f5eSAndroid Build Coastguard Worker ctor public SimpleItemAnimator(); 12673*344a7f5eSAndroid Build Coastguard Worker method public abstract boolean animateAdd(android.support.v7.widget.RecyclerView.ViewHolder); 12674*344a7f5eSAndroid Build Coastguard Worker method public boolean animateAppearance(android.support.v7.widget.RecyclerView.ViewHolder, android.support.v7.widget.RecyclerView.ItemAnimator.ItemHolderInfo, android.support.v7.widget.RecyclerView.ItemAnimator.ItemHolderInfo); 12675*344a7f5eSAndroid Build Coastguard Worker method public boolean animateChange(android.support.v7.widget.RecyclerView.ViewHolder, android.support.v7.widget.RecyclerView.ViewHolder, android.support.v7.widget.RecyclerView.ItemAnimator.ItemHolderInfo, android.support.v7.widget.RecyclerView.ItemAnimator.ItemHolderInfo); 12676*344a7f5eSAndroid Build Coastguard Worker method public abstract boolean animateChange(android.support.v7.widget.RecyclerView.ViewHolder, android.support.v7.widget.RecyclerView.ViewHolder, int, int, int, int); 12677*344a7f5eSAndroid Build Coastguard Worker method public boolean animateDisappearance(android.support.v7.widget.RecyclerView.ViewHolder, android.support.v7.widget.RecyclerView.ItemAnimator.ItemHolderInfo, android.support.v7.widget.RecyclerView.ItemAnimator.ItemHolderInfo); 12678*344a7f5eSAndroid Build Coastguard Worker method public abstract boolean animateMove(android.support.v7.widget.RecyclerView.ViewHolder, int, int, int, int); 12679*344a7f5eSAndroid Build Coastguard Worker method public boolean animatePersistence(android.support.v7.widget.RecyclerView.ViewHolder, android.support.v7.widget.RecyclerView.ItemAnimator.ItemHolderInfo, android.support.v7.widget.RecyclerView.ItemAnimator.ItemHolderInfo); 12680*344a7f5eSAndroid Build Coastguard Worker method public abstract boolean animateRemove(android.support.v7.widget.RecyclerView.ViewHolder); 12681*344a7f5eSAndroid Build Coastguard Worker method public final void dispatchAddFinished(android.support.v7.widget.RecyclerView.ViewHolder); 12682*344a7f5eSAndroid Build Coastguard Worker method public final void dispatchAddStarting(android.support.v7.widget.RecyclerView.ViewHolder); 12683*344a7f5eSAndroid Build Coastguard Worker method public final void dispatchChangeFinished(android.support.v7.widget.RecyclerView.ViewHolder, boolean); 12684*344a7f5eSAndroid Build Coastguard Worker method public final void dispatchChangeStarting(android.support.v7.widget.RecyclerView.ViewHolder, boolean); 12685*344a7f5eSAndroid Build Coastguard Worker method public final void dispatchMoveFinished(android.support.v7.widget.RecyclerView.ViewHolder); 12686*344a7f5eSAndroid Build Coastguard Worker method public final void dispatchMoveStarting(android.support.v7.widget.RecyclerView.ViewHolder); 12687*344a7f5eSAndroid Build Coastguard Worker method public final void dispatchRemoveFinished(android.support.v7.widget.RecyclerView.ViewHolder); 12688*344a7f5eSAndroid Build Coastguard Worker method public final void dispatchRemoveStarting(android.support.v7.widget.RecyclerView.ViewHolder); 12689*344a7f5eSAndroid Build Coastguard Worker method public boolean getSupportsChangeAnimations(); 12690*344a7f5eSAndroid Build Coastguard Worker method public void onAddFinished(android.support.v7.widget.RecyclerView.ViewHolder); 12691*344a7f5eSAndroid Build Coastguard Worker method public void onAddStarting(android.support.v7.widget.RecyclerView.ViewHolder); 12692*344a7f5eSAndroid Build Coastguard Worker method public void onChangeFinished(android.support.v7.widget.RecyclerView.ViewHolder, boolean); 12693*344a7f5eSAndroid Build Coastguard Worker method public void onChangeStarting(android.support.v7.widget.RecyclerView.ViewHolder, boolean); 12694*344a7f5eSAndroid Build Coastguard Worker method public void onMoveFinished(android.support.v7.widget.RecyclerView.ViewHolder); 12695*344a7f5eSAndroid Build Coastguard Worker method public void onMoveStarting(android.support.v7.widget.RecyclerView.ViewHolder); 12696*344a7f5eSAndroid Build Coastguard Worker method public void onRemoveFinished(android.support.v7.widget.RecyclerView.ViewHolder); 12697*344a7f5eSAndroid Build Coastguard Worker method public void onRemoveStarting(android.support.v7.widget.RecyclerView.ViewHolder); 12698*344a7f5eSAndroid Build Coastguard Worker method public void setSupportsChangeAnimations(boolean); 12699*344a7f5eSAndroid Build Coastguard Worker } 12700*344a7f5eSAndroid Build Coastguard Worker 12701*344a7f5eSAndroid Build Coastguard Worker public abstract class SnapHelper extends android.support.v7.widget.RecyclerView.OnFlingListener { 12702*344a7f5eSAndroid Build Coastguard Worker ctor public SnapHelper(); 12703*344a7f5eSAndroid Build Coastguard Worker method public void attachToRecyclerView(android.support.v7.widget.RecyclerView) throws java.lang.IllegalStateException; 12704*344a7f5eSAndroid Build Coastguard Worker method public abstract int[] calculateDistanceToFinalSnap(android.support.v7.widget.RecyclerView.LayoutManager, android.view.View); 12705*344a7f5eSAndroid Build Coastguard Worker method public int[] calculateScrollDistance(int, int); 12706*344a7f5eSAndroid Build Coastguard Worker method protected android.support.v7.widget.LinearSmoothScroller createSnapScroller(android.support.v7.widget.RecyclerView.LayoutManager); 12707*344a7f5eSAndroid Build Coastguard Worker method public abstract android.view.View findSnapView(android.support.v7.widget.RecyclerView.LayoutManager); 12708*344a7f5eSAndroid Build Coastguard Worker method public abstract int findTargetSnapPosition(android.support.v7.widget.RecyclerView.LayoutManager, int, int); 12709*344a7f5eSAndroid Build Coastguard Worker method public boolean onFling(int, int); 12710*344a7f5eSAndroid Build Coastguard Worker } 12711*344a7f5eSAndroid Build Coastguard Worker 12712*344a7f5eSAndroid Build Coastguard Worker public class StaggeredGridLayoutManager extends android.support.v7.widget.RecyclerView.LayoutManager implements android.support.v7.widget.RecyclerView.SmoothScroller.ScrollVectorProvider { 12713*344a7f5eSAndroid Build Coastguard Worker ctor public StaggeredGridLayoutManager(android.content.Context, android.util.AttributeSet, int, int); 12714*344a7f5eSAndroid Build Coastguard Worker ctor public StaggeredGridLayoutManager(int, int); 12715*344a7f5eSAndroid Build Coastguard Worker method public android.graphics.PointF computeScrollVectorForPosition(int); 12716*344a7f5eSAndroid Build Coastguard Worker method public int[] findFirstCompletelyVisibleItemPositions(int[]); 12717*344a7f5eSAndroid Build Coastguard Worker method public int[] findFirstVisibleItemPositions(int[]); 12718*344a7f5eSAndroid Build Coastguard Worker method public int[] findLastCompletelyVisibleItemPositions(int[]); 12719*344a7f5eSAndroid Build Coastguard Worker method public int[] findLastVisibleItemPositions(int[]); 12720*344a7f5eSAndroid Build Coastguard Worker method public android.support.v7.widget.RecyclerView.LayoutParams generateDefaultLayoutParams(); 12721*344a7f5eSAndroid Build Coastguard Worker method public int getGapStrategy(); 12722*344a7f5eSAndroid Build Coastguard Worker method public int getOrientation(); 12723*344a7f5eSAndroid Build Coastguard Worker method public boolean getReverseLayout(); 12724*344a7f5eSAndroid Build Coastguard Worker method public int getSpanCount(); 12725*344a7f5eSAndroid Build Coastguard Worker method public void invalidateSpanAssignments(); 12726*344a7f5eSAndroid Build Coastguard Worker method public void scrollToPositionWithOffset(int, int); 12727*344a7f5eSAndroid Build Coastguard Worker method public void setGapStrategy(int); 12728*344a7f5eSAndroid Build Coastguard Worker method public void setOrientation(int); 12729*344a7f5eSAndroid Build Coastguard Worker method public void setReverseLayout(boolean); 12730*344a7f5eSAndroid Build Coastguard Worker method public void setSpanCount(int); 12731*344a7f5eSAndroid Build Coastguard Worker field public static final deprecated int GAP_HANDLING_LAZY = 1; // 0x1 12732*344a7f5eSAndroid Build Coastguard Worker field public static final int GAP_HANDLING_MOVE_ITEMS_BETWEEN_SPANS = 2; // 0x2 12733*344a7f5eSAndroid Build Coastguard Worker field public static final int GAP_HANDLING_NONE = 0; // 0x0 12734*344a7f5eSAndroid Build Coastguard Worker field public static final int HORIZONTAL = 0; // 0x0 12735*344a7f5eSAndroid Build Coastguard Worker field public static final int VERTICAL = 1; // 0x1 12736*344a7f5eSAndroid Build Coastguard Worker } 12737*344a7f5eSAndroid Build Coastguard Worker 12738*344a7f5eSAndroid Build Coastguard Worker public static class StaggeredGridLayoutManager.LayoutParams extends android.support.v7.widget.RecyclerView.LayoutParams { 12739*344a7f5eSAndroid Build Coastguard Worker ctor public StaggeredGridLayoutManager.LayoutParams(android.content.Context, android.util.AttributeSet); 12740*344a7f5eSAndroid Build Coastguard Worker ctor public StaggeredGridLayoutManager.LayoutParams(int, int); 12741*344a7f5eSAndroid Build Coastguard Worker ctor public StaggeredGridLayoutManager.LayoutParams(android.view.ViewGroup.MarginLayoutParams); 12742*344a7f5eSAndroid Build Coastguard Worker ctor public StaggeredGridLayoutManager.LayoutParams(android.view.ViewGroup.LayoutParams); 12743*344a7f5eSAndroid Build Coastguard Worker ctor public StaggeredGridLayoutManager.LayoutParams(android.support.v7.widget.RecyclerView.LayoutParams); 12744*344a7f5eSAndroid Build Coastguard Worker method public final int getSpanIndex(); 12745*344a7f5eSAndroid Build Coastguard Worker method public boolean isFullSpan(); 12746*344a7f5eSAndroid Build Coastguard Worker method public void setFullSpan(boolean); 12747*344a7f5eSAndroid Build Coastguard Worker field public static final int INVALID_SPAN_ID = -1; // 0xffffffff 12748*344a7f5eSAndroid Build Coastguard Worker } 12749*344a7f5eSAndroid Build Coastguard Worker 12750*344a7f5eSAndroid Build Coastguard Worker public class SwitchCompat extends android.widget.CompoundButton { 12751*344a7f5eSAndroid Build Coastguard Worker ctor public SwitchCompat(android.content.Context); 12752*344a7f5eSAndroid Build Coastguard Worker ctor public SwitchCompat(android.content.Context, android.util.AttributeSet); 12753*344a7f5eSAndroid Build Coastguard Worker ctor public SwitchCompat(android.content.Context, android.util.AttributeSet, int); 12754*344a7f5eSAndroid Build Coastguard Worker method public boolean getShowText(); 12755*344a7f5eSAndroid Build Coastguard Worker method public boolean getSplitTrack(); 12756*344a7f5eSAndroid Build Coastguard Worker method public int getSwitchMinWidth(); 12757*344a7f5eSAndroid Build Coastguard Worker method public int getSwitchPadding(); 12758*344a7f5eSAndroid Build Coastguard Worker method public java.lang.CharSequence getTextOff(); 12759*344a7f5eSAndroid Build Coastguard Worker method public java.lang.CharSequence getTextOn(); 12760*344a7f5eSAndroid Build Coastguard Worker method public android.graphics.drawable.Drawable getThumbDrawable(); 12761*344a7f5eSAndroid Build Coastguard Worker method public int getThumbTextPadding(); 12762*344a7f5eSAndroid Build Coastguard Worker method public android.content.res.ColorStateList getThumbTintList(); 12763*344a7f5eSAndroid Build Coastguard Worker method public android.graphics.PorterDuff.Mode getThumbTintMode(); 12764*344a7f5eSAndroid Build Coastguard Worker method public android.graphics.drawable.Drawable getTrackDrawable(); 12765*344a7f5eSAndroid Build Coastguard Worker method public android.content.res.ColorStateList getTrackTintList(); 12766*344a7f5eSAndroid Build Coastguard Worker method public android.graphics.PorterDuff.Mode getTrackTintMode(); 12767*344a7f5eSAndroid Build Coastguard Worker method public void onMeasure(int, int); 12768*344a7f5eSAndroid Build Coastguard Worker method public void setShowText(boolean); 12769*344a7f5eSAndroid Build Coastguard Worker method public void setSplitTrack(boolean); 12770*344a7f5eSAndroid Build Coastguard Worker method public void setSwitchMinWidth(int); 12771*344a7f5eSAndroid Build Coastguard Worker method public void setSwitchPadding(int); 12772*344a7f5eSAndroid Build Coastguard Worker method public void setSwitchTextAppearance(android.content.Context, int); 12773*344a7f5eSAndroid Build Coastguard Worker method public void setSwitchTypeface(android.graphics.Typeface, int); 12774*344a7f5eSAndroid Build Coastguard Worker method public void setSwitchTypeface(android.graphics.Typeface); 12775*344a7f5eSAndroid Build Coastguard Worker method public void setTextOff(java.lang.CharSequence); 12776*344a7f5eSAndroid Build Coastguard Worker method public void setTextOn(java.lang.CharSequence); 12777*344a7f5eSAndroid Build Coastguard Worker method public void setThumbDrawable(android.graphics.drawable.Drawable); 12778*344a7f5eSAndroid Build Coastguard Worker method public void setThumbResource(int); 12779*344a7f5eSAndroid Build Coastguard Worker method public void setThumbTextPadding(int); 12780*344a7f5eSAndroid Build Coastguard Worker method public void setThumbTintList(android.content.res.ColorStateList); 12781*344a7f5eSAndroid Build Coastguard Worker method public void setThumbTintMode(android.graphics.PorterDuff.Mode); 12782*344a7f5eSAndroid Build Coastguard Worker method public void setTrackDrawable(android.graphics.drawable.Drawable); 12783*344a7f5eSAndroid Build Coastguard Worker method public void setTrackResource(int); 12784*344a7f5eSAndroid Build Coastguard Worker method public void setTrackTintList(android.content.res.ColorStateList); 12785*344a7f5eSAndroid Build Coastguard Worker method public void setTrackTintMode(android.graphics.PorterDuff.Mode); 12786*344a7f5eSAndroid Build Coastguard Worker } 12787*344a7f5eSAndroid Build Coastguard Worker 12788*344a7f5eSAndroid Build Coastguard Worker public abstract interface ThemedSpinnerAdapter implements android.widget.SpinnerAdapter { 12789*344a7f5eSAndroid Build Coastguard Worker method public abstract android.content.res.Resources.Theme getDropDownViewTheme(); 12790*344a7f5eSAndroid Build Coastguard Worker method public abstract void setDropDownViewTheme(android.content.res.Resources.Theme); 12791*344a7f5eSAndroid Build Coastguard Worker } 12792*344a7f5eSAndroid Build Coastguard Worker 12793*344a7f5eSAndroid Build Coastguard Worker public static final class ThemedSpinnerAdapter.Helper { 12794*344a7f5eSAndroid Build Coastguard Worker ctor public ThemedSpinnerAdapter.Helper(android.content.Context); 12795*344a7f5eSAndroid Build Coastguard Worker method public android.view.LayoutInflater getDropDownViewInflater(); 12796*344a7f5eSAndroid Build Coastguard Worker method public android.content.res.Resources.Theme getDropDownViewTheme(); 12797*344a7f5eSAndroid Build Coastguard Worker method public void setDropDownViewTheme(android.content.res.Resources.Theme); 12798*344a7f5eSAndroid Build Coastguard Worker } 12799*344a7f5eSAndroid Build Coastguard Worker 12800*344a7f5eSAndroid Build Coastguard Worker public class Toolbar extends android.view.ViewGroup { 12801*344a7f5eSAndroid Build Coastguard Worker ctor public Toolbar(android.content.Context); 12802*344a7f5eSAndroid Build Coastguard Worker ctor public Toolbar(android.content.Context, android.util.AttributeSet); 12803*344a7f5eSAndroid Build Coastguard Worker ctor public Toolbar(android.content.Context, android.util.AttributeSet, int); 12804*344a7f5eSAndroid Build Coastguard Worker method public void collapseActionView(); 12805*344a7f5eSAndroid Build Coastguard Worker method public void dismissPopupMenus(); 12806*344a7f5eSAndroid Build Coastguard Worker method public int getContentInsetEnd(); 12807*344a7f5eSAndroid Build Coastguard Worker method public int getContentInsetEndWithActions(); 12808*344a7f5eSAndroid Build Coastguard Worker method public int getContentInsetLeft(); 12809*344a7f5eSAndroid Build Coastguard Worker method public int getContentInsetRight(); 12810*344a7f5eSAndroid Build Coastguard Worker method public int getContentInsetStart(); 12811*344a7f5eSAndroid Build Coastguard Worker method public int getContentInsetStartWithNavigation(); 12812*344a7f5eSAndroid Build Coastguard Worker method public int getCurrentContentInsetEnd(); 12813*344a7f5eSAndroid Build Coastguard Worker method public int getCurrentContentInsetLeft(); 12814*344a7f5eSAndroid Build Coastguard Worker method public int getCurrentContentInsetRight(); 12815*344a7f5eSAndroid Build Coastguard Worker method public int getCurrentContentInsetStart(); 12816*344a7f5eSAndroid Build Coastguard Worker method public android.graphics.drawable.Drawable getLogo(); 12817*344a7f5eSAndroid Build Coastguard Worker method public java.lang.CharSequence getLogoDescription(); 12818*344a7f5eSAndroid Build Coastguard Worker method public android.view.Menu getMenu(); 12819*344a7f5eSAndroid Build Coastguard Worker method public java.lang.CharSequence getNavigationContentDescription(); 12820*344a7f5eSAndroid Build Coastguard Worker method public android.graphics.drawable.Drawable getNavigationIcon(); 12821*344a7f5eSAndroid Build Coastguard Worker method public android.graphics.drawable.Drawable getOverflowIcon(); 12822*344a7f5eSAndroid Build Coastguard Worker method public int getPopupTheme(); 12823*344a7f5eSAndroid Build Coastguard Worker method public java.lang.CharSequence getSubtitle(); 12824*344a7f5eSAndroid Build Coastguard Worker method public java.lang.CharSequence getTitle(); 12825*344a7f5eSAndroid Build Coastguard Worker method public int getTitleMarginBottom(); 12826*344a7f5eSAndroid Build Coastguard Worker method public int getTitleMarginEnd(); 12827*344a7f5eSAndroid Build Coastguard Worker method public int getTitleMarginStart(); 12828*344a7f5eSAndroid Build Coastguard Worker method public int getTitleMarginTop(); 12829*344a7f5eSAndroid Build Coastguard Worker method public boolean hasExpandedActionView(); 12830*344a7f5eSAndroid Build Coastguard Worker method public boolean hideOverflowMenu(); 12831*344a7f5eSAndroid Build Coastguard Worker method public void inflateMenu(int); 12832*344a7f5eSAndroid Build Coastguard Worker method public boolean isOverflowMenuShowing(); 12833*344a7f5eSAndroid Build Coastguard Worker method protected void onLayout(boolean, int, int, int, int); 12834*344a7f5eSAndroid Build Coastguard Worker method public void setContentInsetEndWithActions(int); 12835*344a7f5eSAndroid Build Coastguard Worker method public void setContentInsetStartWithNavigation(int); 12836*344a7f5eSAndroid Build Coastguard Worker method public void setContentInsetsAbsolute(int, int); 12837*344a7f5eSAndroid Build Coastguard Worker method public void setContentInsetsRelative(int, int); 12838*344a7f5eSAndroid Build Coastguard Worker method public void setLogo(int); 12839*344a7f5eSAndroid Build Coastguard Worker method public void setLogo(android.graphics.drawable.Drawable); 12840*344a7f5eSAndroid Build Coastguard Worker method public void setLogoDescription(int); 12841*344a7f5eSAndroid Build Coastguard Worker method public void setLogoDescription(java.lang.CharSequence); 12842*344a7f5eSAndroid Build Coastguard Worker method public void setNavigationContentDescription(int); 12843*344a7f5eSAndroid Build Coastguard Worker method public void setNavigationContentDescription(java.lang.CharSequence); 12844*344a7f5eSAndroid Build Coastguard Worker method public void setNavigationIcon(int); 12845*344a7f5eSAndroid Build Coastguard Worker method public void setNavigationIcon(android.graphics.drawable.Drawable); 12846*344a7f5eSAndroid Build Coastguard Worker method public void setNavigationOnClickListener(android.view.View.OnClickListener); 12847*344a7f5eSAndroid Build Coastguard Worker method public void setOnMenuItemClickListener(android.support.v7.widget.Toolbar.OnMenuItemClickListener); 12848*344a7f5eSAndroid Build Coastguard Worker method public void setOverflowIcon(android.graphics.drawable.Drawable); 12849*344a7f5eSAndroid Build Coastguard Worker method public void setPopupTheme(int); 12850*344a7f5eSAndroid Build Coastguard Worker method public void setSubtitle(int); 12851*344a7f5eSAndroid Build Coastguard Worker method public void setSubtitle(java.lang.CharSequence); 12852*344a7f5eSAndroid Build Coastguard Worker method public void setSubtitleTextAppearance(android.content.Context, int); 12853*344a7f5eSAndroid Build Coastguard Worker method public void setSubtitleTextColor(int); 12854*344a7f5eSAndroid Build Coastguard Worker method public void setTitle(int); 12855*344a7f5eSAndroid Build Coastguard Worker method public void setTitle(java.lang.CharSequence); 12856*344a7f5eSAndroid Build Coastguard Worker method public void setTitleMargin(int, int, int, int); 12857*344a7f5eSAndroid Build Coastguard Worker method public void setTitleMarginBottom(int); 12858*344a7f5eSAndroid Build Coastguard Worker method public void setTitleMarginEnd(int); 12859*344a7f5eSAndroid Build Coastguard Worker method public void setTitleMarginStart(int); 12860*344a7f5eSAndroid Build Coastguard Worker method public void setTitleMarginTop(int); 12861*344a7f5eSAndroid Build Coastguard Worker method public void setTitleTextAppearance(android.content.Context, int); 12862*344a7f5eSAndroid Build Coastguard Worker method public void setTitleTextColor(int); 12863*344a7f5eSAndroid Build Coastguard Worker method public boolean showOverflowMenu(); 12864*344a7f5eSAndroid Build Coastguard Worker } 12865*344a7f5eSAndroid Build Coastguard Worker 12866*344a7f5eSAndroid Build Coastguard Worker public static class Toolbar.LayoutParams extends android.support.v7.app.ActionBar.LayoutParams { 12867*344a7f5eSAndroid Build Coastguard Worker ctor public Toolbar.LayoutParams(android.content.Context, android.util.AttributeSet); 12868*344a7f5eSAndroid Build Coastguard Worker ctor public Toolbar.LayoutParams(int, int); 12869*344a7f5eSAndroid Build Coastguard Worker ctor public Toolbar.LayoutParams(int, int, int); 12870*344a7f5eSAndroid Build Coastguard Worker ctor public Toolbar.LayoutParams(int); 12871*344a7f5eSAndroid Build Coastguard Worker ctor public Toolbar.LayoutParams(android.support.v7.widget.Toolbar.LayoutParams); 12872*344a7f5eSAndroid Build Coastguard Worker ctor public Toolbar.LayoutParams(android.support.v7.app.ActionBar.LayoutParams); 12873*344a7f5eSAndroid Build Coastguard Worker ctor public Toolbar.LayoutParams(android.view.ViewGroup.MarginLayoutParams); 12874*344a7f5eSAndroid Build Coastguard Worker ctor public Toolbar.LayoutParams(android.view.ViewGroup.LayoutParams); 12875*344a7f5eSAndroid Build Coastguard Worker } 12876*344a7f5eSAndroid Build Coastguard Worker 12877*344a7f5eSAndroid Build Coastguard Worker public static abstract interface Toolbar.OnMenuItemClickListener { 12878*344a7f5eSAndroid Build Coastguard Worker method public abstract boolean onMenuItemClick(android.view.MenuItem); 12879*344a7f5eSAndroid Build Coastguard Worker } 12880*344a7f5eSAndroid Build Coastguard Worker 12881*344a7f5eSAndroid Build Coastguard Worker public static class Toolbar.SavedState extends android.support.v4.view.AbsSavedState { 12882*344a7f5eSAndroid Build Coastguard Worker ctor public Toolbar.SavedState(android.os.Parcel); 12883*344a7f5eSAndroid Build Coastguard Worker ctor public Toolbar.SavedState(android.os.Parcel, java.lang.ClassLoader); 12884*344a7f5eSAndroid Build Coastguard Worker ctor public Toolbar.SavedState(android.os.Parcelable); 12885*344a7f5eSAndroid Build Coastguard Worker field public static final android.os.Parcelable.Creator<android.support.v7.widget.Toolbar.SavedState> CREATOR; 12886*344a7f5eSAndroid Build Coastguard Worker } 12887*344a7f5eSAndroid Build Coastguard Worker 12888*344a7f5eSAndroid Build Coastguard Worker public class TooltipCompat { 12889*344a7f5eSAndroid Build Coastguard Worker method public static void setTooltipText(android.view.View, java.lang.CharSequence); 12890*344a7f5eSAndroid Build Coastguard Worker } 12891*344a7f5eSAndroid Build Coastguard Worker 12892*344a7f5eSAndroid Build Coastguard Worker} 12893*344a7f5eSAndroid Build Coastguard Worker 12894*344a7f5eSAndroid Build Coastguard Workerpackage android.support.v7.widget.helper { 12895*344a7f5eSAndroid Build Coastguard Worker 12896*344a7f5eSAndroid Build Coastguard Worker public class ItemTouchHelper extends android.support.v7.widget.RecyclerView.ItemDecoration implements android.support.v7.widget.RecyclerView.OnChildAttachStateChangeListener { 12897*344a7f5eSAndroid Build Coastguard Worker ctor public ItemTouchHelper(android.support.v7.widget.helper.ItemTouchHelper.Callback); 12898*344a7f5eSAndroid Build Coastguard Worker method public void attachToRecyclerView(android.support.v7.widget.RecyclerView); 12899*344a7f5eSAndroid Build Coastguard Worker method public void onChildViewAttachedToWindow(android.view.View); 12900*344a7f5eSAndroid Build Coastguard Worker method public void onChildViewDetachedFromWindow(android.view.View); 12901*344a7f5eSAndroid Build Coastguard Worker method public void startDrag(android.support.v7.widget.RecyclerView.ViewHolder); 12902*344a7f5eSAndroid Build Coastguard Worker method public void startSwipe(android.support.v7.widget.RecyclerView.ViewHolder); 12903*344a7f5eSAndroid Build Coastguard Worker field public static final int ACTION_STATE_DRAG = 2; // 0x2 12904*344a7f5eSAndroid Build Coastguard Worker field public static final int ACTION_STATE_IDLE = 0; // 0x0 12905*344a7f5eSAndroid Build Coastguard Worker field public static final int ACTION_STATE_SWIPE = 1; // 0x1 12906*344a7f5eSAndroid Build Coastguard Worker field public static final int ANIMATION_TYPE_DRAG = 8; // 0x8 12907*344a7f5eSAndroid Build Coastguard Worker field public static final int ANIMATION_TYPE_SWIPE_CANCEL = 4; // 0x4 12908*344a7f5eSAndroid Build Coastguard Worker field public static final int ANIMATION_TYPE_SWIPE_SUCCESS = 2; // 0x2 12909*344a7f5eSAndroid Build Coastguard Worker field public static final int DOWN = 2; // 0x2 12910*344a7f5eSAndroid Build Coastguard Worker field public static final int END = 32; // 0x20 12911*344a7f5eSAndroid Build Coastguard Worker field public static final int LEFT = 4; // 0x4 12912*344a7f5eSAndroid Build Coastguard Worker field public static final int RIGHT = 8; // 0x8 12913*344a7f5eSAndroid Build Coastguard Worker field public static final int START = 16; // 0x10 12914*344a7f5eSAndroid Build Coastguard Worker field public static final int UP = 1; // 0x1 12915*344a7f5eSAndroid Build Coastguard Worker } 12916*344a7f5eSAndroid Build Coastguard Worker 12917*344a7f5eSAndroid Build Coastguard Worker public static abstract class ItemTouchHelper.Callback { 12918*344a7f5eSAndroid Build Coastguard Worker ctor public ItemTouchHelper.Callback(); 12919*344a7f5eSAndroid Build Coastguard Worker method public boolean canDropOver(android.support.v7.widget.RecyclerView, android.support.v7.widget.RecyclerView.ViewHolder, android.support.v7.widget.RecyclerView.ViewHolder); 12920*344a7f5eSAndroid Build Coastguard Worker method public android.support.v7.widget.RecyclerView.ViewHolder chooseDropTarget(android.support.v7.widget.RecyclerView.ViewHolder, java.util.List<android.support.v7.widget.RecyclerView.ViewHolder>, int, int); 12921*344a7f5eSAndroid Build Coastguard Worker method public void clearView(android.support.v7.widget.RecyclerView, android.support.v7.widget.RecyclerView.ViewHolder); 12922*344a7f5eSAndroid Build Coastguard Worker method public int convertToAbsoluteDirection(int, int); 12923*344a7f5eSAndroid Build Coastguard Worker method public static int convertToRelativeDirection(int, int); 12924*344a7f5eSAndroid Build Coastguard Worker method public long getAnimationDuration(android.support.v7.widget.RecyclerView, int, float, float); 12925*344a7f5eSAndroid Build Coastguard Worker method public int getBoundingBoxMargin(); 12926*344a7f5eSAndroid Build Coastguard Worker method public static android.support.v7.widget.helper.ItemTouchUIUtil getDefaultUIUtil(); 12927*344a7f5eSAndroid Build Coastguard Worker method public float getMoveThreshold(android.support.v7.widget.RecyclerView.ViewHolder); 12928*344a7f5eSAndroid Build Coastguard Worker method public abstract int getMovementFlags(android.support.v7.widget.RecyclerView, android.support.v7.widget.RecyclerView.ViewHolder); 12929*344a7f5eSAndroid Build Coastguard Worker method public float getSwipeEscapeVelocity(float); 12930*344a7f5eSAndroid Build Coastguard Worker method public float getSwipeThreshold(android.support.v7.widget.RecyclerView.ViewHolder); 12931*344a7f5eSAndroid Build Coastguard Worker method public float getSwipeVelocityThreshold(float); 12932*344a7f5eSAndroid Build Coastguard Worker method public int interpolateOutOfBoundsScroll(android.support.v7.widget.RecyclerView, int, int, int, long); 12933*344a7f5eSAndroid Build Coastguard Worker method public boolean isItemViewSwipeEnabled(); 12934*344a7f5eSAndroid Build Coastguard Worker method public boolean isLongPressDragEnabled(); 12935*344a7f5eSAndroid Build Coastguard Worker method public static int makeFlag(int, int); 12936*344a7f5eSAndroid Build Coastguard Worker method public static int makeMovementFlags(int, int); 12937*344a7f5eSAndroid Build Coastguard Worker method public void onChildDraw(android.graphics.Canvas, android.support.v7.widget.RecyclerView, android.support.v7.widget.RecyclerView.ViewHolder, float, float, int, boolean); 12938*344a7f5eSAndroid Build Coastguard Worker method public void onChildDrawOver(android.graphics.Canvas, android.support.v7.widget.RecyclerView, android.support.v7.widget.RecyclerView.ViewHolder, float, float, int, boolean); 12939*344a7f5eSAndroid Build Coastguard Worker method public abstract boolean onMove(android.support.v7.widget.RecyclerView, android.support.v7.widget.RecyclerView.ViewHolder, android.support.v7.widget.RecyclerView.ViewHolder); 12940*344a7f5eSAndroid Build Coastguard Worker method public void onMoved(android.support.v7.widget.RecyclerView, android.support.v7.widget.RecyclerView.ViewHolder, int, android.support.v7.widget.RecyclerView.ViewHolder, int, int, int); 12941*344a7f5eSAndroid Build Coastguard Worker method public void onSelectedChanged(android.support.v7.widget.RecyclerView.ViewHolder, int); 12942*344a7f5eSAndroid Build Coastguard Worker method public abstract void onSwiped(android.support.v7.widget.RecyclerView.ViewHolder, int); 12943*344a7f5eSAndroid Build Coastguard Worker field public static final int DEFAULT_DRAG_ANIMATION_DURATION = 200; // 0xc8 12944*344a7f5eSAndroid Build Coastguard Worker field public static final int DEFAULT_SWIPE_ANIMATION_DURATION = 250; // 0xfa 12945*344a7f5eSAndroid Build Coastguard Worker } 12946*344a7f5eSAndroid Build Coastguard Worker 12947*344a7f5eSAndroid Build Coastguard Worker public static abstract class ItemTouchHelper.SimpleCallback extends android.support.v7.widget.helper.ItemTouchHelper.Callback { 12948*344a7f5eSAndroid Build Coastguard Worker ctor public ItemTouchHelper.SimpleCallback(int, int); 12949*344a7f5eSAndroid Build Coastguard Worker method public int getDragDirs(android.support.v7.widget.RecyclerView, android.support.v7.widget.RecyclerView.ViewHolder); 12950*344a7f5eSAndroid Build Coastguard Worker method public int getMovementFlags(android.support.v7.widget.RecyclerView, android.support.v7.widget.RecyclerView.ViewHolder); 12951*344a7f5eSAndroid Build Coastguard Worker method public int getSwipeDirs(android.support.v7.widget.RecyclerView, android.support.v7.widget.RecyclerView.ViewHolder); 12952*344a7f5eSAndroid Build Coastguard Worker method public void setDefaultDragDirs(int); 12953*344a7f5eSAndroid Build Coastguard Worker method public void setDefaultSwipeDirs(int); 12954*344a7f5eSAndroid Build Coastguard Worker } 12955*344a7f5eSAndroid Build Coastguard Worker 12956*344a7f5eSAndroid Build Coastguard Worker public static abstract interface ItemTouchHelper.ViewDropHandler { 12957*344a7f5eSAndroid Build Coastguard Worker method public abstract void prepareForDrop(android.view.View, android.view.View, int, int); 12958*344a7f5eSAndroid Build Coastguard Worker } 12959*344a7f5eSAndroid Build Coastguard Worker 12960*344a7f5eSAndroid Build Coastguard Worker public abstract interface ItemTouchUIUtil { 12961*344a7f5eSAndroid Build Coastguard Worker method public abstract void clearView(android.view.View); 12962*344a7f5eSAndroid Build Coastguard Worker method public abstract void onDraw(android.graphics.Canvas, android.support.v7.widget.RecyclerView, android.view.View, float, float, int, boolean); 12963*344a7f5eSAndroid Build Coastguard Worker method public abstract void onDrawOver(android.graphics.Canvas, android.support.v7.widget.RecyclerView, android.view.View, float, float, int, boolean); 12964*344a7f5eSAndroid Build Coastguard Worker method public abstract void onSelected(android.view.View); 12965*344a7f5eSAndroid Build Coastguard Worker } 12966*344a7f5eSAndroid Build Coastguard Worker 12967*344a7f5eSAndroid Build Coastguard Worker} 12968*344a7f5eSAndroid Build Coastguard Worker 12969*344a7f5eSAndroid Build Coastguard Workerpackage android.support.v7.widget.util { 12970*344a7f5eSAndroid Build Coastguard Worker 12971*344a7f5eSAndroid Build Coastguard Worker public abstract class SortedListAdapterCallback<T2> extends android.support.v7.util.SortedList.Callback { 12972*344a7f5eSAndroid Build Coastguard Worker ctor public SortedListAdapterCallback(android.support.v7.widget.RecyclerView.Adapter); 12973*344a7f5eSAndroid Build Coastguard Worker method public void onChanged(int, int); 12974*344a7f5eSAndroid Build Coastguard Worker method public void onInserted(int, int); 12975*344a7f5eSAndroid Build Coastguard Worker method public void onMoved(int, int); 12976*344a7f5eSAndroid Build Coastguard Worker method public void onRemoved(int, int); 12977*344a7f5eSAndroid Build Coastguard Worker } 12978*344a7f5eSAndroid Build Coastguard Worker 12979*344a7f5eSAndroid Build Coastguard Worker} 12980*344a7f5eSAndroid Build Coastguard Worker 12981*344a7f5eSAndroid Build Coastguard Workerpackage android.support.wear.widget { 12982*344a7f5eSAndroid Build Coastguard Worker 12983*344a7f5eSAndroid Build Coastguard Worker public class BoxInsetLayout extends android.view.ViewGroup { 12984*344a7f5eSAndroid Build Coastguard Worker ctor public BoxInsetLayout(android.content.Context); 12985*344a7f5eSAndroid Build Coastguard Worker ctor public BoxInsetLayout(android.content.Context, android.util.AttributeSet); 12986*344a7f5eSAndroid Build Coastguard Worker ctor public BoxInsetLayout(android.content.Context, android.util.AttributeSet, int); 12987*344a7f5eSAndroid Build Coastguard Worker method protected void onLayout(boolean, int, int, int, int); 12988*344a7f5eSAndroid Build Coastguard Worker } 12989*344a7f5eSAndroid Build Coastguard Worker 12990*344a7f5eSAndroid Build Coastguard Worker public static class BoxInsetLayout.LayoutParams extends android.widget.FrameLayout.LayoutParams { 12991*344a7f5eSAndroid Build Coastguard Worker ctor public BoxInsetLayout.LayoutParams(android.content.Context, android.util.AttributeSet); 12992*344a7f5eSAndroid Build Coastguard Worker ctor public BoxInsetLayout.LayoutParams(int, int); 12993*344a7f5eSAndroid Build Coastguard Worker ctor public BoxInsetLayout.LayoutParams(int, int, int); 12994*344a7f5eSAndroid Build Coastguard Worker ctor public BoxInsetLayout.LayoutParams(int, int, int, int); 12995*344a7f5eSAndroid Build Coastguard Worker ctor public BoxInsetLayout.LayoutParams(android.view.ViewGroup.LayoutParams); 12996*344a7f5eSAndroid Build Coastguard Worker ctor public BoxInsetLayout.LayoutParams(android.view.ViewGroup.MarginLayoutParams); 12997*344a7f5eSAndroid Build Coastguard Worker ctor public BoxInsetLayout.LayoutParams(android.widget.FrameLayout.LayoutParams); 12998*344a7f5eSAndroid Build Coastguard Worker ctor public BoxInsetLayout.LayoutParams(android.support.wear.widget.BoxInsetLayout.LayoutParams); 12999*344a7f5eSAndroid Build Coastguard Worker field public static final int BOX_ALL = 15; // 0xf 13000*344a7f5eSAndroid Build Coastguard Worker field public static final int BOX_BOTTOM = 8; // 0x8 13001*344a7f5eSAndroid Build Coastguard Worker field public static final int BOX_LEFT = 1; // 0x1 13002*344a7f5eSAndroid Build Coastguard Worker field public static final int BOX_NONE = 0; // 0x0 13003*344a7f5eSAndroid Build Coastguard Worker field public static final int BOX_RIGHT = 4; // 0x4 13004*344a7f5eSAndroid Build Coastguard Worker field public static final int BOX_TOP = 2; // 0x2 13005*344a7f5eSAndroid Build Coastguard Worker field public int boxedEdges; 13006*344a7f5eSAndroid Build Coastguard Worker } 13007*344a7f5eSAndroid Build Coastguard Worker 13008*344a7f5eSAndroid Build Coastguard Worker public class CurvingLayoutCallback extends android.support.wear.widget.WearableLinearLayoutManager.LayoutCallback { 13009*344a7f5eSAndroid Build Coastguard Worker ctor public CurvingLayoutCallback(android.content.Context); 13010*344a7f5eSAndroid Build Coastguard Worker method public void adjustAnchorOffsetXY(android.view.View, float[]); 13011*344a7f5eSAndroid Build Coastguard Worker method public void onLayoutFinished(android.view.View, android.support.v7.widget.RecyclerView); 13012*344a7f5eSAndroid Build Coastguard Worker } 13013*344a7f5eSAndroid Build Coastguard Worker 13014*344a7f5eSAndroid Build Coastguard Worker public class SwipeDismissFrameLayout extends android.widget.FrameLayout { 13015*344a7f5eSAndroid Build Coastguard Worker ctor public SwipeDismissFrameLayout(android.content.Context); 13016*344a7f5eSAndroid Build Coastguard Worker ctor public SwipeDismissFrameLayout(android.content.Context, android.util.AttributeSet); 13017*344a7f5eSAndroid Build Coastguard Worker ctor public SwipeDismissFrameLayout(android.content.Context, android.util.AttributeSet, int); 13018*344a7f5eSAndroid Build Coastguard Worker ctor public SwipeDismissFrameLayout(android.content.Context, android.util.AttributeSet, int, int); 13019*344a7f5eSAndroid Build Coastguard Worker method public void addCallback(android.support.wear.widget.SwipeDismissFrameLayout.Callback); 13020*344a7f5eSAndroid Build Coastguard Worker method public void removeCallback(android.support.wear.widget.SwipeDismissFrameLayout.Callback); 13021*344a7f5eSAndroid Build Coastguard Worker } 13022*344a7f5eSAndroid Build Coastguard Worker 13023*344a7f5eSAndroid Build Coastguard Worker public static abstract class SwipeDismissFrameLayout.Callback { 13024*344a7f5eSAndroid Build Coastguard Worker ctor public SwipeDismissFrameLayout.Callback(); 13025*344a7f5eSAndroid Build Coastguard Worker method public void onDismissed(android.support.wear.widget.SwipeDismissFrameLayout); 13026*344a7f5eSAndroid Build Coastguard Worker method public void onSwipeCanceled(android.support.wear.widget.SwipeDismissFrameLayout); 13027*344a7f5eSAndroid Build Coastguard Worker method public void onSwipeStarted(android.support.wear.widget.SwipeDismissFrameLayout); 13028*344a7f5eSAndroid Build Coastguard Worker } 13029*344a7f5eSAndroid Build Coastguard Worker 13030*344a7f5eSAndroid Build Coastguard Worker public class WearableLinearLayoutManager extends android.support.v7.widget.LinearLayoutManager { 13031*344a7f5eSAndroid Build Coastguard Worker ctor public WearableLinearLayoutManager(android.content.Context, android.support.wear.widget.WearableLinearLayoutManager.LayoutCallback); 13032*344a7f5eSAndroid Build Coastguard Worker ctor public WearableLinearLayoutManager(android.content.Context); 13033*344a7f5eSAndroid Build Coastguard Worker method public android.support.wear.widget.WearableLinearLayoutManager.LayoutCallback getLayoutCallback(); 13034*344a7f5eSAndroid Build Coastguard Worker method public void setLayoutCallback(android.support.wear.widget.WearableLinearLayoutManager.LayoutCallback); 13035*344a7f5eSAndroid Build Coastguard Worker } 13036*344a7f5eSAndroid Build Coastguard Worker 13037*344a7f5eSAndroid Build Coastguard Worker public static abstract class WearableLinearLayoutManager.LayoutCallback { 13038*344a7f5eSAndroid Build Coastguard Worker ctor public WearableLinearLayoutManager.LayoutCallback(); 13039*344a7f5eSAndroid Build Coastguard Worker method public abstract void onLayoutFinished(android.view.View, android.support.v7.widget.RecyclerView); 13040*344a7f5eSAndroid Build Coastguard Worker } 13041*344a7f5eSAndroid Build Coastguard Worker 13042*344a7f5eSAndroid Build Coastguard Worker public class WearableRecyclerView extends android.support.v7.widget.RecyclerView { 13043*344a7f5eSAndroid Build Coastguard Worker ctor public WearableRecyclerView(android.content.Context); 13044*344a7f5eSAndroid Build Coastguard Worker ctor public WearableRecyclerView(android.content.Context, android.util.AttributeSet); 13045*344a7f5eSAndroid Build Coastguard Worker ctor public WearableRecyclerView(android.content.Context, android.util.AttributeSet, int); 13046*344a7f5eSAndroid Build Coastguard Worker ctor public WearableRecyclerView(android.content.Context, android.util.AttributeSet, int, int); 13047*344a7f5eSAndroid Build Coastguard Worker method public float getBezelFraction(); 13048*344a7f5eSAndroid Build Coastguard Worker method public float getScrollDegreesPerScreen(); 13049*344a7f5eSAndroid Build Coastguard Worker method public boolean isCircularScrollingGestureEnabled(); 13050*344a7f5eSAndroid Build Coastguard Worker method public boolean isEdgeItemsCenteringEnabled(); 13051*344a7f5eSAndroid Build Coastguard Worker method public void setBezelFraction(float); 13052*344a7f5eSAndroid Build Coastguard Worker method public void setCircularScrollingGestureEnabled(boolean); 13053*344a7f5eSAndroid Build Coastguard Worker method public void setEdgeItemsCenteringEnabled(boolean); 13054*344a7f5eSAndroid Build Coastguard Worker method public void setScrollDegreesPerScreen(float); 13055*344a7f5eSAndroid Build Coastguard Worker } 13056*344a7f5eSAndroid Build Coastguard Worker 13057*344a7f5eSAndroid Build Coastguard Worker} 13058*344a7f5eSAndroid Build Coastguard Worker 13059*344a7f5eSAndroid Build Coastguard Workerpackage android.support.wear.widget.drawer { 13060*344a7f5eSAndroid Build Coastguard Worker 13061*344a7f5eSAndroid Build Coastguard Worker public class WearableActionDrawerView extends android.support.wear.widget.drawer.WearableDrawerView { 13062*344a7f5eSAndroid Build Coastguard Worker ctor public WearableActionDrawerView(android.content.Context); 13063*344a7f5eSAndroid Build Coastguard Worker ctor public WearableActionDrawerView(android.content.Context, android.util.AttributeSet); 13064*344a7f5eSAndroid Build Coastguard Worker ctor public WearableActionDrawerView(android.content.Context, android.util.AttributeSet, int); 13065*344a7f5eSAndroid Build Coastguard Worker ctor public WearableActionDrawerView(android.content.Context, android.util.AttributeSet, int, int); 13066*344a7f5eSAndroid Build Coastguard Worker method public android.view.Menu getMenu(); 13067*344a7f5eSAndroid Build Coastguard Worker method public void setOnMenuItemClickListener(android.view.MenuItem.OnMenuItemClickListener); 13068*344a7f5eSAndroid Build Coastguard Worker method public void setTitle(java.lang.CharSequence); 13069*344a7f5eSAndroid Build Coastguard Worker } 13070*344a7f5eSAndroid Build Coastguard Worker 13071*344a7f5eSAndroid Build Coastguard Worker public class WearableDrawerController { 13072*344a7f5eSAndroid Build Coastguard Worker method public void closeDrawer(); 13073*344a7f5eSAndroid Build Coastguard Worker method public void openDrawer(); 13074*344a7f5eSAndroid Build Coastguard Worker method public void peekDrawer(); 13075*344a7f5eSAndroid Build Coastguard Worker } 13076*344a7f5eSAndroid Build Coastguard Worker 13077*344a7f5eSAndroid Build Coastguard Worker public class WearableDrawerLayout extends android.widget.FrameLayout implements android.support.v4.view.NestedScrollingParent android.view.View.OnLayoutChangeListener { 13078*344a7f5eSAndroid Build Coastguard Worker ctor public WearableDrawerLayout(android.content.Context); 13079*344a7f5eSAndroid Build Coastguard Worker ctor public WearableDrawerLayout(android.content.Context, android.util.AttributeSet); 13080*344a7f5eSAndroid Build Coastguard Worker ctor public WearableDrawerLayout(android.content.Context, android.util.AttributeSet, int); 13081*344a7f5eSAndroid Build Coastguard Worker ctor public WearableDrawerLayout(android.content.Context, android.util.AttributeSet, int, int); 13082*344a7f5eSAndroid Build Coastguard Worker method public void onFlingComplete(android.view.View); 13083*344a7f5eSAndroid Build Coastguard Worker method public void onLayoutChange(android.view.View, int, int, int, int, int, int, int, int); 13084*344a7f5eSAndroid Build Coastguard Worker method public void setDrawerStateCallback(android.support.wear.widget.drawer.WearableDrawerLayout.DrawerStateCallback); 13085*344a7f5eSAndroid Build Coastguard Worker } 13086*344a7f5eSAndroid Build Coastguard Worker 13087*344a7f5eSAndroid Build Coastguard Worker public static class WearableDrawerLayout.DrawerStateCallback { 13088*344a7f5eSAndroid Build Coastguard Worker ctor public WearableDrawerLayout.DrawerStateCallback(); 13089*344a7f5eSAndroid Build Coastguard Worker method public void onDrawerClosed(android.support.wear.widget.drawer.WearableDrawerLayout, android.support.wear.widget.drawer.WearableDrawerView); 13090*344a7f5eSAndroid Build Coastguard Worker method public void onDrawerOpened(android.support.wear.widget.drawer.WearableDrawerLayout, android.support.wear.widget.drawer.WearableDrawerView); 13091*344a7f5eSAndroid Build Coastguard Worker method public void onDrawerStateChanged(android.support.wear.widget.drawer.WearableDrawerLayout, int); 13092*344a7f5eSAndroid Build Coastguard Worker } 13093*344a7f5eSAndroid Build Coastguard Worker 13094*344a7f5eSAndroid Build Coastguard Worker public class WearableDrawerView extends android.widget.FrameLayout { 13095*344a7f5eSAndroid Build Coastguard Worker ctor public WearableDrawerView(android.content.Context); 13096*344a7f5eSAndroid Build Coastguard Worker ctor public WearableDrawerView(android.content.Context, android.util.AttributeSet); 13097*344a7f5eSAndroid Build Coastguard Worker ctor public WearableDrawerView(android.content.Context, android.util.AttributeSet, int); 13098*344a7f5eSAndroid Build Coastguard Worker ctor public WearableDrawerView(android.content.Context, android.util.AttributeSet, int, int); 13099*344a7f5eSAndroid Build Coastguard Worker method public android.support.wear.widget.drawer.WearableDrawerController getController(); 13100*344a7f5eSAndroid Build Coastguard Worker method public android.view.View getDrawerContent(); 13101*344a7f5eSAndroid Build Coastguard Worker method public int getDrawerState(); 13102*344a7f5eSAndroid Build Coastguard Worker method public boolean isAutoPeekEnabled(); 13103*344a7f5eSAndroid Build Coastguard Worker method public boolean isClosed(); 13104*344a7f5eSAndroid Build Coastguard Worker method public boolean isLocked(); 13105*344a7f5eSAndroid Build Coastguard Worker method public boolean isLockedWhenClosed(); 13106*344a7f5eSAndroid Build Coastguard Worker method public boolean isOpenOnlyAtTopEnabled(); 13107*344a7f5eSAndroid Build Coastguard Worker method public boolean isOpened(); 13108*344a7f5eSAndroid Build Coastguard Worker method public boolean isPeekOnScrollDownEnabled(); 13109*344a7f5eSAndroid Build Coastguard Worker method public boolean isPeeking(); 13110*344a7f5eSAndroid Build Coastguard Worker method public void onDrawerClosed(); 13111*344a7f5eSAndroid Build Coastguard Worker method public void onDrawerOpened(); 13112*344a7f5eSAndroid Build Coastguard Worker method public void onDrawerStateChanged(int); 13113*344a7f5eSAndroid Build Coastguard Worker method public void onPeekContainerClicked(android.view.View); 13114*344a7f5eSAndroid Build Coastguard Worker method public void setDrawerContent(android.view.View); 13115*344a7f5eSAndroid Build Coastguard Worker method public void setIsAutoPeekEnabled(boolean); 13116*344a7f5eSAndroid Build Coastguard Worker method public void setIsLocked(boolean); 13117*344a7f5eSAndroid Build Coastguard Worker method public void setLockedWhenClosed(boolean); 13118*344a7f5eSAndroid Build Coastguard Worker method public void setOpenOnlyAtTopEnabled(boolean); 13119*344a7f5eSAndroid Build Coastguard Worker method public void setPeekContent(android.view.View); 13120*344a7f5eSAndroid Build Coastguard Worker method public void setPeekOnScrollDownEnabled(boolean); 13121*344a7f5eSAndroid Build Coastguard Worker field public static final int STATE_DRAGGING = 1; // 0x1 13122*344a7f5eSAndroid Build Coastguard Worker field public static final int STATE_IDLE = 0; // 0x0 13123*344a7f5eSAndroid Build Coastguard Worker field public static final int STATE_SETTLING = 2; // 0x2 13124*344a7f5eSAndroid Build Coastguard Worker } 13125*344a7f5eSAndroid Build Coastguard Worker 13126*344a7f5eSAndroid Build Coastguard Worker public class WearableNavigationDrawerView extends android.support.wear.widget.drawer.WearableDrawerView { 13127*344a7f5eSAndroid Build Coastguard Worker ctor public WearableNavigationDrawerView(android.content.Context); 13128*344a7f5eSAndroid Build Coastguard Worker ctor public WearableNavigationDrawerView(android.content.Context, android.util.AttributeSet); 13129*344a7f5eSAndroid Build Coastguard Worker ctor public WearableNavigationDrawerView(android.content.Context, android.util.AttributeSet, int); 13130*344a7f5eSAndroid Build Coastguard Worker ctor public WearableNavigationDrawerView(android.content.Context, android.util.AttributeSet, int, int); 13131*344a7f5eSAndroid Build Coastguard Worker method public void addOnItemSelectedListener(android.support.wear.widget.drawer.WearableNavigationDrawerView.OnItemSelectedListener); 13132*344a7f5eSAndroid Build Coastguard Worker method public int getNavigationStyle(); 13133*344a7f5eSAndroid Build Coastguard Worker method public void removeOnItemSelectedListener(android.support.wear.widget.drawer.WearableNavigationDrawerView.OnItemSelectedListener); 13134*344a7f5eSAndroid Build Coastguard Worker method public void setAdapter(android.support.wear.widget.drawer.WearableNavigationDrawerView.WearableNavigationDrawerAdapter); 13135*344a7f5eSAndroid Build Coastguard Worker method public void setCurrentItem(int, boolean); 13136*344a7f5eSAndroid Build Coastguard Worker field public static final int MULTI_PAGE = 1; // 0x1 13137*344a7f5eSAndroid Build Coastguard Worker field public static final int SINGLE_PAGE = 0; // 0x0 13138*344a7f5eSAndroid Build Coastguard Worker } 13139*344a7f5eSAndroid Build Coastguard Worker 13140*344a7f5eSAndroid Build Coastguard Worker public static abstract interface WearableNavigationDrawerView.OnItemSelectedListener { 13141*344a7f5eSAndroid Build Coastguard Worker method public abstract void onItemSelected(int); 13142*344a7f5eSAndroid Build Coastguard Worker } 13143*344a7f5eSAndroid Build Coastguard Worker 13144*344a7f5eSAndroid Build Coastguard Worker public static abstract class WearableNavigationDrawerView.WearableNavigationDrawerAdapter { 13145*344a7f5eSAndroid Build Coastguard Worker ctor public WearableNavigationDrawerView.WearableNavigationDrawerAdapter(); 13146*344a7f5eSAndroid Build Coastguard Worker method public abstract int getCount(); 13147*344a7f5eSAndroid Build Coastguard Worker method public abstract android.graphics.drawable.Drawable getItemDrawable(int); 13148*344a7f5eSAndroid Build Coastguard Worker method public abstract java.lang.CharSequence getItemText(int); 13149*344a7f5eSAndroid Build Coastguard Worker method public void notifyDataSetChanged(); 13150*344a7f5eSAndroid Build Coastguard Worker } 13151*344a7f5eSAndroid Build Coastguard Worker 13152*344a7f5eSAndroid Build Coastguard Worker} 13153*344a7f5eSAndroid Build Coastguard Worker 13154