diff --git a/app/build.gradle.kts b/app/build.gradle.kts index 3f394df..9cbaa68 100644 --- a/app/build.gradle.kts +++ b/app/build.gradle.kts @@ -1,7 +1,6 @@ -import org.gradle.api.JavaVersion - plugins { id("com.android.application") + id("kotlin-android") } android { @@ -11,7 +10,6 @@ android { applicationId = "com.tomerrosenfeld.fadingtextview" minSdk = 23 targetSdk = 33 - vectorDrawables.useSupportLibrary = true versionCode = 2 versionName = "1.0" testInstrumentationRunner = "androidx.test.runner.AndroidJUnitRunner" @@ -19,7 +17,6 @@ android { buildTypes { getByName("release") { - isMinifyEnabled = false proguardFiles(getDefaultProguardFile("proguard-android.txt"), "proguard-rules.pro") } } @@ -28,6 +25,7 @@ android { sourceCompatibility = JavaVersion.VERSION_1_8 targetCompatibility = JavaVersion.VERSION_1_8 } + namespace = "com.tomerrosenfeld.fadingtextview" } dependencies { @@ -37,6 +35,6 @@ dependencies { implementation(project(":fadingtextview")) implementation("androidx.appcompat:appcompat:1.6.1") implementation("com.google.android.material:material:1.9.0") - implementation("org.adw.library:discrete-seekbar:1.0.1") + implementation("com.github.AnderWeb:discreteSeekBar:99e62e6cd0") testImplementation("junit:junit:4.13.2") } diff --git a/app/src/androidTest/java/com/tomerrosenfeld/fadingtextview/ExampleInstrumentedTest.java b/app/src/androidTest/java/com/tomerrosenfeld/fadingtextview/ExampleInstrumentedTest.java deleted file mode 100644 index 7121706..0000000 --- a/app/src/androidTest/java/com/tomerrosenfeld/fadingtextview/ExampleInstrumentedTest.java +++ /dev/null @@ -1,26 +0,0 @@ -package com.tomerrosenfeld.fadingtextview; - -import android.content.Context; -import androidx.test.platform.app.InstrumentationRegistry; -import androidx.test.ext.junit.runners.AndroidJUnit4; - -import org.junit.Test; -import org.junit.runner.RunWith; - -import static org.junit.Assert.*; - -/** - * Instrumentation test, which will execute on an Android device. - * - * @see Testing documentation - */ -@RunWith(AndroidJUnit4.class) -public class ExampleInstrumentedTest { - @Test - public void useAppContext() throws Exception { - // Context of the app under test. - Context appContext = InstrumentationRegistry.getTargetContext(); - - assertEquals("com.tomerrosenfeld.fadingtextview", appContext.getPackageName()); - } -} diff --git a/app/src/main/AndroidManifest.xml b/app/src/main/AndroidManifest.xml index a0a82e8..1b13f1f 100644 --- a/app/src/main/AndroidManifest.xml +++ b/app/src/main/AndroidManifest.xml @@ -1,14 +1,12 @@ - + + android:theme="@style/AppTheme"> (R.id.toolbar) + setSupportActionBar(toolbar) + //FadingTextView related code + val fadingTextView = findViewById(R.id.fadingTextView) + fadingTextView.setTimeout(2.seconds) + //Setting up the timeout seek bar + val seekBar = findViewById(R.id.timeout_bar) + seekBar.setOnProgressChangeListener(object : DiscreteSeekBar.OnProgressChangeListener { + override fun onProgressChanged( + seekBar: DiscreteSeekBar, + value: Int, + fromUser: Boolean + ) { + fadingTextView.setTimeout(value.seconds) + fadingTextView.forceRefresh() + } + + override fun onStartTrackingTouch(seekBar: DiscreteSeekBar) {} + override fun onStopTrackingTouch(seekBar: DiscreteSeekBar) {} + }) + //Setting up the Github Floating Action Button + findViewById(R.id.fab).setOnClickListener { + val browserIntent = Intent( + Intent.ACTION_VIEW, + Uri.parse("http://www.github.com/rosenpin/FadingTextView") + ) + browserIntent.flags = Intent.FLAG_ACTIVITY_NEW_TASK + startActivity(browserIntent) + } + //Show jokes if the app is in production + if (!BuildConfig.DEBUG) { + fadingTextView.setTexts(jokes[Random().nextInt(3 + 1)]) + } + } +} \ No newline at end of file diff --git a/app/src/test/java/com/tomerrosenfeld/fadingtextview/ExampleUnitTest.java b/app/src/test/java/com/tomerrosenfeld/fadingtextview/ExampleUnitTest.java deleted file mode 100644 index 07c121f..0000000 --- a/app/src/test/java/com/tomerrosenfeld/fadingtextview/ExampleUnitTest.java +++ /dev/null @@ -1,17 +0,0 @@ -package com.tomerrosenfeld.fadingtextview; - -import org.junit.Test; - -import static org.junit.Assert.*; - -/** - * Example local unit test, which will execute on the development machine (host). - * - * @see Testing documentation - */ -public class ExampleUnitTest { - @Test - public void addition_isCorrect() throws Exception { - assertEquals(4, 2 + 2); - } -} diff --git a/build.gradle.kts b/build.gradle.kts index 29eeb8a..2c0c716 100644 --- a/build.gradle.kts +++ b/build.gradle.kts @@ -1,20 +1,22 @@ buildscript { val kotlin_version = "1.6.21" repositories { - jcenter() + mavenCentral() google() } dependencies { - classpath("com.android.tools.build:gradle:7.4.2") + classpath("com.android.tools.build:gradle:8.0.2") classpath("org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlin_version") - classpath("com.jfrog.bintray.gradle:gradle-bintray-plugin:1.4") classpath("com.github.dcendents:android-maven-gradle-plugin:1.4.1") } } allprojects { repositories { - jcenter() + maven { + url = uri("https://jitpack.io") + } + mavenCentral() maven { url = uri("https://maven.google.com") } diff --git a/docs/allclasses-frame.html b/docs/allclasses-frame.html deleted file mode 100644 index 8a6db23..0000000 --- a/docs/allclasses-frame.html +++ /dev/null @@ -1,20 +0,0 @@ - - - - - -All Classes - - - - - -

All Classes

- - - diff --git a/docs/allclasses-noframe.html b/docs/allclasses-noframe.html deleted file mode 100644 index 75990eb..0000000 --- a/docs/allclasses-noframe.html +++ /dev/null @@ -1,20 +0,0 @@ - - - - - -All Classes - - - - - -

All Classes

- - - diff --git a/docs/com/tomer/fadingtextview/BuildConfig.html b/docs/com/tomer/fadingtextview/BuildConfig.html deleted file mode 100644 index be35490..0000000 --- a/docs/com/tomer/fadingtextview/BuildConfig.html +++ /dev/null @@ -1,358 +0,0 @@ - - - - - -BuildConfig - - - - - - - - - - - - -
-
com.tomer.fadingtextview
-

Class BuildConfig

-
-
-
    -
  • java.lang.Object
  • -
  • -
      -
    • com.tomer.fadingtextview.BuildConfig
    • -
    -
  • -
-
-
    -
  • -
    -
    -
    public final class BuildConfig
    -extends java.lang.Object
    -
  • -
-
-
-
    -
  • - -
      -
    • - - -

      Field Summary

      - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
      Fields 
      Modifier and TypeField and Description
      static java.lang.StringAPPLICATION_ID 
      static java.lang.StringBUILD_TYPE 
      static booleanDEBUG 
      static java.lang.StringFLAVOR 
      static intVERSION_CODE 
      static java.lang.StringVERSION_NAME 
      -
    • -
    - -
      -
    • - - -

      Constructor Summary

      - - - - - - - - -
      Constructors 
      Constructor and Description
      BuildConfig() 
      -
    • -
    - -
      -
    • - - -

      Method Summary

      -
        -
      • - - -

        Methods inherited from class java.lang.Object

        -clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
      • -
      -
    • -
    -
  • -
-
-
-
    -
  • - - - -
      -
    • - - -

      Constructor Detail

      - - - -
        -
      • -

        BuildConfig

        -
        public BuildConfig()
        -
      • -
      -
    • -
    -
  • -
-
-
- - - - - - - diff --git a/docs/com/tomer/fadingtextview/ExampleUnitTest.html b/docs/com/tomer/fadingtextview/ExampleUnitTest.html deleted file mode 100644 index 8ceb844..0000000 --- a/docs/com/tomer/fadingtextview/ExampleUnitTest.html +++ /dev/null @@ -1,279 +0,0 @@ - - - - - -ExampleUnitTest - - - - - - - - - - - - -
-
com.tomer.fadingtextview
-

Class ExampleUnitTest

-
-
-
    -
  • java.lang.Object
  • -
  • -
      -
    • com.tomer.fadingtextview.ExampleUnitTest
    • -
    -
  • -
-
-
    -
  • -
    -
    -
    public class ExampleUnitTest
    -extends java.lang.Object
    -
    Example local unit test, which will execute on the development machine (host).
    -
    -
    See Also:
    -
    Testing documentation
    -
    -
  • -
-
-
-
    -
  • - -
      -
    • - - -

      Constructor Summary

      - - - - - - - - -
      Constructors 
      Constructor and Description
      ExampleUnitTest() 
      -
    • -
    - -
      -
    • - - -

      Method Summary

      - - - - - - - - - - -
      All Methods Instance Methods Concrete Methods 
      Modifier and TypeMethod and Description
      voidaddition_isCorrect() 
      -
        -
      • - - -

        Methods inherited from class java.lang.Object

        -clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
      • -
      -
    • -
    -
  • -
-
-
-
    -
  • - -
      -
    • - - -

      Constructor Detail

      - - - -
        -
      • -

        ExampleUnitTest

        -
        public ExampleUnitTest()
        -
      • -
      -
    • -
    - -
      -
    • - - -

      Method Detail

      - - - -
        -
      • -

        addition_isCorrect

        -
        public void addition_isCorrect()
        -                        throws java.lang.Exception
        -
        -
        Throws:
        -
        java.lang.Exception
        -
        -
      • -
      -
    • -
    -
  • -
-
-
- - - - - - - diff --git a/docs/com/tomer/fadingtextview/FadingTextView.TimeUnit.html b/docs/com/tomer/fadingtextview/FadingTextView.TimeUnit.html deleted file mode 100644 index a247d14..0000000 --- a/docs/com/tomer/fadingtextview/FadingTextView.TimeUnit.html +++ /dev/null @@ -1,162 +0,0 @@ - - - - - -FadingTextView.TimeUnit - - - - - - - - - - - - -
-
com.tomer.fadingtextview
-

Annotation Type FadingTextView.TimeUnit

-
-
-
-
    -
  • -
    -
    -
    @Retention(value=SOURCE)
    -public static @interface FadingTextView.TimeUnit
    -
  • -
-
-
- - - - - - - diff --git a/docs/com/tomer/fadingtextview/FadingTextView.html b/docs/com/tomer/fadingtextview/FadingTextView.html deleted file mode 100644 index a113dd4..0000000 --- a/docs/com/tomer/fadingtextview/FadingTextView.html +++ /dev/null @@ -1,780 +0,0 @@ - - - - - -FadingTextView - - - - - - - - - - - - -
-
com.tomer.fadingtextview
-

Class FadingTextView

-
-
-
    -
  • java.lang.Object
  • -
  • -
      -
    • android.view.View
    • -
    • -
        -
      • android.widget.TextView
      • -
      • -
          -
        • android.support.v7.widget.AppCompatTextView
        • -
        • -
            -
          • com.tomer.fadingtextview.FadingTextView
          • -
          -
        • -
        -
      • -
      -
    • -
    -
  • -
-
-
    -
  • -
    -
    All Implemented Interfaces:
    -
    android.graphics.drawable.Drawable.Callback, android.support.v4.view.TintableBackgroundView, android.view.accessibility.AccessibilityEventSource, android.view.KeyEvent.Callback, android.view.ViewTreeObserver.OnPreDrawListener
    -
    -
    -
    -
    public class FadingTextView
    -extends android.support.v7.widget.AppCompatTextView
    -
    -
    Author:
    -
    Tomer Rosenfeld aka rosenpin - Created by rosenpin on 12/8/16.
    -
    -
  • -
-
-
-
    -
  • - -
      -
    • - - -

      Nested Class Summary

      - - - - - - - - - - -
      Nested Classes 
      Modifier and TypeClass and Description
      static interface FadingTextView.TimeUnit 
      -
        -
      • - - -

        Nested classes/interfaces inherited from class android.widget.TextView

        -android.widget.TextView.BufferType, android.widget.TextView.OnEditorActionListener, android.widget.TextView.SavedState
      • -
      -
        -
      • - - -

        Nested classes/interfaces inherited from class android.view.View

        -android.view.View.AccessibilityDelegate, android.view.View.BaseSavedState, android.view.View.DragShadowBuilder, android.view.View.MeasureSpec, android.view.View.OnApplyWindowInsetsListener, android.view.View.OnAttachStateChangeListener, android.view.View.OnCapturedPointerListener, android.view.View.OnClickListener, android.view.View.OnContextClickListener, android.view.View.OnCreateContextMenuListener, android.view.View.OnDragListener, android.view.View.OnFocusChangeListener, android.view.View.OnGenericMotionListener, android.view.View.OnHoverListener, android.view.View.OnKeyListener, android.view.View.OnLayoutChangeListener, android.view.View.OnLongClickListener, android.view.View.OnScrollChangeListener, android.view.View.OnSystemUiVisibilityChangeListener, android.view.View.OnTouchListener
      • -
      -
    • -
    - -
      -
    • - - -

      Field Summary

      - - - - - - - - - - - - - - - - - - - - - - -
      Fields 
      Modifier and TypeField and Description
      static intDEFAULT_TIME_OUT 
      static intMILLISECONDS 
      static intMINUTES 
      static intSECONDS 
      -
        -
      • - - -

        Fields inherited from class android.widget.TextView

        -AUTO_SIZE_TEXT_TYPE_NONE, AUTO_SIZE_TEXT_TYPE_UNIFORM
      • -
      -
        -
      • - - -

        Fields inherited from class android.view.View

        -ACCESSIBILITY_LIVE_REGION_ASSERTIVE, ACCESSIBILITY_LIVE_REGION_NONE, ACCESSIBILITY_LIVE_REGION_POLITE, ALPHA, AUTOFILL_FLAG_INCLUDE_NOT_IMPORTANT_VIEWS, AUTOFILL_HINT_CREDIT_CARD_EXPIRATION_DATE, AUTOFILL_HINT_CREDIT_CARD_EXPIRATION_DAY, AUTOFILL_HINT_CREDIT_CARD_EXPIRATION_MONTH, AUTOFILL_HINT_CREDIT_CARD_EXPIRATION_YEAR, AUTOFILL_HINT_CREDIT_CARD_NUMBER, AUTOFILL_HINT_CREDIT_CARD_SECURITY_CODE, AUTOFILL_HINT_EMAIL_ADDRESS, AUTOFILL_HINT_NAME, AUTOFILL_HINT_PASSWORD, AUTOFILL_HINT_PHONE, AUTOFILL_HINT_POSTAL_ADDRESS, AUTOFILL_HINT_POSTAL_CODE, AUTOFILL_HINT_USERNAME, AUTOFILL_TYPE_DATE, AUTOFILL_TYPE_LIST, AUTOFILL_TYPE_NONE, AUTOFILL_TYPE_TEXT, AUTOFILL_TYPE_TOGGLE, DRAG_FLAG_GLOBAL, DRAG_FLAG_GLOBAL_PERSISTABLE_URI_PERMISSION, DRAG_FLAG_GLOBAL_PREFIX_URI_PERMISSION, DRAG_FLAG_GLOBAL_URI_READ, DRAG_FLAG_GLOBAL_URI_WRITE, DRAG_FLAG_OPAQUE, DRAWING_CACHE_QUALITY_AUTO, DRAWING_CACHE_QUALITY_HIGH, DRAWING_CACHE_QUALITY_LOW, EMPTY_STATE_SET, ENABLED_FOCUSED_SELECTED_STATE_SET, ENABLED_FOCUSED_SELECTED_WINDOW_FOCUSED_STATE_SET, ENABLED_FOCUSED_STATE_SET, ENABLED_FOCUSED_WINDOW_FOCUSED_STATE_SET, ENABLED_SELECTED_STATE_SET, ENABLED_SELECTED_WINDOW_FOCUSED_STATE_SET, ENABLED_STATE_SET, ENABLED_WINDOW_FOCUSED_STATE_SET, FIND_VIEWS_WITH_CONTENT_DESCRIPTION, FIND_VIEWS_WITH_TEXT, FOCUS_BACKWARD, FOCUS_DOWN, FOCUS_FORWARD, FOCUS_LEFT, FOCUS_RIGHT, FOCUS_UP, FOCUSABLE, FOCUSABLE_AUTO, FOCUSABLES_ALL, FOCUSABLES_TOUCH_MODE, FOCUSED_SELECTED_STATE_SET, FOCUSED_SELECTED_WINDOW_FOCUSED_STATE_SET, FOCUSED_STATE_SET, FOCUSED_WINDOW_FOCUSED_STATE_SET, GONE, HAPTIC_FEEDBACK_ENABLED, IMPORTANT_FOR_ACCESSIBILITY_AUTO, IMPORTANT_FOR_ACCESSIBILITY_NO, IMPORTANT_FOR_ACCESSIBILITY_NO_HIDE_DESCENDANTS, IMPORTANT_FOR_ACCESSIBILITY_YES, IMPORTANT_FOR_AUTOFILL_AUTO, IMPORTANT_FOR_AUTOFILL_NO, IMPORTANT_FOR_AUTOFILL_NO_EXCLUDE_DESCENDANTS, IMPORTANT_FOR_AUTOFILL_YES, IMPORTANT_FOR_AUTOFILL_YES_EXCLUDE_DESCENDANTS, INVISIBLE, KEEP_SCREEN_ON, LAYER_TYPE_HARDWARE, LAYER_TYPE_NONE, LAYER_TYPE_SOFTWARE, LAYOUT_DIRECTION_INHERIT, LAYOUT_DIRECTION_LOCALE, LAYOUT_DIRECTION_LTR, LAYOUT_DIRECTION_RTL, MEASURED_HEIGHT_STATE_SHIFT, MEASURED_SIZE_MASK, MEASURED_STATE_MASK, MEASURED_STATE_TOO_SMALL, NO_ID, NOT_FOCUSABLE, OVER_SCROLL_ALWAYS, OVER_SCROLL_IF_CONTENT_SCROLLS, OVER_SCROLL_NEVER, PRESSED_ENABLED_FOCUSED_SELECTED_STATE_SET, PRESSED_ENABLED_FOCUSED_SELECTED_WINDOW_FOCUSED_STATE_SET, PRESSED_ENABLED_FOCUSED_STATE_SET, PRESSED_ENABLED_FOCUSED_WINDOW_FOCUSED_STATE_SET, PRESSED_ENABLED_SELECTED_STATE_SET, PRESSED_ENABLED_SELECTED_WINDOW_FOCUSED_STATE_SET, PRESSED_ENABLED_STATE_SET, PRESSED_ENABLED_WINDOW_FOCUSED_STATE_SET, PRESSED_FOCUSED_SELECTED_STATE_SET, PRESSED_FOCUSED_SELECTED_WINDOW_FOCUSED_STATE_SET, PRESSED_FOCUSED_STATE_SET, PRESSED_FOCUSED_WINDOW_FOCUSED_STATE_SET, PRESSED_SELECTED_STATE_SET, PRESSED_SELECTED_WINDOW_FOCUSED_STATE_SET, PRESSED_STATE_SET, PRESSED_WINDOW_FOCUSED_STATE_SET, ROTATION, ROTATION_X, ROTATION_Y, SCALE_X, SCALE_Y, SCREEN_STATE_OFF, SCREEN_STATE_ON, SCROLL_AXIS_HORIZONTAL, SCROLL_AXIS_NONE, SCROLL_AXIS_VERTICAL, SCROLL_INDICATOR_BOTTOM, SCROLL_INDICATOR_END, SCROLL_INDICATOR_LEFT, SCROLL_INDICATOR_RIGHT, SCROLL_INDICATOR_START, SCROLL_INDICATOR_TOP, SCROLLBAR_POSITION_DEFAULT, SCROLLBAR_POSITION_LEFT, SCROLLBAR_POSITION_RIGHT, SCROLLBARS_INSIDE_INSET, SCROLLBARS_INSIDE_OVERLAY, SCROLLBARS_OUTSIDE_INSET, SCROLLBARS_OUTSIDE_OVERLAY, SELECTED_STATE_SET, SELECTED_WINDOW_FOCUSED_STATE_SET, SOUND_EFFECTS_ENABLED, STATUS_BAR_HIDDEN, STATUS_BAR_VISIBLE, SYSTEM_UI_FLAG_FULLSCREEN, SYSTEM_UI_FLAG_HIDE_NAVIGATION, SYSTEM_UI_FLAG_IMMERSIVE, SYSTEM_UI_FLAG_IMMERSIVE_STICKY, SYSTEM_UI_FLAG_LAYOUT_FULLSCREEN, SYSTEM_UI_FLAG_LAYOUT_HIDE_NAVIGATION, SYSTEM_UI_FLAG_LAYOUT_STABLE, SYSTEM_UI_FLAG_LIGHT_NAVIGATION_BAR, SYSTEM_UI_FLAG_LIGHT_STATUS_BAR, SYSTEM_UI_FLAG_LOW_PROFILE, SYSTEM_UI_FLAG_VISIBLE, SYSTEM_UI_LAYOUT_FLAGS, TEXT_ALIGNMENT_CENTER, TEXT_ALIGNMENT_GRAVITY, TEXT_ALIGNMENT_INHERIT, TEXT_ALIGNMENT_TEXT_END, TEXT_ALIGNMENT_TEXT_START, TEXT_ALIGNMENT_VIEW_END, TEXT_ALIGNMENT_VIEW_START, TEXT_DIRECTION_ANY_RTL, TEXT_DIRECTION_FIRST_STRONG, TEXT_DIRECTION_FIRST_STRONG_LTR, TEXT_DIRECTION_FIRST_STRONG_RTL, TEXT_DIRECTION_INHERIT, TEXT_DIRECTION_LOCALE, TEXT_DIRECTION_LTR, TEXT_DIRECTION_RTL, TRANSLATION_X, TRANSLATION_Y, TRANSLATION_Z, VIEW_LOG_TAG, VISIBLE, WINDOW_FOCUSED_STATE_SET, X, Y, Z
      • -
      -
    • -
    - -
      -
    • - - -

      Constructor Summary

      - - - - - - - - - - - - - - - - - -
      Constructors 
      Constructor and Description
      FadingTextView(android.content.Context context) 
      FadingTextView(android.content.Context context, - android.util.AttributeSet attrs) 
      FadingTextView(android.content.Context context, - android.util.AttributeSet attrs, - int defStyleAttr) 
      FadingTextView(android.content.Context context, - android.util.AttributeSet attrs, - int defStyleAttr, - int defStyleRes) 
      -
    • -
    - -
      -
    • - - -

      Method Summary

      - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
      All Methods Instance Methods Concrete Methods Deprecated Methods 
      Modifier and TypeMethod and Description
      voidforceRefresh() -
      This method should only be used to forcefully apply timeout changes - It will dismiss the currently queued animation change and start a new animation
      -
      java.lang.CharSequence[]getTexts() -
      Get the list of texts
      -
      protected voidonAttachedToWindow() 
      protected voidonDetachedFromWindow() 
      voidpause() -
      Pausing the animation - Should only be used if you notice onDetachedFromWindow() is not being executed as expected
      -
      voidrestart() -
      Restarting the animation - Only use this to restart the animation after stopping it using stop()
      -
      voidresume() -
      Resuming the animation - Should only be used if you notice onAttachedToWindow() ()} is not being executed as expected
      -
      voidsetTexts(int texts) -
      Sets the texts to be shuffled using a string array resource
      -
      voidsetTexts(java.lang.String[] texts) -
      Sets the texts to be shuffled using a string array
      -
      voidsetTimeout(double timeout, - int timeUnit) - -
      voidsetTimeout(int timeout) - -
      voidsetTimeout(long timeout, - java.util.concurrent.TimeUnit timeUnit) 
      protected voidstartAnimation() -
      start the animation
      -
      voidstartAnimation(android.view.animation.Animation animation) -
      Start the specified animation now if should
      -
      voidstop() -
      Stopping the animation - Unlike the pause function, the stop method will permanently stop the animation until the view is restarted
      -
      -
        -
      • - - -

        Methods inherited from class android.support.v7.widget.AppCompatTextView

        -drawableStateChanged, getSupportBackgroundTintList, getSupportBackgroundTintMode, setBackgroundDrawable, setBackgroundResource, setSupportBackgroundTintList, setSupportBackgroundTintMode, setTextAppearance
      • -
      -
        -
      • - - -

        Methods inherited from class android.widget.TextView

        -addExtraDataToAccessibilityNodeInfo, addTextChangedListener, append, append, autofill, beginBatchEdit, bringPointIntoView, cancelLongPress, clearComposingText, computeHorizontalScrollRange, computeScroll, computeVerticalScrollExtent, computeVerticalScrollRange, debug, didTouchFocusSelect, drawableHotspotChanged, endBatchEdit, extractText, findViewsWithText, getAccessibilityClassName, getAutofillType, getAutofillValue, getAutoLinkMask, getAutoSizeMaxTextSize, getAutoSizeMinTextSize, getAutoSizeStepGranularity, getAutoSizeTextAvailableSizes, getAutoSizeTextType, getBaseline, getBottomPaddingOffset, getBreakStrategy, getCompoundDrawablePadding, getCompoundDrawables, getCompoundDrawablesRelative, getCompoundDrawableTintList, getCompoundDrawableTintMode, getCompoundPaddingBottom, getCompoundPaddingEnd, getCompoundPaddingLeft, getCompoundPaddingRight, getCompoundPaddingStart, getCompoundPaddingTop, getCurrentHintTextColor, getCurrentTextColor, getCustomInsertionActionModeCallback, getCustomSelectionActionModeCallback, getDefaultEditable, getDefaultMovementMethod, getEditableText, getEllipsize, getError, getExtendedPaddingBottom, getExtendedPaddingTop, getFilters, getFocusedRect, getFontFeatureSettings, getFontVariationSettings, getFreezesText, getGravity, getHighlightColor, getHint, getHintTextColors, getHyphenationFrequency, getImeActionId, getImeActionLabel, getImeHintLocales, getImeOptions, getIncludeFontPadding, getInputExtras, getInputType, getJustificationMode, getKeyListener, getLayout, getLeftFadingEdgeStrength, getLeftPaddingOffset, getLetterSpacing, getLineBounds, getLineCount, getLineHeight, getLineSpacingExtra, getLineSpacingMultiplier, getLinksClickable, getLinkTextColors, getMarqueeRepeatLimit, getMaxEms, getMaxHeight, getMaxLines, getMaxWidth, getMinEms, getMinHeight, getMinLines, getMinWidth, getMovementMethod, getOffsetForPosition, getPaint, getPaintFlags, getPrivateImeOptions, getRightFadingEdgeStrength, getRightPaddingOffset, getSelectionEnd, getSelectionStart, getShadowColor, getShadowDx, getShadowDy, getShadowRadius, getShowSoftInputOnFocus, getText, getTextClassifier, getTextColors, getTextLocale, getTextLocales, getTextScaleX, getTextSize, getTopPaddingOffset, getTotalPaddingBottom, getTotalPaddingEnd, getTotalPaddingLeft, getTotalPaddingRight, getTotalPaddingStart, getTotalPaddingTop, getTransformationMethod, getTypeface, getUrls, hasOverlappingRendering, hasSelection, invalidateDrawable, isCursorVisible, isInputMethodTarget, isPaddingOffsetRequired, isSuggestionsEnabled, isTextSelectable, jumpDrawablesToCurrentState, length, moveCursorToVisibleOffset, onBeginBatchEdit, onCheckIsTextEditor, onCommitCompletion, onCommitCorrection, onConfigurationChanged, onCreateContextMenu, onCreateDrawableState, onCreateInputConnection, onDragEvent, onDraw, onEditorAction, onEndBatchEdit, onFocusChanged, onGenericMotionEvent, onKeyDown, onKeyMultiple, onKeyPreIme, onKeyShortcut, onKeyUp, onLayout, onMeasure, onPreDraw, onPrivateIMECommand, onProvideAutofillStructure, onProvideStructure, onResolvePointerIcon, onRestoreInstanceState, onRtlPropertiesChanged, onSaveInstanceState, onScreenStateChanged, onScrollChanged, onSelectionChanged, onTextChanged, onTextContextMenuItem, onTouchEvent, onTrackballEvent, onVisibilityChanged, onWindowFocusChanged, performLongClick, removeTextChangedListener, setAllCaps, setAutoLinkMask, setAutoSizeTextTypeUniformWithConfiguration, setAutoSizeTextTypeUniformWithPresetSizes, setAutoSizeTextTypeWithDefaults, setBreakStrategy, setCompoundDrawablePadding, setCompoundDrawables, setCompoundDrawablesRelative, setCompoundDrawablesRelativeWithIntrinsicBounds, setCompoundDrawablesRelativeWithIntrinsicBounds, setCompoundDrawablesWithIntrinsicBounds, setCompoundDrawablesWithIntrinsicBounds, setCompoundDrawableTintList, setCompoundDrawableTintMode, setCursorVisible, setCustomInsertionActionModeCallback, setCustomSelectionActionModeCallback, setEditableFactory, setElegantTextHeight, setEllipsize, setEms, setEnabled, setError, setError, setExtractedText, setFilters, setFontFeatureSettings, setFontVariationSettings, setFrame, setFreezesText, setGravity, setHeight, setHighlightColor, setHint, setHint, setHintTextColor, setHintTextColor, setHorizontallyScrolling, setHyphenationFrequency, setImeActionLabel, setImeHintLocales, setImeOptions, setIncludeFontPadding, setInputExtras, setInputType, setJustificationMode, setKeyListener, setLetterSpacing, setLines, setLineSpacing, setLinksClickable, setLinkTextColor, setLinkTextColor, setMarqueeRepeatLimit, setMaxEms, setMaxHeight, setMaxLines, setMaxWidth, setMinEms, setMinHeight, setMinLines, setMinWidth, setMovementMethod, setOnEditorActionListener, setPadding, setPaddingRelative, setPaintFlags, setPrivateImeOptions, setRawInputType, setScroller, setSelectAllOnFocus, setSelected, setShadowLayer, setShowSoftInputOnFocus, setSingleLine, setSingleLine, setSpannableFactory, setText, setText, setText, setText, setText, setTextAppearance, setTextClassifier, setTextColor, setTextColor, setTextIsSelectable, setTextKeepState, setTextKeepState, setTextLocale, setTextLocales, setTextScaleX, setTextSize, setTextSize, setTransformationMethod, setTypeface, setTypeface, setWidth, showContextMenu, showContextMenu, verifyDrawable
      • -
      -
        -
      • - - -

        Methods inherited from class android.view.View

        -addChildrenForAccessibility, addFocusables, addFocusables, addKeyboardNavigationClusters, addOnAttachStateChangeListener, addOnLayoutChangeListener, addTouchables, animate, announceForAccessibility, autofill, awakenScrollBars, awakenScrollBars, awakenScrollBars, bringToFront, buildDrawingCache, buildDrawingCache, buildLayer, callOnClick, cancelDragAndDrop, cancelPendingInputEvents, canResolveLayoutDirection, canResolveTextAlignment, canResolveTextDirection, canScrollHorizontally, canScrollVertically, checkInputConnectionProxy, clearAnimation, clearFocus, combineMeasuredStates, computeHorizontalScrollExtent, computeHorizontalScrollOffset, computeSystemWindowInsets, computeVerticalScrollOffset, createAccessibilityNodeInfo, createContextMenu, destroyDrawingCache, dispatchApplyWindowInsets, dispatchCapturedPointerEvent, dispatchConfigurationChanged, dispatchDisplayHint, dispatchDragEvent, dispatchDraw, dispatchDrawableHotspotChanged, dispatchFinishTemporaryDetach, dispatchGenericFocusedEvent, dispatchGenericMotionEvent, dispatchGenericPointerEvent, dispatchHoverEvent, dispatchKeyEvent, dispatchKeyEventPreIme, dispatchKeyShortcutEvent, dispatchNestedFling, dispatchNestedPreFling, dispatchNestedPrePerformAccessibilityAction, dispatchNestedPreScroll, dispatchNestedScroll, dispatchPointerCaptureChanged, dispatchPopulateAccessibilityEvent, dispatchProvideAutofillStructure, dispatchProvideStructure, dispatchRestoreInstanceState, dispatchSaveInstanceState, dispatchSetActivated, dispatchSetPressed, dispatchSetSelected, dispatchStartTemporaryDetach, dispatchSystemUiVisibilityChanged, dispatchTouchEvent, dispatchTrackballEvent, dispatchUnhandledMove, dispatchVisibilityChanged, dispatchWindowFocusChanged, dispatchWindowSystemUiVisiblityChanged, dispatchWindowVisibilityChanged, draw, findFocus, findViewById, findViewWithTag, fitSystemWindows, focusSearch, forceHasOverlappingRendering, forceLayout, generateViewId, getAccessibilityLiveRegion, getAccessibilityNodeProvider, getAccessibilityTraversalAfter, getAccessibilityTraversalBefore, getAlpha, getAnimation, getApplicationWindowToken, getAutofillHints, getAutofillId, getBackground, getBackgroundTintList, getBackgroundTintMode, getBottom, getBottomFadingEdgeStrength, getCameraDistance, getClipBounds, getClipBounds, getClipToOutline, getContentDescription, getContext, getContextMenuInfo, getDefaultFocusHighlightEnabled, getDefaultSize, getDisplay, getDrawableState, getDrawingCache, getDrawingCache, getDrawingCacheBackgroundColor, getDrawingCacheQuality, getDrawingRect, getDrawingTime, getElevation, getFilterTouchesWhenObscured, getFitsSystemWindows, getFocusable, getFocusables, getForeground, getForegroundGravity, getForegroundTintList, getForegroundTintMode, getGlobalVisibleRect, getGlobalVisibleRect, getHandler, getHasOverlappingRendering, getHeight, getHitRect, getHorizontalFadingEdgeLength, getHorizontalScrollbarHeight, getId, getImportantForAccessibility, getImportantForAutofill, getKeepScreenOn, getKeyDispatcherState, getLabelFor, getLayerType, getLayoutDirection, getLayoutParams, getLeft, getLocalVisibleRect, getLocationInWindow, getLocationOnScreen, getMatrix, getMeasuredHeight, getMeasuredHeightAndState, getMeasuredState, getMeasuredWidth, getMeasuredWidthAndState, getMinimumHeight, getMinimumWidth, getNextClusterForwardId, getNextFocusDownId, getNextFocusForwardId, getNextFocusLeftId, getNextFocusRightId, getNextFocusUpId, getOnFocusChangeListener, getOutlineProvider, getOverlay, getOverScrollMode, getPaddingBottom, getPaddingEnd, getPaddingLeft, getPaddingRight, getPaddingStart, getPaddingTop, getParent, getParentForAccessibility, getPivotX, getPivotY, getPointerIcon, getResources, getRevealOnFocusHint, getRight, getRootView, getRootWindowInsets, getRotation, getRotationX, getRotationY, getScaleX, getScaleY, getScrollBarDefaultDelayBeforeFade, getScrollBarFadeDuration, getScrollBarSize, getScrollBarStyle, getScrollIndicators, getScrollX, getScrollY, getSolidColor, getStateListAnimator, getSuggestedMinimumHeight, getSuggestedMinimumWidth, getSystemUiVisibility, getTag, getTag, getTextAlignment, getTextDirection, getTooltipText, getTop, getTopFadingEdgeStrength, getTouchables, getTouchDelegate, getTransitionName, getTranslationX, getTranslationY, getTranslationZ, getVerticalFadingEdgeLength, getVerticalScrollbarPosition, getVerticalScrollbarWidth, getViewTreeObserver, getVisibility, getWidth, getWindowAttachCount, getWindowId, getWindowSystemUiVisibility, getWindowToken, getWindowVisibility, getWindowVisibleDisplayFrame, getX, getY, getZ, hasExplicitFocusable, hasFocus, hasFocusable, hasNestedScrollingParent, hasOnClickListeners, hasPointerCapture, hasTransientState, hasWindowFocus, inflate, invalidate, invalidate, invalidate, invalidateOutline, isAccessibilityFocused, isActivated, isAttachedToWindow, isClickable, isContextClickable, isDirty, isDrawingCacheEnabled, isDuplicateParentStateEnabled, isEnabled, isFocusable, isFocusableInTouchMode, isFocused, isFocusedByDefault, isHapticFeedbackEnabled, isHardwareAccelerated, isHorizontalFadingEdgeEnabled, isHorizontalScrollBarEnabled, isHovered, isImportantForAccessibility, isImportantForAutofill, isInEditMode, isInLayout, isInTouchMode, isKeyboardNavigationCluster, isLaidOut, isLayoutDirectionResolved, isLayoutRequested, isLongClickable, isNestedScrollingEnabled, isOpaque, isPaddingRelative, isPressed, isSaveEnabled, isSaveFromParentEnabled, isScrollbarFadingEnabled, isScrollContainer, isSelected, isShown, isSoundEffectsEnabled, isTemporarilyDetached, isTextAlignmentResolved, isTextDirectionResolved, isVerticalFadingEdgeEnabled, isVerticalScrollBarEnabled, keyboardNavigationClusterSearch, layout, measure, mergeDrawableStates, offsetLeftAndRight, offsetTopAndBottom, onAnimationEnd, onAnimationStart, onApplyWindowInsets, onCancelPendingInputEvents, onCapturedPointerEvent, onDisplayHint, onDrawForeground, onDrawScrollBars, onFilterTouchEventForSecurity, onFinishInflate, onFinishTemporaryDetach, onHoverChanged, onHoverEvent, onInitializeAccessibilityEvent, onInitializeAccessibilityNodeInfo, onKeyLongPress, onOverScrolled, onPointerCaptureChange, onPopulateAccessibilityEvent, onProvideAutofillVirtualStructure, onProvideVirtualStructure, onSetAlpha, onSizeChanged, onStartTemporaryDetach, onVisibilityAggregated, onWindowSystemUiVisibilityChanged, onWindowVisibilityChanged, overScrollBy, performAccessibilityAction, performClick, performContextClick, performContextClick, performHapticFeedback, performHapticFeedback, performLongClick, playSoundEffect, post, postDelayed, postInvalidate, postInvalidate, postInvalidateDelayed, postInvalidateDelayed, postInvalidateOnAnimation, postInvalidateOnAnimation, postOnAnimation, postOnAnimationDelayed, refreshDrawableState, releasePointerCapture, removeCallbacks, removeOnAttachStateChangeListener, removeOnLayoutChangeListener, requestApplyInsets, requestFitSystemWindows, requestFocus, requestFocus, requestFocus, requestFocusFromTouch, requestLayout, requestPointerCapture, requestRectangleOnScreen, requestRectangleOnScreen, requestUnbufferedDispatch, resolveSize, resolveSizeAndState, restoreDefaultFocus, restoreHierarchyState, saveHierarchyState, scheduleDrawable, scrollBy, scrollTo, sendAccessibilityEvent, sendAccessibilityEventUnchecked, setAccessibilityDelegate, setAccessibilityLiveRegion, setAccessibilityTraversalAfter, setAccessibilityTraversalBefore, setActivated, setAlpha, setAnimation, setAutofillHints, setBackground, setBackgroundColor, setBackgroundTintList, setBackgroundTintMode, setBottom, setCameraDistance, setClickable, setClipBounds, setClipToOutline, setContentDescription, setContextClickable, setDefaultFocusHighlightEnabled, setDrawingCacheBackgroundColor, setDrawingCacheEnabled, setDrawingCacheQuality, setDuplicateParentStateEnabled, setElevation, setFadingEdgeLength, setFilterTouchesWhenObscured, setFitsSystemWindows, setFocusable, setFocusable, setFocusableInTouchMode, setFocusedByDefault, setForeground, setForegroundGravity, setForegroundTintList, setForegroundTintMode, setHapticFeedbackEnabled, setHasTransientState, setHorizontalFadingEdgeEnabled, setHorizontalScrollBarEnabled, setHovered, setId, setImportantForAccessibility, setImportantForAutofill, setKeepScreenOn, setKeyboardNavigationCluster, setLabelFor, setLayerPaint, setLayerType, setLayoutDirection, setLayoutParams, setLeft, setLongClickable, setMeasuredDimension, setMinimumHeight, setMinimumWidth, setNestedScrollingEnabled, setNextClusterForwardId, setNextFocusDownId, setNextFocusForwardId, setNextFocusLeftId, setNextFocusRightId, setNextFocusUpId, setOnApplyWindowInsetsListener, setOnCapturedPointerListener, setOnClickListener, setOnContextClickListener, setOnCreateContextMenuListener, setOnDragListener, setOnFocusChangeListener, setOnGenericMotionListener, setOnHoverListener, setOnKeyListener, setOnLongClickListener, setOnScrollChangeListener, setOnSystemUiVisibilityChangeListener, setOnTouchListener, setOutlineProvider, setOverScrollMode, setPivotX, setPivotY, setPointerIcon, setPressed, setRevealOnFocusHint, setRight, setRotation, setRotationX, setRotationY, setSaveEnabled, setSaveFromParentEnabled, setScaleX, setScaleY, setScrollBarDefaultDelayBeforeFade, setScrollBarFadeDuration, setScrollbarFadingEnabled, setScrollBarSize, setScrollBarStyle, setScrollContainer, setScrollIndicators, setScrollIndicators, setScrollX, setScrollY, setSoundEffectsEnabled, setStateListAnimator, setSystemUiVisibility, setTag, setTag, setTextAlignment, setTextDirection, setTooltipText, setTop, setTouchDelegate, setTransitionName, setTranslationX, setTranslationY, setTranslationZ, setVerticalFadingEdgeEnabled, setVerticalScrollBarEnabled, setVerticalScrollbarPosition, setVisibility, setWillNotCacheDrawing, setWillNotDraw, setX, setY, setZ, startActionMode, startActionMode, startDrag, startDragAndDrop, startNestedScroll, stopNestedScroll, toString, unscheduleDrawable, unscheduleDrawable, updateDragShadow, willNotCacheDrawing, willNotDraw
      • -
      -
        -
      • - - -

        Methods inherited from class java.lang.Object

        -clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait
      • -
      -
    • -
    -
  • -
-
-
-
    -
  • - - - -
      -
    • - - -

      Constructor Detail

      - - - -
        -
      • -

        FadingTextView

        -
        public FadingTextView(android.content.Context context)
        -
      • -
      - - - -
        -
      • -

        FadingTextView

        -
        public FadingTextView(android.content.Context context,
        -                      android.util.AttributeSet attrs)
        -
      • -
      - - - -
        -
      • -

        FadingTextView

        -
        public FadingTextView(android.content.Context context,
        -                      android.util.AttributeSet attrs,
        -                      int defStyleAttr)
        -
      • -
      - - - -
        -
      • -

        FadingTextView

        -
        public FadingTextView(android.content.Context context,
        -                      android.util.AttributeSet attrs,
        -                      int defStyleAttr,
        -                      int defStyleRes)
        -
      • -
      -
    • -
    - -
      -
    • - - -

      Method Detail

      - - - -
        -
      • -

        resume

        -
        public void resume()
        -
        Resuming the animation - Should only be used if you notice onAttachedToWindow() ()} is not being executed as expected
        -
      • -
      - - - -
        -
      • -

        pause

        -
        public void pause()
        -
        Pausing the animation - Should only be used if you notice onDetachedFromWindow() is not being executed as expected
        -
      • -
      - - - -
        -
      • -

        stop

        -
        public void stop()
        -
        Stopping the animation - Unlike the pause function, the stop method will permanently stop the animation until the view is restarted
        -
      • -
      - - - -
        -
      • -

        restart

        -
        public void restart()
        -
        Restarting the animation - Only use this to restart the animation after stopping it using stop()
        -
      • -
      - - - -
        -
      • -

        onDetachedFromWindow

        -
        protected void onDetachedFromWindow()
        -
        -
        Overrides:
        -
        onDetachedFromWindow in class android.view.View
        -
        -
      • -
      - - - -
        -
      • -

        onAttachedToWindow

        -
        protected void onAttachedToWindow()
        -
        -
        Overrides:
        -
        onAttachedToWindow in class android.widget.TextView
        -
        -
      • -
      - - - -
        -
      • -

        getTexts

        -
        public java.lang.CharSequence[] getTexts()
        -
        Get the list of texts
        -
        -
        Returns:
        -
        the texts array
        -
        -
      • -
      - - - -
        -
      • -

        setTexts

        -
        public void setTexts(@NonNull
        -                     java.lang.String[] texts)
        -
        Sets the texts to be shuffled using a string array
        -
        -
        Parameters:
        -
        texts - The string array to use for the texts
        -
        -
      • -
      - - - -
        -
      • -

        setTexts

        -
        public void setTexts(@ArrayRes
        -                     int texts)
        -
        Sets the texts to be shuffled using a string array resource
        -
        -
        Parameters:
        -
        texts - The string array resource to use for the texts
        -
        -
      • -
      - - - -
        -
      • -

        forceRefresh

        -
        public void forceRefresh()
        -
        This method should only be used to forcefully apply timeout changes - It will dismiss the currently queued animation change and start a new animation
        -
      • -
      - - - -
        -
      • -

        setTimeout

        -
        @Deprecated
        -public void setTimeout(int timeout)
        - -
        Sets the length of time to wait between text changes in milliseconds
        -
        -
        Parameters:
        -
        timeout - The length of time to wait between text change in milliseconds
        -
        -
      • -
      - - - - - - - -
        -
      • -

        setTimeout

        -
        public void setTimeout(long timeout,
        -                       java.util.concurrent.TimeUnit timeUnit)
        -
      • -
      - - - -
        -
      • -

        startAnimation

        -
        public void startAnimation(android.view.animation.Animation animation)
        -
        Start the specified animation now if should
        -
        -
        Overrides:
        -
        startAnimation in class android.view.View
        -
        Parameters:
        -
        animation - the animation to start now
        -
        -
      • -
      - - - -
        -
      • -

        startAnimation

        -
        protected void startAnimation()
        -
        start the animation
        -
      • -
      -
    • -
    -
  • -
-
-
- - - - - - - diff --git a/docs/com/tomer/fadingtextview/R.anim.html b/docs/com/tomer/fadingtextview/R.anim.html deleted file mode 100644 index cf0c728..0000000 --- a/docs/com/tomer/fadingtextview/R.anim.html +++ /dev/null @@ -1,420 +0,0 @@ - - - - - -R.anim - - - - - - - - - - - - -
-
com.tomer.fadingtextview
-

Class R.anim

-
-
-
    -
  • java.lang.Object
  • -
  • -
      -
    • com.tomer.fadingtextview.R.anim
    • -
    -
  • -
-
-
    -
  • -
    -
    Enclosing class:
    -
    R
    -
    -
    -
    -
    public static final class R.anim
    -extends java.lang.Object
    -
  • -
-
-
- -
-
-
    -
  • - -
      -
    • - - -

      Field Detail

      - - - -
        -
      • -

        abc_fade_in

        -
        public static int abc_fade_in
        -
      • -
      - - - -
        -
      • -

        abc_fade_out

        -
        public static int abc_fade_out
        -
      • -
      - - - -
        -
      • -

        abc_grow_fade_in_from_bottom

        -
        public static int abc_grow_fade_in_from_bottom
        -
      • -
      - - - -
        -
      • -

        abc_popup_enter

        -
        public static int abc_popup_enter
        -
      • -
      - - - -
        -
      • -

        abc_popup_exit

        -
        public static int abc_popup_exit
        -
      • -
      - - - -
        -
      • -

        abc_shrink_fade_out_from_bottom

        -
        public static int abc_shrink_fade_out_from_bottom
        -
      • -
      - - - -
        -
      • -

        abc_slide_in_bottom

        -
        public static int abc_slide_in_bottom
        -
      • -
      - - - -
        -
      • -

        abc_slide_in_top

        -
        public static int abc_slide_in_top
        -
      • -
      - - - -
        -
      • -

        abc_slide_out_bottom

        -
        public static int abc_slide_out_bottom
        -
      • -
      - - - -
        -
      • -

        abc_slide_out_top

        -
        public static int abc_slide_out_top
        -
      • -
      - - - -
        -
      • -

        fadein

        -
        public static int fadein
        -
      • -
      - - - -
        -
      • -

        fadeout

        -
        public static int fadeout
        -
      • -
      -
    • -
    - -
      -
    • - - -

      Constructor Detail

      - - - -
        -
      • -

        anim

        -
        public anim()
        -
      • -
      -
    • -
    -
  • -
-
-
- - - - - - - diff --git a/docs/com/tomer/fadingtextview/R.attr.html b/docs/com/tomer/fadingtextview/R.attr.html deleted file mode 100644 index 34c483f..0000000 --- a/docs/com/tomer/fadingtextview/R.attr.html +++ /dev/null @@ -1,5005 +0,0 @@ - - - - - -R.attr - - - - - - - - - - - - -
-
com.tomer.fadingtextview
-

Class R.attr

-
-
-
    -
  • java.lang.Object
  • -
  • -
      -
    • com.tomer.fadingtextview.R.attr
    • -
    -
  • -
-
-
    -
  • -
    -
    Enclosing class:
    -
    R
    -
    -
    -
    -
    public static final class R.attr
    -extends java.lang.Object
    -
  • -
-
-
-
    -
  • - -
      -
    • - - -

      Field Summary

      - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
      Fields 
      Modifier and TypeField and Description
      static intactionBarDivider -
      Must be a reference to another resource, in the form "@[+][package:]type:name" -or to a theme attribute in the form "?[package:][type:]name".
      -
      static intactionBarItemBackground -
      Must be a reference to another resource, in the form "@[+][package:]type:name" -or to a theme attribute in the form "?[package:][type:]name".
      -
      static intactionBarPopupTheme -
      Must be a reference to another resource, in the form "@[+][package:]type:name" -or to a theme attribute in the form "?[package:][type:]name".
      -
      static intactionBarSize -
      May be a dimension value, which is a floating point number appended with a unit such as "14.5sp".
      -
      static intactionBarSplitStyle -
      Must be a reference to another resource, in the form "@[+][package:]type:name" -or to a theme attribute in the form "?[package:][type:]name".
      -
      static intactionBarStyle -
      Must be a reference to another resource, in the form "@[+][package:]type:name" -or to a theme attribute in the form "?[package:][type:]name".
      -
      static intactionBarTabBarStyle -
      Must be a reference to another resource, in the form "@[+][package:]type:name" -or to a theme attribute in the form "?[package:][type:]name".
      -
      static intactionBarTabStyle -
      Must be a reference to another resource, in the form "@[+][package:]type:name" -or to a theme attribute in the form "?[package:][type:]name".
      -
      static intactionBarTabTextStyle -
      Must be a reference to another resource, in the form "@[+][package:]type:name" -or to a theme attribute in the form "?[package:][type:]name".
      -
      static intactionBarTheme -
      Must be a reference to another resource, in the form "@[+][package:]type:name" -or to a theme attribute in the form "?[package:][type:]name".
      -
      static intactionBarWidgetTheme -
      Must be a reference to another resource, in the form "@[+][package:]type:name" -or to a theme attribute in the form "?[package:][type:]name".
      -
      static intactionButtonStyle -
      Must be a reference to another resource, in the form "@[+][package:]type:name" -or to a theme attribute in the form "?[package:][type:]name".
      -
      static intactionDropDownStyle -
      Must be a reference to another resource, in the form "@[+][package:]type:name" -or to a theme attribute in the form "?[package:][type:]name".
      -
      static intactionLayout -
      Must be a reference to another resource, in the form "@[+][package:]type:name" -or to a theme attribute in the form "?[package:][type:]name".
      -
      static intactionMenuTextAppearance -
      Must be a reference to another resource, in the form "@[+][package:]type:name" -or to a theme attribute in the form "?[package:][type:]name".
      -
      static intactionMenuTextColor -
      May be a reference to another resource, in the form "@[+][package:]type:name" -or to a theme attribute in the form "?[package:][type:]name".
      -
      static intactionModeBackground -
      Must be a reference to another resource, in the form "@[+][package:]type:name" -or to a theme attribute in the form "?[package:][type:]name".
      -
      static intactionModeCloseButtonStyle -
      Must be a reference to another resource, in the form "@[+][package:]type:name" -or to a theme attribute in the form "?[package:][type:]name".
      -
      static intactionModeCloseDrawable -
      Must be a reference to another resource, in the form "@[+][package:]type:name" -or to a theme attribute in the form "?[package:][type:]name".
      -
      static intactionModeCopyDrawable -
      Must be a reference to another resource, in the form "@[+][package:]type:name" -or to a theme attribute in the form "?[package:][type:]name".
      -
      static intactionModeCutDrawable -
      Must be a reference to another resource, in the form "@[+][package:]type:name" -or to a theme attribute in the form "?[package:][type:]name".
      -
      static intactionModeFindDrawable -
      Must be a reference to another resource, in the form "@[+][package:]type:name" -or to a theme attribute in the form "?[package:][type:]name".
      -
      static intactionModePasteDrawable -
      Must be a reference to another resource, in the form "@[+][package:]type:name" -or to a theme attribute in the form "?[package:][type:]name".
      -
      static intactionModePopupWindowStyle -
      Must be a reference to another resource, in the form "@[+][package:]type:name" -or to a theme attribute in the form "?[package:][type:]name".
      -
      static intactionModeSelectAllDrawable -
      Must be a reference to another resource, in the form "@[+][package:]type:name" -or to a theme attribute in the form "?[package:][type:]name".
      -
      static intactionModeShareDrawable -
      Must be a reference to another resource, in the form "@[+][package:]type:name" -or to a theme attribute in the form "?[package:][type:]name".
      -
      static intactionModeSplitBackground -
      Must be a reference to another resource, in the form "@[+][package:]type:name" -or to a theme attribute in the form "?[package:][type:]name".
      -
      static intactionModeStyle -
      Must be a reference to another resource, in the form "@[+][package:]type:name" -or to a theme attribute in the form "?[package:][type:]name".
      -
      static intactionModeWebSearchDrawable -
      Must be a reference to another resource, in the form "@[+][package:]type:name" -or to a theme attribute in the form "?[package:][type:]name".
      -
      static intactionOverflowButtonStyle -
      Must be a reference to another resource, in the form "@[+][package:]type:name" -or to a theme attribute in the form "?[package:][type:]name".
      -
      static intactionOverflowMenuStyle -
      Must be a reference to another resource, in the form "@[+][package:]type:name" -or to a theme attribute in the form "?[package:][type:]name".
      -
      static intactionProviderClass -
      Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character.
      -
      static intactionViewClass -
      Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character.
      -
      static intactivityChooserViewStyle -
      Must be a reference to another resource, in the form "@[+][package:]type:name" -or to a theme attribute in the form "?[package:][type:]name".
      -
      static intalertDialogButtonGroupStyle -
      Must be a reference to another resource, in the form "@[+][package:]type:name" -or to a theme attribute in the form "?[package:][type:]name".
      -
      static intalertDialogCenterButtons -
      Must be a boolean value, either "true" or "false".
      -
      static intalertDialogStyle -
      Must be a reference to another resource, in the form "@[+][package:]type:name" -or to a theme attribute in the form "?[package:][type:]name".
      -
      static intalertDialogTheme -
      Must be a reference to another resource, in the form "@[+][package:]type:name" -or to a theme attribute in the form "?[package:][type:]name".
      -
      static intallowStacking -
      Must be a boolean value, either "true" or "false".
      -
      static intalpha -
      Must be a floating point value, such as "1.2".
      -
      static intarrowHeadLength -
      Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp".
      -
      static intarrowShaftLength -
      Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp".
      -
      static intautoCompleteTextViewStyle -
      Must be a reference to another resource, in the form "@[+][package:]type:name" -or to a theme attribute in the form "?[package:][type:]name".
      -
      static intbackground -
      Must be a reference to another resource, in the form "@[+][package:]type:name" -or to a theme attribute in the form "?[package:][type:]name".
      -
      static intbackgroundSplit -
      May be a reference to another resource, in the form "@[+][package:]type:name" -or to a theme attribute in the form "?[package:][type:]name".
      -
      static intbackgroundStacked -
      May be a reference to another resource, in the form "@[+][package:]type:name" -or to a theme attribute in the form "?[package:][type:]name".
      -
      static intbackgroundTint -
      Must be a color value, in the form of "#rgb", "#argb", -"#rrggbb", or "#aarrggbb".
      -
      static intbackgroundTintMode -
      Must be one of the following constant values.
      -
      static intbarLength -
      Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp".
      -
      static intborderlessButtonStyle -
      Must be a reference to another resource, in the form "@[+][package:]type:name" -or to a theme attribute in the form "?[package:][type:]name".
      -
      static intbuttonBarButtonStyle -
      Must be a reference to another resource, in the form "@[+][package:]type:name" -or to a theme attribute in the form "?[package:][type:]name".
      -
      static intbuttonBarNegativeButtonStyle -
      Must be a reference to another resource, in the form "@[+][package:]type:name" -or to a theme attribute in the form "?[package:][type:]name".
      -
      static intbuttonBarNeutralButtonStyle -
      Must be a reference to another resource, in the form "@[+][package:]type:name" -or to a theme attribute in the form "?[package:][type:]name".
      -
      static intbuttonBarPositiveButtonStyle -
      Must be a reference to another resource, in the form "@[+][package:]type:name" -or to a theme attribute in the form "?[package:][type:]name".
      -
      static intbuttonBarStyle -
      Must be a reference to another resource, in the form "@[+][package:]type:name" -or to a theme attribute in the form "?[package:][type:]name".
      -
      static intbuttonGravity -
      Must be one or more (separated by '|') of the following constant values.
      -
      static intbuttonPanelSideLayout -
      Must be a reference to another resource, in the form "@[+][package:]type:name" -or to a theme attribute in the form "?[package:][type:]name".
      -
      static intbuttonStyle -
      Must be a reference to another resource, in the form "@[+][package:]type:name" -or to a theme attribute in the form "?[package:][type:]name".
      -
      static intbuttonStyleSmall -
      Must be a reference to another resource, in the form "@[+][package:]type:name" -or to a theme attribute in the form "?[package:][type:]name".
      -
      static intbuttonTint -
      Must be a color value, in the form of "#rgb", "#argb", -"#rrggbb", or "#aarrggbb".
      -
      static intbuttonTintMode -
      Must be one of the following constant values.
      -
      static intcheckboxStyle -
      Must be a reference to another resource, in the form "@[+][package:]type:name" -or to a theme attribute in the form "?[package:][type:]name".
      -
      static intcheckedTextViewStyle -
      Must be a reference to another resource, in the form "@[+][package:]type:name" -or to a theme attribute in the form "?[package:][type:]name".
      -
      static intcloseIcon -
      Must be a reference to another resource, in the form "@[+][package:]type:name" -or to a theme attribute in the form "?[package:][type:]name".
      -
      static intcloseItemLayout -
      Must be a reference to another resource, in the form "@[+][package:]type:name" -or to a theme attribute in the form "?[package:][type:]name".
      -
      static intcollapseContentDescription -
      Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character.
      -
      static intcollapseIcon -
      Must be a reference to another resource, in the form "@[+][package:]type:name" -or to a theme attribute in the form "?[package:][type:]name".
      -
      static intcolor -
      Must be a color value, in the form of "#rgb", "#argb", -"#rrggbb", or "#aarrggbb".
      -
      static intcolorAccent -
      Must be a color value, in the form of "#rgb", "#argb", -"#rrggbb", or "#aarrggbb".
      -
      static intcolorBackgroundFloating -
      Must be a color value, in the form of "#rgb", "#argb", -"#rrggbb", or "#aarrggbb".
      -
      static intcolorButtonNormal -
      Must be a color value, in the form of "#rgb", "#argb", -"#rrggbb", or "#aarrggbb".
      -
      static intcolorControlActivated -
      Must be a color value, in the form of "#rgb", "#argb", -"#rrggbb", or "#aarrggbb".
      -
      static intcolorControlHighlight -
      Must be a color value, in the form of "#rgb", "#argb", -"#rrggbb", or "#aarrggbb".
      -
      static intcolorControlNormal -
      Must be a color value, in the form of "#rgb", "#argb", -"#rrggbb", or "#aarrggbb".
      -
      static intcolorPrimary -
      Must be a color value, in the form of "#rgb", "#argb", -"#rrggbb", or "#aarrggbb".
      -
      static intcolorPrimaryDark -
      Must be a color value, in the form of "#rgb", "#argb", -"#rrggbb", or "#aarrggbb".
      -
      static intcolorSwitchThumbNormal -
      Must be a color value, in the form of "#rgb", "#argb", -"#rrggbb", or "#aarrggbb".
      -
      static intcommitIcon -
      Must be a reference to another resource, in the form "@[+][package:]type:name" -or to a theme attribute in the form "?[package:][type:]name".
      -
      static intcontentInsetEnd -
      Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp".
      -
      static intcontentInsetEndWithActions -
      Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp".
      -
      static intcontentInsetLeft -
      Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp".
      -
      static intcontentInsetRight -
      Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp".
      -
      static intcontentInsetStart -
      Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp".
      -
      static intcontentInsetStartWithNavigation -
      Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp".
      -
      static intcontrolBackground -
      Must be a reference to another resource, in the form "@[+][package:]type:name" -or to a theme attribute in the form "?[package:][type:]name".
      -
      static intcustomNavigationLayout -
      Must be a reference to another resource, in the form "@[+][package:]type:name" -or to a theme attribute in the form "?[package:][type:]name".
      -
      static intdefaultQueryHint -
      Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character.
      -
      static intdialogPreferredPadding -
      Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp".
      -
      static intdialogTheme -
      Must be a reference to another resource, in the form "@[+][package:]type:name" -or to a theme attribute in the form "?[package:][type:]name".
      -
      static intdisplayOptions -
      Must be one or more (separated by '|') of the following constant values.
      -
      static intdivider -
      Must be a reference to another resource, in the form "@[+][package:]type:name" -or to a theme attribute in the form "?[package:][type:]name".
      -
      static intdividerHorizontal -
      Must be a reference to another resource, in the form "@[+][package:]type:name" -or to a theme attribute in the form "?[package:][type:]name".
      -
      static intdividerPadding -
      Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp".
      -
      static intdividerVertical -
      Must be a reference to another resource, in the form "@[+][package:]type:name" -or to a theme attribute in the form "?[package:][type:]name".
      -
      static intdrawableSize -
      Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp".
      -
      static intdrawerArrowStyle -
      Must be a reference to another resource, in the form "@[+][package:]type:name" -or to a theme attribute in the form "?[package:][type:]name".
      -
      static intdropdownListPreferredItemHeight -
      Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp".
      -
      static intdropDownListViewStyle -
      Must be a reference to another resource, in the form "@[+][package:]type:name" -or to a theme attribute in the form "?[package:][type:]name".
      -
      static inteditTextBackground -
      Must be a reference to another resource, in the form "@[+][package:]type:name" -or to a theme attribute in the form "?[package:][type:]name".
      -
      static inteditTextColor -
      May be a reference to another resource, in the form "@[+][package:]type:name" -or to a theme attribute in the form "?[package:][type:]name".
      -
      static inteditTextStyle -
      Must be a reference to another resource, in the form "@[+][package:]type:name" -or to a theme attribute in the form "?[package:][type:]name".
      -
      static intelevation -
      Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp".
      -
      static intexpandActivityOverflowButtonDrawable -
      Must be a reference to another resource, in the form "@[+][package:]type:name" -or to a theme attribute in the form "?[package:][type:]name".
      -
      static intgapBetweenBars -
      Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp".
      -
      static intgoIcon -
      Must be a reference to another resource, in the form "@[+][package:]type:name" -or to a theme attribute in the form "?[package:][type:]name".
      -
      static intheight -
      Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp".
      -
      static inthideOnContentScroll -
      Must be a boolean value, either "true" or "false".
      -
      static inthomeAsUpIndicator -
      Must be a reference to another resource, in the form "@[+][package:]type:name" -or to a theme attribute in the form "?[package:][type:]name".
      -
      static inthomeLayout -
      Must be a reference to another resource, in the form "@[+][package:]type:name" -or to a theme attribute in the form "?[package:][type:]name".
      -
      static inticon -
      Must be a reference to another resource, in the form "@[+][package:]type:name" -or to a theme attribute in the form "?[package:][type:]name".
      -
      static inticonifiedByDefault -
      Must be a boolean value, either "true" or "false".
      -
      static intimageButtonStyle -
      Must be a reference to another resource, in the form "@[+][package:]type:name" -or to a theme attribute in the form "?[package:][type:]name".
      -
      static intindeterminateProgressStyle -
      Must be a reference to another resource, in the form "@[+][package:]type:name" -or to a theme attribute in the form "?[package:][type:]name".
      -
      static intinitialActivityCount -
      Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character.
      -
      static intisLightTheme -
      Must be a boolean value, either "true" or "false".
      -
      static intitemPadding -
      Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp".
      -
      static intlayout -
      Must be a reference to another resource, in the form "@[+][package:]type:name" -or to a theme attribute in the form "?[package:][type:]name".
      -
      static intlistChoiceBackgroundIndicator -
      Must be a reference to another resource, in the form "@[+][package:]type:name" -or to a theme attribute in the form "?[package:][type:]name".
      -
      static intlistDividerAlertDialog -
      Must be a reference to another resource, in the form "@[+][package:]type:name" -or to a theme attribute in the form "?[package:][type:]name".
      -
      static intlistItemLayout -
      Must be a reference to another resource, in the form "@[+][package:]type:name" -or to a theme attribute in the form "?[package:][type:]name".
      -
      static intlistLayout -
      Must be a reference to another resource, in the form "@[+][package:]type:name" -or to a theme attribute in the form "?[package:][type:]name".
      -
      static intlistMenuViewStyle -
      Must be a reference to another resource, in the form "@[+][package:]type:name" -or to a theme attribute in the form "?[package:][type:]name".
      -
      static intlistPopupWindowStyle -
      Must be a reference to another resource, in the form "@[+][package:]type:name" -or to a theme attribute in the form "?[package:][type:]name".
      -
      static intlistPreferredItemHeight -
      Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp".
      -
      static intlistPreferredItemHeightLarge -
      Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp".
      -
      static intlistPreferredItemHeightSmall -
      Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp".
      -
      static intlistPreferredItemPaddingLeft -
      Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp".
      -
      static intlistPreferredItemPaddingRight -
      Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp".
      -
      static intlogo -
      Must be a reference to another resource, in the form "@[+][package:]type:name" -or to a theme attribute in the form "?[package:][type:]name".
      -
      static intlogoDescription -
      Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character.
      -
      static intmaxButtonHeight -
      Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp".
      -
      static intmeasureWithLargestChild -
      Must be a boolean value, either "true" or "false".
      -
      static intmultiChoiceItemLayout -
      Must be a reference to another resource, in the form "@[+][package:]type:name" -or to a theme attribute in the form "?[package:][type:]name".
      -
      static intnavigationContentDescription -
      Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character.
      -
      static intnavigationIcon -
      Must be a reference to another resource, in the form "@[+][package:]type:name" -or to a theme attribute in the form "?[package:][type:]name".
      -
      static intnavigationMode -
      Must be one of the following constant values.
      -
      static intoverlapAnchor -
      Must be a boolean value, either "true" or "false".
      -
      static intpaddingBottomNoButtons -
      Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp".
      -
      static intpaddingEnd -
      Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp".
      -
      static intpaddingStart -
      Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp".
      -
      static intpaddingTopNoTitle -
      Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp".
      -
      static intpanelBackground -
      Must be a reference to another resource, in the form "@[+][package:]type:name" -or to a theme attribute in the form "?[package:][type:]name".
      -
      static intpanelMenuListTheme -
      Must be a reference to another resource, in the form "@[+][package:]type:name" -or to a theme attribute in the form "?[package:][type:]name".
      -
      static intpanelMenuListWidth -
      Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp".
      -
      static intpopupMenuStyle -
      Must be a reference to another resource, in the form "@[+][package:]type:name" -or to a theme attribute in the form "?[package:][type:]name".
      -
      static intpopupTheme -
      Must be a reference to another resource, in the form "@[+][package:]type:name" -or to a theme attribute in the form "?[package:][type:]name".
      -
      static intpopupWindowStyle -
      Must be a reference to another resource, in the form "@[+][package:]type:name" -or to a theme attribute in the form "?[package:][type:]name".
      -
      static intpreserveIconSpacing -
      Must be a boolean value, either "true" or "false".
      -
      static intprogressBarPadding -
      Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp".
      -
      static intprogressBarStyle -
      Must be a reference to another resource, in the form "@[+][package:]type:name" -or to a theme attribute in the form "?[package:][type:]name".
      -
      static intqueryBackground -
      Must be a reference to another resource, in the form "@[+][package:]type:name" -or to a theme attribute in the form "?[package:][type:]name".
      -
      static intqueryHint -
      Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character.
      -
      static intradioButtonStyle -
      Must be a reference to another resource, in the form "@[+][package:]type:name" -or to a theme attribute in the form "?[package:][type:]name".
      -
      static intratingBarStyle -
      Must be a reference to another resource, in the form "@[+][package:]type:name" -or to a theme attribute in the form "?[package:][type:]name".
      -
      static intratingBarStyleIndicator -
      Must be a reference to another resource, in the form "@[+][package:]type:name" -or to a theme attribute in the form "?[package:][type:]name".
      -
      static intratingBarStyleSmall -
      Must be a reference to another resource, in the form "@[+][package:]type:name" -or to a theme attribute in the form "?[package:][type:]name".
      -
      static intsearchHintIcon -
      Must be a reference to another resource, in the form "@[+][package:]type:name" -or to a theme attribute in the form "?[package:][type:]name".
      -
      static intsearchIcon -
      Must be a reference to another resource, in the form "@[+][package:]type:name" -or to a theme attribute in the form "?[package:][type:]name".
      -
      static intsearchViewStyle -
      Must be a reference to another resource, in the form "@[+][package:]type:name" -or to a theme attribute in the form "?[package:][type:]name".
      -
      static intseekBarStyle -
      Must be a reference to another resource, in the form "@[+][package:]type:name" -or to a theme attribute in the form "?[package:][type:]name".
      -
      static intselectableItemBackground -
      Must be a reference to another resource, in the form "@[+][package:]type:name" -or to a theme attribute in the form "?[package:][type:]name".
      -
      static intselectableItemBackgroundBorderless -
      Must be a reference to another resource, in the form "@[+][package:]type:name" -or to a theme attribute in the form "?[package:][type:]name".
      -
      static intshowAsAction -
      Must be one or more (separated by '|') of the following constant values.
      -
      static intshowDividers -
      Must be one or more (separated by '|') of the following constant values.
      -
      static intshowText -
      Must be a boolean value, either "true" or "false".
      -
      static intshowTitle -
      Must be a boolean value, either "true" or "false".
      -
      static intsingleChoiceItemLayout -
      Must be a reference to another resource, in the form "@[+][package:]type:name" -or to a theme attribute in the form "?[package:][type:]name".
      -
      static intspinBars -
      Must be a boolean value, either "true" or "false".
      -
      static intspinnerDropDownItemStyle -
      Must be a reference to another resource, in the form "@[+][package:]type:name" -or to a theme attribute in the form "?[package:][type:]name".
      -
      static intspinnerStyle -
      Must be a reference to another resource, in the form "@[+][package:]type:name" -or to a theme attribute in the form "?[package:][type:]name".
      -
      static intsplitTrack -
      Must be a boolean value, either "true" or "false".
      -
      static intsrcCompat -
      Must be a reference to another resource, in the form "@[+][package:]type:name" -or to a theme attribute in the form "?[package:][type:]name".
      -
      static intstate_above_anchor -
      Must be a boolean value, either "true" or "false".
      -
      static intsubMenuArrow -
      Must be a reference to another resource, in the form "@[+][package:]type:name" -or to a theme attribute in the form "?[package:][type:]name".
      -
      static intsubmitBackground -
      Must be a reference to another resource, in the form "@[+][package:]type:name" -or to a theme attribute in the form "?[package:][type:]name".
      -
      static intsubtitle -
      Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character.
      -
      static intsubtitleTextAppearance -
      Must be a reference to another resource, in the form "@[+][package:]type:name" -or to a theme attribute in the form "?[package:][type:]name".
      -
      static intsubtitleTextColor -
      Must be a color value, in the form of "#rgb", "#argb", -"#rrggbb", or "#aarrggbb".
      -
      static intsubtitleTextStyle -
      Must be a reference to another resource, in the form "@[+][package:]type:name" -or to a theme attribute in the form "?[package:][type:]name".
      -
      static intsuggestionRowLayout -
      Must be a reference to another resource, in the form "@[+][package:]type:name" -or to a theme attribute in the form "?[package:][type:]name".
      -
      static intswitchMinWidth -
      Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp".
      -
      static intswitchPadding -
      Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp".
      -
      static intswitchStyle -
      Must be a reference to another resource, in the form "@[+][package:]type:name" -or to a theme attribute in the form "?[package:][type:]name".
      -
      static intswitchTextAppearance -
      Must be a reference to another resource, in the form "@[+][package:]type:name" -or to a theme attribute in the form "?[package:][type:]name".
      -
      static inttextAllCaps -
      May be a reference to another resource, in the form "@[+][package:]type:name" -or to a theme attribute in the form "?[package:][type:]name".
      -
      static inttextAppearanceLargePopupMenu -
      Must be a reference to another resource, in the form "@[+][package:]type:name" -or to a theme attribute in the form "?[package:][type:]name".
      -
      static inttextAppearanceListItem -
      Must be a reference to another resource, in the form "@[+][package:]type:name" -or to a theme attribute in the form "?[package:][type:]name".
      -
      static inttextAppearanceListItemSecondary -
      Must be a reference to another resource, in the form "@[+][package:]type:name" -or to a theme attribute in the form "?[package:][type:]name".
      -
      static inttextAppearanceListItemSmall -
      Must be a reference to another resource, in the form "@[+][package:]type:name" -or to a theme attribute in the form "?[package:][type:]name".
      -
      static inttextAppearancePopupMenuHeader -
      Must be a reference to another resource, in the form "@[+][package:]type:name" -or to a theme attribute in the form "?[package:][type:]name".
      -
      static inttextAppearanceSearchResultSubtitle -
      Must be a reference to another resource, in the form "@[+][package:]type:name" -or to a theme attribute in the form "?[package:][type:]name".
      -
      static inttextAppearanceSearchResultTitle -
      Must be a reference to another resource, in the form "@[+][package:]type:name" -or to a theme attribute in the form "?[package:][type:]name".
      -
      static inttextAppearanceSmallPopupMenu -
      Must be a reference to another resource, in the form "@[+][package:]type:name" -or to a theme attribute in the form "?[package:][type:]name".
      -
      static inttextColorAlertDialogListItem -
      May be a reference to another resource, in the form "@[+][package:]type:name" -or to a theme attribute in the form "?[package:][type:]name".
      -
      static inttextColorSearchUrl -
      May be a reference to another resource, in the form "@[+][package:]type:name" -or to a theme attribute in the form "?[package:][type:]name".
      -
      static inttexts -
      Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character.
      -
      static inttheme -
      Must be a reference to another resource, in the form "@[+][package:]type:name" -or to a theme attribute in the form "?[package:][type:]name".
      -
      static intthickness -
      Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp".
      -
      static intthumbTextPadding -
      Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp".
      -
      static intthumbTint -
      Must be a color value, in the form of "#rgb", "#argb", -"#rrggbb", or "#aarrggbb".
      -
      static intthumbTintMode -
      Must be one of the following constant values.
      -
      static inttickMark -
      Must be a reference to another resource, in the form "@[+][package:]type:name" -or to a theme attribute in the form "?[package:][type:]name".
      -
      static inttickMarkTint -
      Must be a color value, in the form of "#rgb", "#argb", -"#rrggbb", or "#aarrggbb".
      -
      static inttickMarkTintMode -
      Must be one of the following constant values.
      -
      static inttimeout -
      Must be an integer value, such as "100".
      -
      static inttint -
      Must be a color value, in the form of "#rgb", "#argb", -"#rrggbb", or "#aarrggbb".
      -
      static inttintMode -
      Must be one of the following constant values.
      -
      static inttitle -
      Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character.
      -
      static inttitleMargin -
      Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp".
      -
      static inttitleMarginBottom -
      Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp".
      -
      static inttitleMarginEnd -
      Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp".
      -
      static inttitleMargins -
      Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp".
      -
      static inttitleMarginStart -
      Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp".
      -
      static inttitleMarginTop -
      Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp".
      -
      static inttitleTextAppearance -
      Must be a reference to another resource, in the form "@[+][package:]type:name" -or to a theme attribute in the form "?[package:][type:]name".
      -
      static inttitleTextColor -
      Must be a color value, in the form of "#rgb", "#argb", -"#rrggbb", or "#aarrggbb".
      -
      static inttitleTextStyle -
      Must be a reference to another resource, in the form "@[+][package:]type:name" -or to a theme attribute in the form "?[package:][type:]name".
      -
      static inttoolbarNavigationButtonStyle -
      Must be a reference to another resource, in the form "@[+][package:]type:name" -or to a theme attribute in the form "?[package:][type:]name".
      -
      static inttoolbarStyle -
      Must be a reference to another resource, in the form "@[+][package:]type:name" -or to a theme attribute in the form "?[package:][type:]name".
      -
      static inttrack -
      Must be a reference to another resource, in the form "@[+][package:]type:name" -or to a theme attribute in the form "?[package:][type:]name".
      -
      static inttrackTint -
      Must be a color value, in the form of "#rgb", "#argb", -"#rrggbb", or "#aarrggbb".
      -
      static inttrackTintMode -
      Must be one of the following constant values.
      -
      static intvoiceIcon -
      Must be a reference to another resource, in the form "@[+][package:]type:name" -or to a theme attribute in the form "?[package:][type:]name".
      -
      static intwindowActionBar -
      Must be a boolean value, either "true" or "false".
      -
      static intwindowActionBarOverlay -
      Must be a boolean value, either "true" or "false".
      -
      static intwindowActionModeOverlay -
      Must be a boolean value, either "true" or "false".
      -
      static intwindowFixedHeightMajor -
      May be a dimension value, which is a floating point number appended with a unit such as "14.5sp".
      -
      static intwindowFixedHeightMinor -
      May be a dimension value, which is a floating point number appended with a unit such as "14.5sp".
      -
      static intwindowFixedWidthMajor -
      May be a dimension value, which is a floating point number appended with a unit such as "14.5sp".
      -
      static intwindowFixedWidthMinor -
      May be a dimension value, which is a floating point number appended with a unit such as "14.5sp".
      -
      static intwindowMinWidthMajor -
      May be a dimension value, which is a floating point number appended with a unit such as "14.5sp".
      -
      static intwindowMinWidthMinor -
      May be a dimension value, which is a floating point number appended with a unit such as "14.5sp".
      -
      static intwindowNoTitle -
      Must be a boolean value, either "true" or "false".
      -
      -
    • -
    - -
      -
    • - - -

      Constructor Summary

      - - - - - - - - -
      Constructors 
      Constructor and Description
      attr() 
      -
    • -
    - -
      -
    • - - -

      Method Summary

      -
        -
      • - - -

        Methods inherited from class java.lang.Object

        -clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
      • -
      -
    • -
    -
  • -
-
-
-
    -
  • - -
      -
    • - - -

      Field Detail

      - - - -
        -
      • -

        actionBarDivider

        -
        public static int actionBarDivider
        -

        Must be a reference to another resource, in the form "@[+][package:]type:name" -or to a theme attribute in the form "?[package:][type:]name".

        -
      • -
      - - - -
        -
      • -

        actionBarItemBackground

        -
        public static int actionBarItemBackground
        -

        Must be a reference to another resource, in the form "@[+][package:]type:name" -or to a theme attribute in the form "?[package:][type:]name".

        -
      • -
      - - - -
        -
      • -

        actionBarPopupTheme

        -
        public static int actionBarPopupTheme
        -

        Must be a reference to another resource, in the form "@[+][package:]type:name" -or to a theme attribute in the form "?[package:][type:]name".

        -
      • -
      - - - -
        -
      • -

        actionBarSize

        -
        public static int actionBarSize
        -

        May be a dimension value, which is a floating point number appended with a unit such as "14.5sp". -Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), -in (inches), mm (millimeters). -

        This may also be a reference to a resource (in the form -"@[package:]type:name") or -theme attribute (in the form -"?[package:][type:]name") -containing a value of this type. -

        May be one of the following constant values.

        - ---- - -
        ConstantValueDescription
        wrap_content0
        -
      • -
      - - - -
        -
      • -

        actionBarSplitStyle

        -
        public static int actionBarSplitStyle
        -

        Must be a reference to another resource, in the form "@[+][package:]type:name" -or to a theme attribute in the form "?[package:][type:]name".

        -
      • -
      - - - -
        -
      • -

        actionBarStyle

        -
        public static int actionBarStyle
        -

        Must be a reference to another resource, in the form "@[+][package:]type:name" -or to a theme attribute in the form "?[package:][type:]name".

        -
      • -
      - - - -
        -
      • -

        actionBarTabBarStyle

        -
        public static int actionBarTabBarStyle
        -

        Must be a reference to another resource, in the form "@[+][package:]type:name" -or to a theme attribute in the form "?[package:][type:]name".

        -
      • -
      - - - -
        -
      • -

        actionBarTabStyle

        -
        public static int actionBarTabStyle
        -

        Must be a reference to another resource, in the form "@[+][package:]type:name" -or to a theme attribute in the form "?[package:][type:]name".

        -
      • -
      - - - -
        -
      • -

        actionBarTabTextStyle

        -
        public static int actionBarTabTextStyle
        -

        Must be a reference to another resource, in the form "@[+][package:]type:name" -or to a theme attribute in the form "?[package:][type:]name".

        -
      • -
      - - - -
        -
      • -

        actionBarTheme

        -
        public static int actionBarTheme
        -

        Must be a reference to another resource, in the form "@[+][package:]type:name" -or to a theme attribute in the form "?[package:][type:]name".

        -
      • -
      - - - -
        -
      • -

        actionBarWidgetTheme

        -
        public static int actionBarWidgetTheme
        -

        Must be a reference to another resource, in the form "@[+][package:]type:name" -or to a theme attribute in the form "?[package:][type:]name".

        -
      • -
      - - - -
        -
      • -

        actionButtonStyle

        -
        public static int actionButtonStyle
        -

        Must be a reference to another resource, in the form "@[+][package:]type:name" -or to a theme attribute in the form "?[package:][type:]name".

        -
      • -
      - - - -
        -
      • -

        actionDropDownStyle

        -
        public static int actionDropDownStyle
        -

        Must be a reference to another resource, in the form "@[+][package:]type:name" -or to a theme attribute in the form "?[package:][type:]name".

        -
      • -
      - - - -
        -
      • -

        actionLayout

        -
        public static int actionLayout
        -

        Must be a reference to another resource, in the form "@[+][package:]type:name" -or to a theme attribute in the form "?[package:][type:]name".

        -
      • -
      - - - -
        -
      • -

        actionMenuTextAppearance

        -
        public static int actionMenuTextAppearance
        -

        Must be a reference to another resource, in the form "@[+][package:]type:name" -or to a theme attribute in the form "?[package:][type:]name".

        -
      • -
      - - - -
        -
      • -

        actionMenuTextColor

        -
        public static int actionMenuTextColor
        -

        May be a reference to another resource, in the form "@[+][package:]type:name" -or to a theme attribute in the form "?[package:][type:]name". -

        May be a color value, in the form of "#rgb", "#argb", -"#rrggbb", or "#aarrggbb".

        -
      • -
      - - - -
        -
      • -

        actionModeBackground

        -
        public static int actionModeBackground
        -

        Must be a reference to another resource, in the form "@[+][package:]type:name" -or to a theme attribute in the form "?[package:][type:]name".

        -
      • -
      - - - -
        -
      • -

        actionModeCloseButtonStyle

        -
        public static int actionModeCloseButtonStyle
        -

        Must be a reference to another resource, in the form "@[+][package:]type:name" -or to a theme attribute in the form "?[package:][type:]name".

        -
      • -
      - - - -
        -
      • -

        actionModeCloseDrawable

        -
        public static int actionModeCloseDrawable
        -

        Must be a reference to another resource, in the form "@[+][package:]type:name" -or to a theme attribute in the form "?[package:][type:]name".

        -
      • -
      - - - -
        -
      • -

        actionModeCopyDrawable

        -
        public static int actionModeCopyDrawable
        -

        Must be a reference to another resource, in the form "@[+][package:]type:name" -or to a theme attribute in the form "?[package:][type:]name".

        -
      • -
      - - - -
        -
      • -

        actionModeCutDrawable

        -
        public static int actionModeCutDrawable
        -

        Must be a reference to another resource, in the form "@[+][package:]type:name" -or to a theme attribute in the form "?[package:][type:]name".

        -
      • -
      - - - -
        -
      • -

        actionModeFindDrawable

        -
        public static int actionModeFindDrawable
        -

        Must be a reference to another resource, in the form "@[+][package:]type:name" -or to a theme attribute in the form "?[package:][type:]name".

        -
      • -
      - - - -
        -
      • -

        actionModePasteDrawable

        -
        public static int actionModePasteDrawable
        -

        Must be a reference to another resource, in the form "@[+][package:]type:name" -or to a theme attribute in the form "?[package:][type:]name".

        -
      • -
      - - - -
        -
      • -

        actionModePopupWindowStyle

        -
        public static int actionModePopupWindowStyle
        -

        Must be a reference to another resource, in the form "@[+][package:]type:name" -or to a theme attribute in the form "?[package:][type:]name".

        -
      • -
      - - - -
        -
      • -

        actionModeSelectAllDrawable

        -
        public static int actionModeSelectAllDrawable
        -

        Must be a reference to another resource, in the form "@[+][package:]type:name" -or to a theme attribute in the form "?[package:][type:]name".

        -
      • -
      - - - -
        -
      • -

        actionModeShareDrawable

        -
        public static int actionModeShareDrawable
        -

        Must be a reference to another resource, in the form "@[+][package:]type:name" -or to a theme attribute in the form "?[package:][type:]name".

        -
      • -
      - - - -
        -
      • -

        actionModeSplitBackground

        -
        public static int actionModeSplitBackground
        -

        Must be a reference to another resource, in the form "@[+][package:]type:name" -or to a theme attribute in the form "?[package:][type:]name".

        -
      • -
      - - - -
        -
      • -

        actionModeStyle

        -
        public static int actionModeStyle
        -

        Must be a reference to another resource, in the form "@[+][package:]type:name" -or to a theme attribute in the form "?[package:][type:]name".

        -
      • -
      - - - -
        -
      • -

        actionModeWebSearchDrawable

        -
        public static int actionModeWebSearchDrawable
        -

        Must be a reference to another resource, in the form "@[+][package:]type:name" -or to a theme attribute in the form "?[package:][type:]name".

        -
      • -
      - - - -
        -
      • -

        actionOverflowButtonStyle

        -
        public static int actionOverflowButtonStyle
        -

        Must be a reference to another resource, in the form "@[+][package:]type:name" -or to a theme attribute in the form "?[package:][type:]name".

        -
      • -
      - - - -
        -
      • -

        actionOverflowMenuStyle

        -
        public static int actionOverflowMenuStyle
        -

        Must be a reference to another resource, in the form "@[+][package:]type:name" -or to a theme attribute in the form "?[package:][type:]name".

        -
      • -
      - - - -
        -
      • -

        actionProviderClass

        -
        public static int actionProviderClass
        -

        Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. -

        This may also be a reference to a resource (in the form -"@[package:]type:name") or -theme attribute (in the form -"?[package:][type:]name") -containing a value of this type.

        -
      • -
      - - - -
        -
      • -

        actionViewClass

        -
        public static int actionViewClass
        -

        Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. -

        This may also be a reference to a resource (in the form -"@[package:]type:name") or -theme attribute (in the form -"?[package:][type:]name") -containing a value of this type.

        -
      • -
      - - - -
        -
      • -

        activityChooserViewStyle

        -
        public static int activityChooserViewStyle
        -

        Must be a reference to another resource, in the form "@[+][package:]type:name" -or to a theme attribute in the form "?[package:][type:]name".

        -
      • -
      - - - -
        -
      • -

        alertDialogButtonGroupStyle

        -
        public static int alertDialogButtonGroupStyle
        -

        Must be a reference to another resource, in the form "@[+][package:]type:name" -or to a theme attribute in the form "?[package:][type:]name".

        -
      • -
      - - - -
        -
      • -

        alertDialogCenterButtons

        -
        public static int alertDialogCenterButtons
        -

        Must be a boolean value, either "true" or "false". -

        This may also be a reference to a resource (in the form -"@[package:]type:name") or -theme attribute (in the form -"?[package:][type:]name") -containing a value of this type.

        -
      • -
      - - - -
        -
      • -

        alertDialogStyle

        -
        public static int alertDialogStyle
        -

        Must be a reference to another resource, in the form "@[+][package:]type:name" -or to a theme attribute in the form "?[package:][type:]name".

        -
      • -
      - - - -
        -
      • -

        alertDialogTheme

        -
        public static int alertDialogTheme
        -

        Must be a reference to another resource, in the form "@[+][package:]type:name" -or to a theme attribute in the form "?[package:][type:]name".

        -
      • -
      - - - -
        -
      • -

        allowStacking

        -
        public static int allowStacking
        -

        Must be a boolean value, either "true" or "false". -

        This may also be a reference to a resource (in the form -"@[package:]type:name") or -theme attribute (in the form -"?[package:][type:]name") -containing a value of this type.

        -
      • -
      - - - -
        -
      • -

        alpha

        -
        public static int alpha
        -

        Must be a floating point value, such as "1.2". -

        This may also be a reference to a resource (in the form -"@[package:]type:name") or -theme attribute (in the form -"?[package:][type:]name") -containing a value of this type.

        -
      • -
      - - - -
        -
      • -

        arrowHeadLength

        -
        public static int arrowHeadLength
        -

        Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". -Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), -in (inches), mm (millimeters). -

        This may also be a reference to a resource (in the form -"@[package:]type:name") or -theme attribute (in the form -"?[package:][type:]name") -containing a value of this type.

        -
      • -
      - - - -
        -
      • -

        arrowShaftLength

        -
        public static int arrowShaftLength
        -

        Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". -Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), -in (inches), mm (millimeters). -

        This may also be a reference to a resource (in the form -"@[package:]type:name") or -theme attribute (in the form -"?[package:][type:]name") -containing a value of this type.

        -
      • -
      - - - -
        -
      • -

        autoCompleteTextViewStyle

        -
        public static int autoCompleteTextViewStyle
        -

        Must be a reference to another resource, in the form "@[+][package:]type:name" -or to a theme attribute in the form "?[package:][type:]name".

        -
      • -
      - - - -
        -
      • -

        background

        -
        public static int background
        -

        Must be a reference to another resource, in the form "@[+][package:]type:name" -or to a theme attribute in the form "?[package:][type:]name".

        -
      • -
      - - - -
        -
      • -

        backgroundSplit

        -
        public static int backgroundSplit
        -

        May be a reference to another resource, in the form "@[+][package:]type:name" -or to a theme attribute in the form "?[package:][type:]name". -

        May be a color value, in the form of "#rgb", "#argb", -"#rrggbb", or "#aarrggbb".

        -
      • -
      - - - -
        -
      • -

        backgroundStacked

        -
        public static int backgroundStacked
        -

        May be a reference to another resource, in the form "@[+][package:]type:name" -or to a theme attribute in the form "?[package:][type:]name". -

        May be a color value, in the form of "#rgb", "#argb", -"#rrggbb", or "#aarrggbb".

        -
      • -
      - - - -
        -
      • -

        backgroundTint

        -
        public static int backgroundTint
        -

        Must be a color value, in the form of "#rgb", "#argb", -"#rrggbb", or "#aarrggbb". -

        This may also be a reference to a resource (in the form -"@[package:]type:name") or -theme attribute (in the form -"?[package:][type:]name") -containing a value of this type.

        -
      • -
      - - - -
        -
      • -

        backgroundTintMode

        -
        public static int backgroundTintMode
        -

        Must be one of the following constant values.

        - ---- - - - - - -
        ConstantValueDescription
        src_over3
        src_in5
        src_atop9
        multiply14
        screen15
        -
      • -
      - - - -
        -
      • -

        barLength

        -
        public static int barLength
        -

        Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". -Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), -in (inches), mm (millimeters). -

        This may also be a reference to a resource (in the form -"@[package:]type:name") or -theme attribute (in the form -"?[package:][type:]name") -containing a value of this type.

        -
      • -
      - - - -
        -
      • -

        borderlessButtonStyle

        -
        public static int borderlessButtonStyle
        -

        Must be a reference to another resource, in the form "@[+][package:]type:name" -or to a theme attribute in the form "?[package:][type:]name".

        -
      • -
      - - - -
        -
      • -

        buttonBarButtonStyle

        -
        public static int buttonBarButtonStyle
        -

        Must be a reference to another resource, in the form "@[+][package:]type:name" -or to a theme attribute in the form "?[package:][type:]name".

        -
      • -
      - - - -
        -
      • -

        buttonBarNegativeButtonStyle

        -
        public static int buttonBarNegativeButtonStyle
        -

        Must be a reference to another resource, in the form "@[+][package:]type:name" -or to a theme attribute in the form "?[package:][type:]name".

        -
      • -
      - - - -
        -
      • -

        buttonBarNeutralButtonStyle

        -
        public static int buttonBarNeutralButtonStyle
        -

        Must be a reference to another resource, in the form "@[+][package:]type:name" -or to a theme attribute in the form "?[package:][type:]name".

        -
      • -
      - - - -
        -
      • -

        buttonBarPositiveButtonStyle

        -
        public static int buttonBarPositiveButtonStyle
        -

        Must be a reference to another resource, in the form "@[+][package:]type:name" -or to a theme attribute in the form "?[package:][type:]name".

        -
      • -
      - - - -
        -
      • -

        buttonBarStyle

        -
        public static int buttonBarStyle
        -

        Must be a reference to another resource, in the form "@[+][package:]type:name" -or to a theme attribute in the form "?[package:][type:]name".

        -
      • -
      - - - -
        -
      • -

        buttonGravity

        -
        public static int buttonGravity
        -

        Must be one or more (separated by '|') of the following constant values.

        - ---- - - -
        ConstantValueDescription
        top0x30
        bottom0x50
        -
      • -
      - - - -
        -
      • -

        buttonPanelSideLayout

        -
        public static int buttonPanelSideLayout
        -

        Must be a reference to another resource, in the form "@[+][package:]type:name" -or to a theme attribute in the form "?[package:][type:]name".

        -
      • -
      - - - -
        -
      • -

        buttonStyle

        -
        public static int buttonStyle
        -

        Must be a reference to another resource, in the form "@[+][package:]type:name" -or to a theme attribute in the form "?[package:][type:]name".

        -
      • -
      - - - -
        -
      • -

        buttonStyleSmall

        -
        public static int buttonStyleSmall
        -

        Must be a reference to another resource, in the form "@[+][package:]type:name" -or to a theme attribute in the form "?[package:][type:]name".

        -
      • -
      - - - -
        -
      • -

        buttonTint

        -
        public static int buttonTint
        -

        Must be a color value, in the form of "#rgb", "#argb", -"#rrggbb", or "#aarrggbb". -

        This may also be a reference to a resource (in the form -"@[package:]type:name") or -theme attribute (in the form -"?[package:][type:]name") -containing a value of this type.

        -
      • -
      - - - -
        -
      • -

        buttonTintMode

        -
        public static int buttonTintMode
        -

        Must be one of the following constant values.

        - ---- - - - - - -
        ConstantValueDescription
        src_over3
        src_in5
        src_atop9
        multiply14
        screen15
        -
      • -
      - - - -
        -
      • -

        checkboxStyle

        -
        public static int checkboxStyle
        -

        Must be a reference to another resource, in the form "@[+][package:]type:name" -or to a theme attribute in the form "?[package:][type:]name".

        -
      • -
      - - - -
        -
      • -

        checkedTextViewStyle

        -
        public static int checkedTextViewStyle
        -

        Must be a reference to another resource, in the form "@[+][package:]type:name" -or to a theme attribute in the form "?[package:][type:]name".

        -
      • -
      - - - -
        -
      • -

        closeIcon

        -
        public static int closeIcon
        -

        Must be a reference to another resource, in the form "@[+][package:]type:name" -or to a theme attribute in the form "?[package:][type:]name".

        -
      • -
      - - - -
        -
      • -

        closeItemLayout

        -
        public static int closeItemLayout
        -

        Must be a reference to another resource, in the form "@[+][package:]type:name" -or to a theme attribute in the form "?[package:][type:]name".

        -
      • -
      - - - -
        -
      • -

        collapseContentDescription

        -
        public static int collapseContentDescription
        -

        Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. -

        This may also be a reference to a resource (in the form -"@[package:]type:name") or -theme attribute (in the form -"?[package:][type:]name") -containing a value of this type.

        -
      • -
      - - - -
        -
      • -

        collapseIcon

        -
        public static int collapseIcon
        -

        Must be a reference to another resource, in the form "@[+][package:]type:name" -or to a theme attribute in the form "?[package:][type:]name".

        -
      • -
      - - - -
        -
      • -

        color

        -
        public static int color
        -

        Must be a color value, in the form of "#rgb", "#argb", -"#rrggbb", or "#aarrggbb". -

        This may also be a reference to a resource (in the form -"@[package:]type:name") or -theme attribute (in the form -"?[package:][type:]name") -containing a value of this type.

        -
      • -
      - - - -
        -
      • -

        colorAccent

        -
        public static int colorAccent
        -

        Must be a color value, in the form of "#rgb", "#argb", -"#rrggbb", or "#aarrggbb". -

        This may also be a reference to a resource (in the form -"@[package:]type:name") or -theme attribute (in the form -"?[package:][type:]name") -containing a value of this type.

        -
      • -
      - - - -
        -
      • -

        colorBackgroundFloating

        -
        public static int colorBackgroundFloating
        -

        Must be a color value, in the form of "#rgb", "#argb", -"#rrggbb", or "#aarrggbb". -

        This may also be a reference to a resource (in the form -"@[package:]type:name") or -theme attribute (in the form -"?[package:][type:]name") -containing a value of this type.

        -
      • -
      - - - -
        -
      • -

        colorButtonNormal

        -
        public static int colorButtonNormal
        -

        Must be a color value, in the form of "#rgb", "#argb", -"#rrggbb", or "#aarrggbb". -

        This may also be a reference to a resource (in the form -"@[package:]type:name") or -theme attribute (in the form -"?[package:][type:]name") -containing a value of this type.

        -
      • -
      - - - -
        -
      • -

        colorControlActivated

        -
        public static int colorControlActivated
        -

        Must be a color value, in the form of "#rgb", "#argb", -"#rrggbb", or "#aarrggbb". -

        This may also be a reference to a resource (in the form -"@[package:]type:name") or -theme attribute (in the form -"?[package:][type:]name") -containing a value of this type.

        -
      • -
      - - - -
        -
      • -

        colorControlHighlight

        -
        public static int colorControlHighlight
        -

        Must be a color value, in the form of "#rgb", "#argb", -"#rrggbb", or "#aarrggbb". -

        This may also be a reference to a resource (in the form -"@[package:]type:name") or -theme attribute (in the form -"?[package:][type:]name") -containing a value of this type.

        -
      • -
      - - - -
        -
      • -

        colorControlNormal

        -
        public static int colorControlNormal
        -

        Must be a color value, in the form of "#rgb", "#argb", -"#rrggbb", or "#aarrggbb". -

        This may also be a reference to a resource (in the form -"@[package:]type:name") or -theme attribute (in the form -"?[package:][type:]name") -containing a value of this type.

        -
      • -
      - - - -
        -
      • -

        colorPrimary

        -
        public static int colorPrimary
        -

        Must be a color value, in the form of "#rgb", "#argb", -"#rrggbb", or "#aarrggbb". -

        This may also be a reference to a resource (in the form -"@[package:]type:name") or -theme attribute (in the form -"?[package:][type:]name") -containing a value of this type.

        -
      • -
      - - - -
        -
      • -

        colorPrimaryDark

        -
        public static int colorPrimaryDark
        -

        Must be a color value, in the form of "#rgb", "#argb", -"#rrggbb", or "#aarrggbb". -

        This may also be a reference to a resource (in the form -"@[package:]type:name") or -theme attribute (in the form -"?[package:][type:]name") -containing a value of this type.

        -
      • -
      - - - -
        -
      • -

        colorSwitchThumbNormal

        -
        public static int colorSwitchThumbNormal
        -

        Must be a color value, in the form of "#rgb", "#argb", -"#rrggbb", or "#aarrggbb". -

        This may also be a reference to a resource (in the form -"@[package:]type:name") or -theme attribute (in the form -"?[package:][type:]name") -containing a value of this type.

        -
      • -
      - - - -
        -
      • -

        commitIcon

        -
        public static int commitIcon
        -

        Must be a reference to another resource, in the form "@[+][package:]type:name" -or to a theme attribute in the form "?[package:][type:]name".

        -
      • -
      - - - -
        -
      • -

        contentInsetEnd

        -
        public static int contentInsetEnd
        -

        Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". -Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), -in (inches), mm (millimeters). -

        This may also be a reference to a resource (in the form -"@[package:]type:name") or -theme attribute (in the form -"?[package:][type:]name") -containing a value of this type.

        -
      • -
      - - - -
        -
      • -

        contentInsetEndWithActions

        -
        public static int contentInsetEndWithActions
        -

        Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". -Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), -in (inches), mm (millimeters). -

        This may also be a reference to a resource (in the form -"@[package:]type:name") or -theme attribute (in the form -"?[package:][type:]name") -containing a value of this type.

        -
      • -
      - - - -
        -
      • -

        contentInsetLeft

        -
        public static int contentInsetLeft
        -

        Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". -Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), -in (inches), mm (millimeters). -

        This may also be a reference to a resource (in the form -"@[package:]type:name") or -theme attribute (in the form -"?[package:][type:]name") -containing a value of this type.

        -
      • -
      - - - -
        -
      • -

        contentInsetRight

        -
        public static int contentInsetRight
        -

        Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". -Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), -in (inches), mm (millimeters). -

        This may also be a reference to a resource (in the form -"@[package:]type:name") or -theme attribute (in the form -"?[package:][type:]name") -containing a value of this type.

        -
      • -
      - - - -
        -
      • -

        contentInsetStart

        -
        public static int contentInsetStart
        -

        Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". -Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), -in (inches), mm (millimeters). -

        This may also be a reference to a resource (in the form -"@[package:]type:name") or -theme attribute (in the form -"?[package:][type:]name") -containing a value of this type.

        -
      • -
      - - - -
        -
      • -

        contentInsetStartWithNavigation

        -
        public static int contentInsetStartWithNavigation
        -

        Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". -Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), -in (inches), mm (millimeters). -

        This may also be a reference to a resource (in the form -"@[package:]type:name") or -theme attribute (in the form -"?[package:][type:]name") -containing a value of this type.

        -
      • -
      - - - -
        -
      • -

        controlBackground

        -
        public static int controlBackground
        -

        Must be a reference to another resource, in the form "@[+][package:]type:name" -or to a theme attribute in the form "?[package:][type:]name".

        -
      • -
      - - - -
        -
      • -

        customNavigationLayout

        -
        public static int customNavigationLayout
        -

        Must be a reference to another resource, in the form "@[+][package:]type:name" -or to a theme attribute in the form "?[package:][type:]name".

        -
      • -
      - - - -
        -
      • -

        defaultQueryHint

        -
        public static int defaultQueryHint
        -

        Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. -

        This may also be a reference to a resource (in the form -"@[package:]type:name") or -theme attribute (in the form -"?[package:][type:]name") -containing a value of this type.

        -
      • -
      - - - -
        -
      • -

        dialogPreferredPadding

        -
        public static int dialogPreferredPadding
        -

        Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". -Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), -in (inches), mm (millimeters). -

        This may also be a reference to a resource (in the form -"@[package:]type:name") or -theme attribute (in the form -"?[package:][type:]name") -containing a value of this type.

        -
      • -
      - - - -
        -
      • -

        dialogTheme

        -
        public static int dialogTheme
        -

        Must be a reference to another resource, in the form "@[+][package:]type:name" -or to a theme attribute in the form "?[package:][type:]name".

        -
      • -
      - - - -
        -
      • -

        displayOptions

        -
        public static int displayOptions
        -

        Must be one or more (separated by '|') of the following constant values.

        - ---- - - - - - - - -
        ConstantValueDescription
        none0
        useLogo0x1
        showHome0x2
        homeAsUp0x4
        showTitle0x8
        showCustom0x10
        disableHome0x20
        -
      • -
      - - - -
        -
      • -

        divider

        -
        public static int divider
        -

        Must be a reference to another resource, in the form "@[+][package:]type:name" -or to a theme attribute in the form "?[package:][type:]name".

        -
      • -
      - - - -
        -
      • -

        dividerHorizontal

        -
        public static int dividerHorizontal
        -

        Must be a reference to another resource, in the form "@[+][package:]type:name" -or to a theme attribute in the form "?[package:][type:]name".

        -
      • -
      - - - -
        -
      • -

        dividerPadding

        -
        public static int dividerPadding
        -

        Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". -Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), -in (inches), mm (millimeters). -

        This may also be a reference to a resource (in the form -"@[package:]type:name") or -theme attribute (in the form -"?[package:][type:]name") -containing a value of this type.

        -
      • -
      - - - -
        -
      • -

        dividerVertical

        -
        public static int dividerVertical
        -

        Must be a reference to another resource, in the form "@[+][package:]type:name" -or to a theme attribute in the form "?[package:][type:]name".

        -
      • -
      - - - -
        -
      • -

        drawableSize

        -
        public static int drawableSize
        -

        Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". -Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), -in (inches), mm (millimeters). -

        This may also be a reference to a resource (in the form -"@[package:]type:name") or -theme attribute (in the form -"?[package:][type:]name") -containing a value of this type.

        -
      • -
      - - - -
        -
      • -

        drawerArrowStyle

        -
        public static int drawerArrowStyle
        -

        Must be a reference to another resource, in the form "@[+][package:]type:name" -or to a theme attribute in the form "?[package:][type:]name".

        -
      • -
      - - - -
        -
      • -

        dropDownListViewStyle

        -
        public static int dropDownListViewStyle
        -

        Must be a reference to another resource, in the form "@[+][package:]type:name" -or to a theme attribute in the form "?[package:][type:]name".

        -
      • -
      - - - -
        -
      • -

        dropdownListPreferredItemHeight

        -
        public static int dropdownListPreferredItemHeight
        -

        Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". -Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), -in (inches), mm (millimeters). -

        This may also be a reference to a resource (in the form -"@[package:]type:name") or -theme attribute (in the form -"?[package:][type:]name") -containing a value of this type.

        -
      • -
      - - - -
        -
      • -

        editTextBackground

        -
        public static int editTextBackground
        -

        Must be a reference to another resource, in the form "@[+][package:]type:name" -or to a theme attribute in the form "?[package:][type:]name".

        -
      • -
      - - - -
        -
      • -

        editTextColor

        -
        public static int editTextColor
        -

        May be a reference to another resource, in the form "@[+][package:]type:name" -or to a theme attribute in the form "?[package:][type:]name". -

        May be a color value, in the form of "#rgb", "#argb", -"#rrggbb", or "#aarrggbb".

        -
      • -
      - - - -
        -
      • -

        editTextStyle

        -
        public static int editTextStyle
        -

        Must be a reference to another resource, in the form "@[+][package:]type:name" -or to a theme attribute in the form "?[package:][type:]name".

        -
      • -
      - - - -
        -
      • -

        elevation

        -
        public static int elevation
        -

        Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". -Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), -in (inches), mm (millimeters). -

        This may also be a reference to a resource (in the form -"@[package:]type:name") or -theme attribute (in the form -"?[package:][type:]name") -containing a value of this type.

        -
      • -
      - - - -
        -
      • -

        expandActivityOverflowButtonDrawable

        -
        public static int expandActivityOverflowButtonDrawable
        -

        Must be a reference to another resource, in the form "@[+][package:]type:name" -or to a theme attribute in the form "?[package:][type:]name".

        -
      • -
      - - - -
        -
      • -

        gapBetweenBars

        -
        public static int gapBetweenBars
        -

        Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". -Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), -in (inches), mm (millimeters). -

        This may also be a reference to a resource (in the form -"@[package:]type:name") or -theme attribute (in the form -"?[package:][type:]name") -containing a value of this type.

        -
      • -
      - - - -
        -
      • -

        goIcon

        -
        public static int goIcon
        -

        Must be a reference to another resource, in the form "@[+][package:]type:name" -or to a theme attribute in the form "?[package:][type:]name".

        -
      • -
      - - - -
        -
      • -

        height

        -
        public static int height
        -

        Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". -Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), -in (inches), mm (millimeters). -

        This may also be a reference to a resource (in the form -"@[package:]type:name") or -theme attribute (in the form -"?[package:][type:]name") -containing a value of this type.

        -
      • -
      - - - -
        -
      • -

        hideOnContentScroll

        -
        public static int hideOnContentScroll
        -

        Must be a boolean value, either "true" or "false". -

        This may also be a reference to a resource (in the form -"@[package:]type:name") or -theme attribute (in the form -"?[package:][type:]name") -containing a value of this type.

        -
      • -
      - - - -
        -
      • -

        homeAsUpIndicator

        -
        public static int homeAsUpIndicator
        -

        Must be a reference to another resource, in the form "@[+][package:]type:name" -or to a theme attribute in the form "?[package:][type:]name".

        -
      • -
      - - - -
        -
      • -

        homeLayout

        -
        public static int homeLayout
        -

        Must be a reference to another resource, in the form "@[+][package:]type:name" -or to a theme attribute in the form "?[package:][type:]name".

        -
      • -
      - - - -
        -
      • -

        icon

        -
        public static int icon
        -

        Must be a reference to another resource, in the form "@[+][package:]type:name" -or to a theme attribute in the form "?[package:][type:]name".

        -
      • -
      - - - -
        -
      • -

        iconifiedByDefault

        -
        public static int iconifiedByDefault
        -

        Must be a boolean value, either "true" or "false". -

        This may also be a reference to a resource (in the form -"@[package:]type:name") or -theme attribute (in the form -"?[package:][type:]name") -containing a value of this type.

        -
      • -
      - - - -
        -
      • -

        imageButtonStyle

        -
        public static int imageButtonStyle
        -

        Must be a reference to another resource, in the form "@[+][package:]type:name" -or to a theme attribute in the form "?[package:][type:]name".

        -
      • -
      - - - -
        -
      • -

        indeterminateProgressStyle

        -
        public static int indeterminateProgressStyle
        -

        Must be a reference to another resource, in the form "@[+][package:]type:name" -or to a theme attribute in the form "?[package:][type:]name".

        -
      • -
      - - - -
        -
      • -

        initialActivityCount

        -
        public static int initialActivityCount
        -

        Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. -

        This may also be a reference to a resource (in the form -"@[package:]type:name") or -theme attribute (in the form -"?[package:][type:]name") -containing a value of this type.

        -
      • -
      - - - -
        -
      • -

        isLightTheme

        -
        public static int isLightTheme
        -

        Must be a boolean value, either "true" or "false". -

        This may also be a reference to a resource (in the form -"@[package:]type:name") or -theme attribute (in the form -"?[package:][type:]name") -containing a value of this type.

        -
      • -
      - - - -
        -
      • -

        itemPadding

        -
        public static int itemPadding
        -

        Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". -Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), -in (inches), mm (millimeters). -

        This may also be a reference to a resource (in the form -"@[package:]type:name") or -theme attribute (in the form -"?[package:][type:]name") -containing a value of this type.

        -
      • -
      - - - -
        -
      • -

        layout

        -
        public static int layout
        -

        Must be a reference to another resource, in the form "@[+][package:]type:name" -or to a theme attribute in the form "?[package:][type:]name".

        -
      • -
      - - - -
        -
      • -

        listChoiceBackgroundIndicator

        -
        public static int listChoiceBackgroundIndicator
        -

        Must be a reference to another resource, in the form "@[+][package:]type:name" -or to a theme attribute in the form "?[package:][type:]name".

        -
      • -
      - - - -
        -
      • -

        listDividerAlertDialog

        -
        public static int listDividerAlertDialog
        -

        Must be a reference to another resource, in the form "@[+][package:]type:name" -or to a theme attribute in the form "?[package:][type:]name".

        -
      • -
      - - - -
        -
      • -

        listItemLayout

        -
        public static int listItemLayout
        -

        Must be a reference to another resource, in the form "@[+][package:]type:name" -or to a theme attribute in the form "?[package:][type:]name".

        -
      • -
      - - - -
        -
      • -

        listLayout

        -
        public static int listLayout
        -

        Must be a reference to another resource, in the form "@[+][package:]type:name" -or to a theme attribute in the form "?[package:][type:]name".

        -
      • -
      - - - -
        -
      • -

        listMenuViewStyle

        -
        public static int listMenuViewStyle
        -

        Must be a reference to another resource, in the form "@[+][package:]type:name" -or to a theme attribute in the form "?[package:][type:]name".

        -
      • -
      - - - -
        -
      • -

        listPopupWindowStyle

        -
        public static int listPopupWindowStyle
        -

        Must be a reference to another resource, in the form "@[+][package:]type:name" -or to a theme attribute in the form "?[package:][type:]name".

        -
      • -
      - - - -
        -
      • -

        listPreferredItemHeight

        -
        public static int listPreferredItemHeight
        -

        Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". -Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), -in (inches), mm (millimeters). -

        This may also be a reference to a resource (in the form -"@[package:]type:name") or -theme attribute (in the form -"?[package:][type:]name") -containing a value of this type.

        -
      • -
      - - - -
        -
      • -

        listPreferredItemHeightLarge

        -
        public static int listPreferredItemHeightLarge
        -

        Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". -Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), -in (inches), mm (millimeters). -

        This may also be a reference to a resource (in the form -"@[package:]type:name") or -theme attribute (in the form -"?[package:][type:]name") -containing a value of this type.

        -
      • -
      - - - -
        -
      • -

        listPreferredItemHeightSmall

        -
        public static int listPreferredItemHeightSmall
        -

        Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". -Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), -in (inches), mm (millimeters). -

        This may also be a reference to a resource (in the form -"@[package:]type:name") or -theme attribute (in the form -"?[package:][type:]name") -containing a value of this type.

        -
      • -
      - - - -
        -
      • -

        listPreferredItemPaddingLeft

        -
        public static int listPreferredItemPaddingLeft
        -

        Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". -Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), -in (inches), mm (millimeters). -

        This may also be a reference to a resource (in the form -"@[package:]type:name") or -theme attribute (in the form -"?[package:][type:]name") -containing a value of this type.

        -
      • -
      - - - -
        -
      • -

        listPreferredItemPaddingRight

        -
        public static int listPreferredItemPaddingRight
        -

        Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". -Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), -in (inches), mm (millimeters). -

        This may also be a reference to a resource (in the form -"@[package:]type:name") or -theme attribute (in the form -"?[package:][type:]name") -containing a value of this type.

        -
      • -
      - - - -
        -
      • -

        logo

        -
        public static int logo
        -

        Must be a reference to another resource, in the form "@[+][package:]type:name" -or to a theme attribute in the form "?[package:][type:]name".

        -
      • -
      - - - -
        -
      • -

        logoDescription

        -
        public static int logoDescription
        -

        Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. -

        This may also be a reference to a resource (in the form -"@[package:]type:name") or -theme attribute (in the form -"?[package:][type:]name") -containing a value of this type.

        -
      • -
      - - - -
        -
      • -

        maxButtonHeight

        -
        public static int maxButtonHeight
        -

        Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". -Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), -in (inches), mm (millimeters). -

        This may also be a reference to a resource (in the form -"@[package:]type:name") or -theme attribute (in the form -"?[package:][type:]name") -containing a value of this type.

        -
      • -
      - - - -
        -
      • -

        measureWithLargestChild

        -
        public static int measureWithLargestChild
        -

        Must be a boolean value, either "true" or "false". -

        This may also be a reference to a resource (in the form -"@[package:]type:name") or -theme attribute (in the form -"?[package:][type:]name") -containing a value of this type.

        -
      • -
      - - - -
        -
      • -

        multiChoiceItemLayout

        -
        public static int multiChoiceItemLayout
        -

        Must be a reference to another resource, in the form "@[+][package:]type:name" -or to a theme attribute in the form "?[package:][type:]name".

        -
      • -
      - - - -
        -
      • -

        navigationContentDescription

        -
        public static int navigationContentDescription
        -

        Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. -

        This may also be a reference to a resource (in the form -"@[package:]type:name") or -theme attribute (in the form -"?[package:][type:]name") -containing a value of this type.

        -
      • -
      - - - -
        -
      • -

        navigationIcon

        -
        public static int navigationIcon
        -

        Must be a reference to another resource, in the form "@[+][package:]type:name" -or to a theme attribute in the form "?[package:][type:]name".

        -
      • -
      - - - -
        -
      • -

        navigationMode

        -
        public static int navigationMode
        -

        Must be one of the following constant values.

        - ---- - - - -
        ConstantValueDescription
        normal0
        listMode1
        tabMode2
        -
      • -
      - - - -
        -
      • -

        overlapAnchor

        -
        public static int overlapAnchor
        -

        Must be a boolean value, either "true" or "false". -

        This may also be a reference to a resource (in the form -"@[package:]type:name") or -theme attribute (in the form -"?[package:][type:]name") -containing a value of this type.

        -
      • -
      - - - -
        -
      • -

        paddingBottomNoButtons

        -
        public static int paddingBottomNoButtons
        -

        Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". -Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), -in (inches), mm (millimeters). -

        This may also be a reference to a resource (in the form -"@[package:]type:name") or -theme attribute (in the form -"?[package:][type:]name") -containing a value of this type.

        -
      • -
      - - - -
        -
      • -

        paddingEnd

        -
        public static int paddingEnd
        -

        Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". -Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), -in (inches), mm (millimeters). -

        This may also be a reference to a resource (in the form -"@[package:]type:name") or -theme attribute (in the form -"?[package:][type:]name") -containing a value of this type.

        -
      • -
      - - - -
        -
      • -

        paddingStart

        -
        public static int paddingStart
        -

        Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". -Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), -in (inches), mm (millimeters). -

        This may also be a reference to a resource (in the form -"@[package:]type:name") or -theme attribute (in the form -"?[package:][type:]name") -containing a value of this type.

        -
      • -
      - - - -
        -
      • -

        paddingTopNoTitle

        -
        public static int paddingTopNoTitle
        -

        Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". -Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), -in (inches), mm (millimeters). -

        This may also be a reference to a resource (in the form -"@[package:]type:name") or -theme attribute (in the form -"?[package:][type:]name") -containing a value of this type.

        -
      • -
      - - - -
        -
      • -

        panelBackground

        -
        public static int panelBackground
        -

        Must be a reference to another resource, in the form "@[+][package:]type:name" -or to a theme attribute in the form "?[package:][type:]name".

        -
      • -
      - - - -
        -
      • -

        panelMenuListTheme

        -
        public static int panelMenuListTheme
        -

        Must be a reference to another resource, in the form "@[+][package:]type:name" -or to a theme attribute in the form "?[package:][type:]name".

        -
      • -
      - - - -
        -
      • -

        panelMenuListWidth

        -
        public static int panelMenuListWidth
        -

        Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". -Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), -in (inches), mm (millimeters). -

        This may also be a reference to a resource (in the form -"@[package:]type:name") or -theme attribute (in the form -"?[package:][type:]name") -containing a value of this type.

        -
      • -
      - - - -
        -
      • -

        popupMenuStyle

        -
        public static int popupMenuStyle
        -

        Must be a reference to another resource, in the form "@[+][package:]type:name" -or to a theme attribute in the form "?[package:][type:]name".

        -
      • -
      - - - -
        -
      • -

        popupTheme

        -
        public static int popupTheme
        -

        Must be a reference to another resource, in the form "@[+][package:]type:name" -or to a theme attribute in the form "?[package:][type:]name".

        -
      • -
      - - - -
        -
      • -

        popupWindowStyle

        -
        public static int popupWindowStyle
        -

        Must be a reference to another resource, in the form "@[+][package:]type:name" -or to a theme attribute in the form "?[package:][type:]name".

        -
      • -
      - - - -
        -
      • -

        preserveIconSpacing

        -
        public static int preserveIconSpacing
        -

        Must be a boolean value, either "true" or "false". -

        This may also be a reference to a resource (in the form -"@[package:]type:name") or -theme attribute (in the form -"?[package:][type:]name") -containing a value of this type.

        -
      • -
      - - - -
        -
      • -

        progressBarPadding

        -
        public static int progressBarPadding
        -

        Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". -Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), -in (inches), mm (millimeters). -

        This may also be a reference to a resource (in the form -"@[package:]type:name") or -theme attribute (in the form -"?[package:][type:]name") -containing a value of this type.

        -
      • -
      - - - -
        -
      • -

        progressBarStyle

        -
        public static int progressBarStyle
        -

        Must be a reference to another resource, in the form "@[+][package:]type:name" -or to a theme attribute in the form "?[package:][type:]name".

        -
      • -
      - - - -
        -
      • -

        queryBackground

        -
        public static int queryBackground
        -

        Must be a reference to another resource, in the form "@[+][package:]type:name" -or to a theme attribute in the form "?[package:][type:]name".

        -
      • -
      - - - -
        -
      • -

        queryHint

        -
        public static int queryHint
        -

        Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. -

        This may also be a reference to a resource (in the form -"@[package:]type:name") or -theme attribute (in the form -"?[package:][type:]name") -containing a value of this type.

        -
      • -
      - - - -
        -
      • -

        radioButtonStyle

        -
        public static int radioButtonStyle
        -

        Must be a reference to another resource, in the form "@[+][package:]type:name" -or to a theme attribute in the form "?[package:][type:]name".

        -
      • -
      - - - -
        -
      • -

        ratingBarStyle

        -
        public static int ratingBarStyle
        -

        Must be a reference to another resource, in the form "@[+][package:]type:name" -or to a theme attribute in the form "?[package:][type:]name".

        -
      • -
      - - - -
        -
      • -

        ratingBarStyleIndicator

        -
        public static int ratingBarStyleIndicator
        -

        Must be a reference to another resource, in the form "@[+][package:]type:name" -or to a theme attribute in the form "?[package:][type:]name".

        -
      • -
      - - - -
        -
      • -

        ratingBarStyleSmall

        -
        public static int ratingBarStyleSmall
        -

        Must be a reference to another resource, in the form "@[+][package:]type:name" -or to a theme attribute in the form "?[package:][type:]name".

        -
      • -
      - - - -
        -
      • -

        searchHintIcon

        -
        public static int searchHintIcon
        -

        Must be a reference to another resource, in the form "@[+][package:]type:name" -or to a theme attribute in the form "?[package:][type:]name".

        -
      • -
      - - - -
        -
      • -

        searchIcon

        -
        public static int searchIcon
        -

        Must be a reference to another resource, in the form "@[+][package:]type:name" -or to a theme attribute in the form "?[package:][type:]name".

        -
      • -
      - - - -
        -
      • -

        searchViewStyle

        -
        public static int searchViewStyle
        -

        Must be a reference to another resource, in the form "@[+][package:]type:name" -or to a theme attribute in the form "?[package:][type:]name".

        -
      • -
      - - - -
        -
      • -

        seekBarStyle

        -
        public static int seekBarStyle
        -

        Must be a reference to another resource, in the form "@[+][package:]type:name" -or to a theme attribute in the form "?[package:][type:]name".

        -
      • -
      - - - -
        -
      • -

        selectableItemBackground

        -
        public static int selectableItemBackground
        -

        Must be a reference to another resource, in the form "@[+][package:]type:name" -or to a theme attribute in the form "?[package:][type:]name".

        -
      • -
      - - - -
        -
      • -

        selectableItemBackgroundBorderless

        -
        public static int selectableItemBackgroundBorderless
        -

        Must be a reference to another resource, in the form "@[+][package:]type:name" -or to a theme attribute in the form "?[package:][type:]name".

        -
      • -
      - - - -
        -
      • -

        showAsAction

        -
        public static int showAsAction
        -

        Must be one or more (separated by '|') of the following constant values.

        - ---- - - - - - -
        ConstantValueDescription
        never0
        ifRoom1
        always2
        withText4
        collapseActionView8
        -
      • -
      - - - -
        -
      • -

        showDividers

        -
        public static int showDividers
        -

        Must be one or more (separated by '|') of the following constant values.

        - ---- - - - - -
        ConstantValueDescription
        none0
        beginning1
        middle2
        end4
        -
      • -
      - - - -
        -
      • -

        showText

        -
        public static int showText
        -

        Must be a boolean value, either "true" or "false". -

        This may also be a reference to a resource (in the form -"@[package:]type:name") or -theme attribute (in the form -"?[package:][type:]name") -containing a value of this type.

        -
      • -
      - - - -
        -
      • -

        showTitle

        -
        public static int showTitle
        -

        Must be a boolean value, either "true" or "false". -

        This may also be a reference to a resource (in the form -"@[package:]type:name") or -theme attribute (in the form -"?[package:][type:]name") -containing a value of this type.

        -
      • -
      - - - -
        -
      • -

        singleChoiceItemLayout

        -
        public static int singleChoiceItemLayout
        -

        Must be a reference to another resource, in the form "@[+][package:]type:name" -or to a theme attribute in the form "?[package:][type:]name".

        -
      • -
      - - - -
        -
      • -

        spinBars

        -
        public static int spinBars
        -

        Must be a boolean value, either "true" or "false". -

        This may also be a reference to a resource (in the form -"@[package:]type:name") or -theme attribute (in the form -"?[package:][type:]name") -containing a value of this type.

        -
      • -
      - - - -
        -
      • -

        spinnerDropDownItemStyle

        -
        public static int spinnerDropDownItemStyle
        -

        Must be a reference to another resource, in the form "@[+][package:]type:name" -or to a theme attribute in the form "?[package:][type:]name".

        -
      • -
      - - - -
        -
      • -

        spinnerStyle

        -
        public static int spinnerStyle
        -

        Must be a reference to another resource, in the form "@[+][package:]type:name" -or to a theme attribute in the form "?[package:][type:]name".

        -
      • -
      - - - -
        -
      • -

        splitTrack

        -
        public static int splitTrack
        -

        Must be a boolean value, either "true" or "false". -

        This may also be a reference to a resource (in the form -"@[package:]type:name") or -theme attribute (in the form -"?[package:][type:]name") -containing a value of this type.

        -
      • -
      - - - -
        -
      • -

        srcCompat

        -
        public static int srcCompat
        -

        Must be a reference to another resource, in the form "@[+][package:]type:name" -or to a theme attribute in the form "?[package:][type:]name".

        -
      • -
      - - - -
        -
      • -

        state_above_anchor

        -
        public static int state_above_anchor
        -

        Must be a boolean value, either "true" or "false". -

        This may also be a reference to a resource (in the form -"@[package:]type:name") or -theme attribute (in the form -"?[package:][type:]name") -containing a value of this type.

        -
      • -
      - - - -
        -
      • -

        subMenuArrow

        -
        public static int subMenuArrow
        -

        Must be a reference to another resource, in the form "@[+][package:]type:name" -or to a theme attribute in the form "?[package:][type:]name".

        -
      • -
      - - - -
        -
      • -

        submitBackground

        -
        public static int submitBackground
        -

        Must be a reference to another resource, in the form "@[+][package:]type:name" -or to a theme attribute in the form "?[package:][type:]name".

        -
      • -
      - - - -
        -
      • -

        subtitle

        -
        public static int subtitle
        -

        Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. -

        This may also be a reference to a resource (in the form -"@[package:]type:name") or -theme attribute (in the form -"?[package:][type:]name") -containing a value of this type.

        -
      • -
      - - - -
        -
      • -

        subtitleTextAppearance

        -
        public static int subtitleTextAppearance
        -

        Must be a reference to another resource, in the form "@[+][package:]type:name" -or to a theme attribute in the form "?[package:][type:]name".

        -
      • -
      - - - -
        -
      • -

        subtitleTextColor

        -
        public static int subtitleTextColor
        -

        Must be a color value, in the form of "#rgb", "#argb", -"#rrggbb", or "#aarrggbb". -

        This may also be a reference to a resource (in the form -"@[package:]type:name") or -theme attribute (in the form -"?[package:][type:]name") -containing a value of this type.

        -
      • -
      - - - -
        -
      • -

        subtitleTextStyle

        -
        public static int subtitleTextStyle
        -

        Must be a reference to another resource, in the form "@[+][package:]type:name" -or to a theme attribute in the form "?[package:][type:]name".

        -
      • -
      - - - -
        -
      • -

        suggestionRowLayout

        -
        public static int suggestionRowLayout
        -

        Must be a reference to another resource, in the form "@[+][package:]type:name" -or to a theme attribute in the form "?[package:][type:]name".

        -
      • -
      - - - -
        -
      • -

        switchMinWidth

        -
        public static int switchMinWidth
        -

        Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". -Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), -in (inches), mm (millimeters). -

        This may also be a reference to a resource (in the form -"@[package:]type:name") or -theme attribute (in the form -"?[package:][type:]name") -containing a value of this type.

        -
      • -
      - - - -
        -
      • -

        switchPadding

        -
        public static int switchPadding
        -

        Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". -Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), -in (inches), mm (millimeters). -

        This may also be a reference to a resource (in the form -"@[package:]type:name") or -theme attribute (in the form -"?[package:][type:]name") -containing a value of this type.

        -
      • -
      - - - -
        -
      • -

        switchStyle

        -
        public static int switchStyle
        -

        Must be a reference to another resource, in the form "@[+][package:]type:name" -or to a theme attribute in the form "?[package:][type:]name".

        -
      • -
      - - - -
        -
      • -

        switchTextAppearance

        -
        public static int switchTextAppearance
        -

        Must be a reference to another resource, in the form "@[+][package:]type:name" -or to a theme attribute in the form "?[package:][type:]name".

        -
      • -
      - - - -
        -
      • -

        textAllCaps

        -
        public static int textAllCaps
        -

        May be a reference to another resource, in the form "@[+][package:]type:name" -or to a theme attribute in the form "?[package:][type:]name". -

        May be a boolean value, either "true" or "false".

        -
      • -
      - - - -
        -
      • -

        textAppearanceLargePopupMenu

        -
        public static int textAppearanceLargePopupMenu
        -

        Must be a reference to another resource, in the form "@[+][package:]type:name" -or to a theme attribute in the form "?[package:][type:]name".

        -
      • -
      - - - -
        -
      • -

        textAppearanceListItem

        -
        public static int textAppearanceListItem
        -

        Must be a reference to another resource, in the form "@[+][package:]type:name" -or to a theme attribute in the form "?[package:][type:]name".

        -
      • -
      - - - -
        -
      • -

        textAppearanceListItemSecondary

        -
        public static int textAppearanceListItemSecondary
        -

        Must be a reference to another resource, in the form "@[+][package:]type:name" -or to a theme attribute in the form "?[package:][type:]name".

        -
      • -
      - - - -
        -
      • -

        textAppearanceListItemSmall

        -
        public static int textAppearanceListItemSmall
        -

        Must be a reference to another resource, in the form "@[+][package:]type:name" -or to a theme attribute in the form "?[package:][type:]name".

        -
      • -
      - - - -
        -
      • -

        textAppearancePopupMenuHeader

        -
        public static int textAppearancePopupMenuHeader
        -

        Must be a reference to another resource, in the form "@[+][package:]type:name" -or to a theme attribute in the form "?[package:][type:]name".

        -
      • -
      - - - -
        -
      • -

        textAppearanceSearchResultSubtitle

        -
        public static int textAppearanceSearchResultSubtitle
        -

        Must be a reference to another resource, in the form "@[+][package:]type:name" -or to a theme attribute in the form "?[package:][type:]name".

        -
      • -
      - - - -
        -
      • -

        textAppearanceSearchResultTitle

        -
        public static int textAppearanceSearchResultTitle
        -

        Must be a reference to another resource, in the form "@[+][package:]type:name" -or to a theme attribute in the form "?[package:][type:]name".

        -
      • -
      - - - -
        -
      • -

        textAppearanceSmallPopupMenu

        -
        public static int textAppearanceSmallPopupMenu
        -

        Must be a reference to another resource, in the form "@[+][package:]type:name" -or to a theme attribute in the form "?[package:][type:]name".

        -
      • -
      - - - -
        -
      • -

        textColorAlertDialogListItem

        -
        public static int textColorAlertDialogListItem
        -

        May be a reference to another resource, in the form "@[+][package:]type:name" -or to a theme attribute in the form "?[package:][type:]name". -

        May be a color value, in the form of "#rgb", "#argb", -"#rrggbb", or "#aarrggbb".

        -
      • -
      - - - -
        -
      • -

        textColorSearchUrl

        -
        public static int textColorSearchUrl
        -

        May be a reference to another resource, in the form "@[+][package:]type:name" -or to a theme attribute in the form "?[package:][type:]name". -

        May be a color value, in the form of "#rgb", "#argb", -"#rrggbb", or "#aarrggbb".

        -
      • -
      - - - -
        -
      • -

        texts

        -
        public static int texts
        -

        Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. -

        This may also be a reference to a resource (in the form -"@[package:]type:name") or -theme attribute (in the form -"?[package:][type:]name") -containing a value of this type.

        -
      • -
      - - - -
        -
      • -

        theme

        -
        public static int theme
        -

        Must be a reference to another resource, in the form "@[+][package:]type:name" -or to a theme attribute in the form "?[package:][type:]name".

        -
      • -
      - - - -
        -
      • -

        thickness

        -
        public static int thickness
        -

        Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". -Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), -in (inches), mm (millimeters). -

        This may also be a reference to a resource (in the form -"@[package:]type:name") or -theme attribute (in the form -"?[package:][type:]name") -containing a value of this type.

        -
      • -
      - - - -
        -
      • -

        thumbTextPadding

        -
        public static int thumbTextPadding
        -

        Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". -Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), -in (inches), mm (millimeters). -

        This may also be a reference to a resource (in the form -"@[package:]type:name") or -theme attribute (in the form -"?[package:][type:]name") -containing a value of this type.

        -
      • -
      - - - -
        -
      • -

        thumbTint

        -
        public static int thumbTint
        -

        Must be a color value, in the form of "#rgb", "#argb", -"#rrggbb", or "#aarrggbb". -

        This may also be a reference to a resource (in the form -"@[package:]type:name") or -theme attribute (in the form -"?[package:][type:]name") -containing a value of this type.

        -
      • -
      - - - -
        -
      • -

        thumbTintMode

        -
        public static int thumbTintMode
        -

        Must be one of the following constant values.

        - ---- - - - - - - -
        ConstantValueDescription
        src_over3
        src_in5
        src_atop9
        multiply14
        screen15
        add16
        -
      • -
      - - - -
        -
      • -

        tickMark

        -
        public static int tickMark
        -

        Must be a reference to another resource, in the form "@[+][package:]type:name" -or to a theme attribute in the form "?[package:][type:]name".

        -
      • -
      - - - -
        -
      • -

        tickMarkTint

        -
        public static int tickMarkTint
        -

        Must be a color value, in the form of "#rgb", "#argb", -"#rrggbb", or "#aarrggbb". -

        This may also be a reference to a resource (in the form -"@[package:]type:name") or -theme attribute (in the form -"?[package:][type:]name") -containing a value of this type.

        -
      • -
      - - - -
        -
      • -

        tickMarkTintMode

        -
        public static int tickMarkTintMode
        -

        Must be one of the following constant values.

        - ---- - - - - - - -
        ConstantValueDescription
        src_over3
        src_in5
        src_atop9
        multiply14
        screen15
        add16
        -
      • -
      - - - -
        -
      • -

        timeout

        -
        public static int timeout
        -

        Must be an integer value, such as "100". -

        This may also be a reference to a resource (in the form -"@[package:]type:name") or -theme attribute (in the form -"?[package:][type:]name") -containing a value of this type.

        -
      • -
      - - - -
        -
      • -

        tint

        -
        public static int tint
        -

        Must be a color value, in the form of "#rgb", "#argb", -"#rrggbb", or "#aarrggbb". -

        This may also be a reference to a resource (in the form -"@[package:]type:name") or -theme attribute (in the form -"?[package:][type:]name") -containing a value of this type.

        -
      • -
      - - - -
        -
      • -

        tintMode

        -
        public static int tintMode
        -

        Must be one of the following constant values.

        - ---- - - - - - -
        ConstantValueDescription
        src_over3
        src_in5
        src_atop9
        multiply14
        screen15
        -
      • -
      - - - -
        -
      • -

        title

        -
        public static int title
        -

        Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. -

        This may also be a reference to a resource (in the form -"@[package:]type:name") or -theme attribute (in the form -"?[package:][type:]name") -containing a value of this type.

        -
      • -
      - - - -
        -
      • -

        titleMargin

        -
        public static int titleMargin
        -

        Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". -Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), -in (inches), mm (millimeters). -

        This may also be a reference to a resource (in the form -"@[package:]type:name") or -theme attribute (in the form -"?[package:][type:]name") -containing a value of this type.

        -
      • -
      - - - -
        -
      • -

        titleMarginBottom

        -
        public static int titleMarginBottom
        -

        Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". -Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), -in (inches), mm (millimeters). -

        This may also be a reference to a resource (in the form -"@[package:]type:name") or -theme attribute (in the form -"?[package:][type:]name") -containing a value of this type.

        -
      • -
      - - - -
        -
      • -

        titleMarginEnd

        -
        public static int titleMarginEnd
        -

        Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". -Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), -in (inches), mm (millimeters). -

        This may also be a reference to a resource (in the form -"@[package:]type:name") or -theme attribute (in the form -"?[package:][type:]name") -containing a value of this type.

        -
      • -
      - - - -
        -
      • -

        titleMarginStart

        -
        public static int titleMarginStart
        -

        Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". -Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), -in (inches), mm (millimeters). -

        This may also be a reference to a resource (in the form -"@[package:]type:name") or -theme attribute (in the form -"?[package:][type:]name") -containing a value of this type.

        -
      • -
      - - - -
        -
      • -

        titleMarginTop

        -
        public static int titleMarginTop
        -

        Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". -Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), -in (inches), mm (millimeters). -

        This may also be a reference to a resource (in the form -"@[package:]type:name") or -theme attribute (in the form -"?[package:][type:]name") -containing a value of this type.

        -
      • -
      - - - -
        -
      • -

        titleMargins

        -
        public static int titleMargins
        -

        Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". -Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), -in (inches), mm (millimeters). -

        This may also be a reference to a resource (in the form -"@[package:]type:name") or -theme attribute (in the form -"?[package:][type:]name") -containing a value of this type.

        -
      • -
      - - - -
        -
      • -

        titleTextAppearance

        -
        public static int titleTextAppearance
        -

        Must be a reference to another resource, in the form "@[+][package:]type:name" -or to a theme attribute in the form "?[package:][type:]name".

        -
      • -
      - - - -
        -
      • -

        titleTextColor

        -
        public static int titleTextColor
        -

        Must be a color value, in the form of "#rgb", "#argb", -"#rrggbb", or "#aarrggbb". -

        This may also be a reference to a resource (in the form -"@[package:]type:name") or -theme attribute (in the form -"?[package:][type:]name") -containing a value of this type.

        -
      • -
      - - - -
        -
      • -

        titleTextStyle

        -
        public static int titleTextStyle
        -

        Must be a reference to another resource, in the form "@[+][package:]type:name" -or to a theme attribute in the form "?[package:][type:]name".

        -
      • -
      - - - -
        -
      • -

        toolbarNavigationButtonStyle

        -
        public static int toolbarNavigationButtonStyle
        -

        Must be a reference to another resource, in the form "@[+][package:]type:name" -or to a theme attribute in the form "?[package:][type:]name".

        -
      • -
      - - - -
        -
      • -

        toolbarStyle

        -
        public static int toolbarStyle
        -

        Must be a reference to another resource, in the form "@[+][package:]type:name" -or to a theme attribute in the form "?[package:][type:]name".

        -
      • -
      - - - -
        -
      • -

        track

        -
        public static int track
        -

        Must be a reference to another resource, in the form "@[+][package:]type:name" -or to a theme attribute in the form "?[package:][type:]name".

        -
      • -
      - - - -
        -
      • -

        trackTint

        -
        public static int trackTint
        -

        Must be a color value, in the form of "#rgb", "#argb", -"#rrggbb", or "#aarrggbb". -

        This may also be a reference to a resource (in the form -"@[package:]type:name") or -theme attribute (in the form -"?[package:][type:]name") -containing a value of this type.

        -
      • -
      - - - -
        -
      • -

        trackTintMode

        -
        public static int trackTintMode
        -

        Must be one of the following constant values.

        - ---- - - - - - - -
        ConstantValueDescription
        src_over3
        src_in5
        src_atop9
        multiply14
        screen15
        add16
        -
      • -
      - - - -
        -
      • -

        voiceIcon

        -
        public static int voiceIcon
        -

        Must be a reference to another resource, in the form "@[+][package:]type:name" -or to a theme attribute in the form "?[package:][type:]name".

        -
      • -
      - - - -
        -
      • -

        windowActionBar

        -
        public static int windowActionBar
        -

        Must be a boolean value, either "true" or "false". -

        This may also be a reference to a resource (in the form -"@[package:]type:name") or -theme attribute (in the form -"?[package:][type:]name") -containing a value of this type.

        -
      • -
      - - - -
        -
      • -

        windowActionBarOverlay

        -
        public static int windowActionBarOverlay
        -

        Must be a boolean value, either "true" or "false". -

        This may also be a reference to a resource (in the form -"@[package:]type:name") or -theme attribute (in the form -"?[package:][type:]name") -containing a value of this type.

        -
      • -
      - - - -
        -
      • -

        windowActionModeOverlay

        -
        public static int windowActionModeOverlay
        -

        Must be a boolean value, either "true" or "false". -

        This may also be a reference to a resource (in the form -"@[package:]type:name") or -theme attribute (in the form -"?[package:][type:]name") -containing a value of this type.

        -
      • -
      - - - -
        -
      • -

        windowFixedHeightMajor

        -
        public static int windowFixedHeightMajor
        -

        May be a dimension value, which is a floating point number appended with a unit such as "14.5sp". -Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), -in (inches), mm (millimeters). -

        May be a fractional value, which is a floating point number appended with either % or %p, such as "14.5%". -The % suffix always means a percentage of the base size; the optional %p suffix provides a size relative to -some parent container. -

        This may also be a reference to a resource (in the form -"@[package:]type:name") or -theme attribute (in the form -"?[package:][type:]name") -containing a value of this type.

        -
      • -
      - - - -
        -
      • -

        windowFixedHeightMinor

        -
        public static int windowFixedHeightMinor
        -

        May be a dimension value, which is a floating point number appended with a unit such as "14.5sp". -Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), -in (inches), mm (millimeters). -

        May be a fractional value, which is a floating point number appended with either % or %p, such as "14.5%". -The % suffix always means a percentage of the base size; the optional %p suffix provides a size relative to -some parent container. -

        This may also be a reference to a resource (in the form -"@[package:]type:name") or -theme attribute (in the form -"?[package:][type:]name") -containing a value of this type.

        -
      • -
      - - - -
        -
      • -

        windowFixedWidthMajor

        -
        public static int windowFixedWidthMajor
        -

        May be a dimension value, which is a floating point number appended with a unit such as "14.5sp". -Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), -in (inches), mm (millimeters). -

        May be a fractional value, which is a floating point number appended with either % or %p, such as "14.5%". -The % suffix always means a percentage of the base size; the optional %p suffix provides a size relative to -some parent container. -

        This may also be a reference to a resource (in the form -"@[package:]type:name") or -theme attribute (in the form -"?[package:][type:]name") -containing a value of this type.

        -
      • -
      - - - -
        -
      • -

        windowFixedWidthMinor

        -
        public static int windowFixedWidthMinor
        -

        May be a dimension value, which is a floating point number appended with a unit such as "14.5sp". -Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), -in (inches), mm (millimeters). -

        May be a fractional value, which is a floating point number appended with either % or %p, such as "14.5%". -The % suffix always means a percentage of the base size; the optional %p suffix provides a size relative to -some parent container. -

        This may also be a reference to a resource (in the form -"@[package:]type:name") or -theme attribute (in the form -"?[package:][type:]name") -containing a value of this type.

        -
      • -
      - - - -
        -
      • -

        windowMinWidthMajor

        -
        public static int windowMinWidthMajor
        -

        May be a dimension value, which is a floating point number appended with a unit such as "14.5sp". -Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), -in (inches), mm (millimeters). -

        May be a fractional value, which is a floating point number appended with either % or %p, such as "14.5%". -The % suffix always means a percentage of the base size; the optional %p suffix provides a size relative to -some parent container. -

        This may also be a reference to a resource (in the form -"@[package:]type:name") or -theme attribute (in the form -"?[package:][type:]name") -containing a value of this type.

        -
      • -
      - - - -
        -
      • -

        windowMinWidthMinor

        -
        public static int windowMinWidthMinor
        -

        May be a dimension value, which is a floating point number appended with a unit such as "14.5sp". -Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), -in (inches), mm (millimeters). -

        May be a fractional value, which is a floating point number appended with either % or %p, such as "14.5%". -The % suffix always means a percentage of the base size; the optional %p suffix provides a size relative to -some parent container. -

        This may also be a reference to a resource (in the form -"@[package:]type:name") or -theme attribute (in the form -"?[package:][type:]name") -containing a value of this type.

        -
      • -
      - - - -
        -
      • -

        windowNoTitle

        -
        public static int windowNoTitle
        -

        Must be a boolean value, either "true" or "false". -

        This may also be a reference to a resource (in the form -"@[package:]type:name") or -theme attribute (in the form -"?[package:][type:]name") -containing a value of this type.

        -
      • -
      -
    • -
    - -
      -
    • - - -

      Constructor Detail

      - - - -
        -
      • -

        attr

        -
        public attr()
        -
      • -
      -
    • -
    -
  • -
-
-
- - - - - - - diff --git a/docs/com/tomer/fadingtextview/R.bool.html b/docs/com/tomer/fadingtextview/R.bool.html deleted file mode 100644 index 0172bb2..0000000 --- a/docs/com/tomer/fadingtextview/R.bool.html +++ /dev/null @@ -1,329 +0,0 @@ - - - - - -R.bool - - - - - - - - - - - - -
-
com.tomer.fadingtextview
-

Class R.bool

-
-
-
    -
  • java.lang.Object
  • -
  • -
      -
    • com.tomer.fadingtextview.R.bool
    • -
    -
  • -
-
-
    -
  • -
    -
    Enclosing class:
    -
    R
    -
    -
    -
    -
    public static final class R.bool
    -extends java.lang.Object
    -
  • -
-
-
- -
-
-
    -
  • - -
      -
    • - - -

      Field Detail

      - - - -
        -
      • -

        abc_action_bar_embed_tabs

        -
        public static int abc_action_bar_embed_tabs
        -
      • -
      - - - -
        -
      • -

        abc_allow_stacked_button_bar

        -
        public static int abc_allow_stacked_button_bar
        -
      • -
      - - - -
        -
      • -

        abc_config_actionMenuItemAllCaps

        -
        public static int abc_config_actionMenuItemAllCaps
        -
      • -
      - - - -
        -
      • -

        abc_config_closeDialogWhenTouchOutside

        -
        public static int abc_config_closeDialogWhenTouchOutside
        -
      • -
      - - - -
        -
      • -

        abc_config_showMenuShortcutsWhenKeyboardPresent

        -
        public static int abc_config_showMenuShortcutsWhenKeyboardPresent
        -
      • -
      -
    • -
    - -
      -
    • - - -

      Constructor Detail

      - - - -
        -
      • -

        bool

        -
        public bool()
        -
      • -
      -
    • -
    -
  • -
-
-
- - - - - - - diff --git a/docs/com/tomer/fadingtextview/R.color.html b/docs/com/tomer/fadingtextview/R.color.html deleted file mode 100644 index d46374d..0000000 --- a/docs/com/tomer/fadingtextview/R.color.html +++ /dev/null @@ -1,1330 +0,0 @@ - - - - - -R.color - - - - - - - - - - - - -
-
com.tomer.fadingtextview
-

Class R.color

-
-
-
    -
  • java.lang.Object
  • -
  • -
      -
    • com.tomer.fadingtextview.R.color
    • -
    -
  • -
-
-
    -
  • -
    -
    Enclosing class:
    -
    R
    -
    -
    -
    -
    public static final class R.color
    -extends java.lang.Object
    -
  • -
-
-
- -
-
-
    -
  • - -
      -
    • - - -

      Field Detail

      - - - -
        -
      • -

        abc_background_cache_hint_selector_material_dark

        -
        public static int abc_background_cache_hint_selector_material_dark
        -
      • -
      - - - -
        -
      • -

        abc_background_cache_hint_selector_material_light

        -
        public static int abc_background_cache_hint_selector_material_light
        -
      • -
      - - - -
        -
      • -

        abc_btn_colored_borderless_text_material

        -
        public static int abc_btn_colored_borderless_text_material
        -
      • -
      - - - -
        -
      • -

        abc_btn_colored_text_material

        -
        public static int abc_btn_colored_text_material
        -
      • -
      - - - -
        -
      • -

        abc_color_highlight_material

        -
        public static int abc_color_highlight_material
        -
      • -
      - - - -
        -
      • -

        abc_hint_foreground_material_dark

        -
        public static int abc_hint_foreground_material_dark
        -
      • -
      - - - -
        -
      • -

        abc_hint_foreground_material_light

        -
        public static int abc_hint_foreground_material_light
        -
      • -
      - - - -
        -
      • -

        abc_input_method_navigation_guard

        -
        public static int abc_input_method_navigation_guard
        -
      • -
      - - - -
        -
      • -

        abc_primary_text_disable_only_material_dark

        -
        public static int abc_primary_text_disable_only_material_dark
        -
      • -
      - - - -
        -
      • -

        abc_primary_text_disable_only_material_light

        -
        public static int abc_primary_text_disable_only_material_light
        -
      • -
      - - - -
        -
      • -

        abc_primary_text_material_dark

        -
        public static int abc_primary_text_material_dark
        -
      • -
      - - - -
        -
      • -

        abc_primary_text_material_light

        -
        public static int abc_primary_text_material_light
        -
      • -
      - - - -
        -
      • -

        abc_search_url_text

        -
        public static int abc_search_url_text
        -
      • -
      - - - -
        -
      • -

        abc_search_url_text_normal

        -
        public static int abc_search_url_text_normal
        -
      • -
      - - - -
        -
      • -

        abc_search_url_text_pressed

        -
        public static int abc_search_url_text_pressed
        -
      • -
      - - - -
        -
      • -

        abc_search_url_text_selected

        -
        public static int abc_search_url_text_selected
        -
      • -
      - - - -
        -
      • -

        abc_secondary_text_material_dark

        -
        public static int abc_secondary_text_material_dark
        -
      • -
      - - - -
        -
      • -

        abc_secondary_text_material_light

        -
        public static int abc_secondary_text_material_light
        -
      • -
      - - - -
        -
      • -

        abc_tint_btn_checkable

        -
        public static int abc_tint_btn_checkable
        -
      • -
      - - - -
        -
      • -

        abc_tint_default

        -
        public static int abc_tint_default
        -
      • -
      - - - -
        -
      • -

        abc_tint_edittext

        -
        public static int abc_tint_edittext
        -
      • -
      - - - -
        -
      • -

        abc_tint_seek_thumb

        -
        public static int abc_tint_seek_thumb
        -
      • -
      - - - -
        -
      • -

        abc_tint_spinner

        -
        public static int abc_tint_spinner
        -
      • -
      - - - -
        -
      • -

        abc_tint_switch_thumb

        -
        public static int abc_tint_switch_thumb
        -
      • -
      - - - -
        -
      • -

        abc_tint_switch_track

        -
        public static int abc_tint_switch_track
        -
      • -
      - - - -
        -
      • -

        accent_material_dark

        -
        public static int accent_material_dark
        -
      • -
      - - - -
        -
      • -

        accent_material_light

        -
        public static int accent_material_light
        -
      • -
      - - - -
        -
      • -

        background_floating_material_dark

        -
        public static int background_floating_material_dark
        -
      • -
      - - - -
        -
      • -

        background_floating_material_light

        -
        public static int background_floating_material_light
        -
      • -
      - - - -
        -
      • -

        background_material_dark

        -
        public static int background_material_dark
        -
      • -
      - - - -
        -
      • -

        background_material_light

        -
        public static int background_material_light
        -
      • -
      - - - -
        -
      • -

        bright_foreground_disabled_material_dark

        -
        public static int bright_foreground_disabled_material_dark
        -
      • -
      - - - -
        -
      • -

        bright_foreground_disabled_material_light

        -
        public static int bright_foreground_disabled_material_light
        -
      • -
      - - - -
        -
      • -

        bright_foreground_inverse_material_dark

        -
        public static int bright_foreground_inverse_material_dark
        -
      • -
      - - - -
        -
      • -

        bright_foreground_inverse_material_light

        -
        public static int bright_foreground_inverse_material_light
        -
      • -
      - - - -
        -
      • -

        bright_foreground_material_dark

        -
        public static int bright_foreground_material_dark
        -
      • -
      - - - -
        -
      • -

        bright_foreground_material_light

        -
        public static int bright_foreground_material_light
        -
      • -
      - - - -
        -
      • -

        button_material_dark

        -
        public static int button_material_dark
        -
      • -
      - - - -
        -
      • -

        button_material_light

        -
        public static int button_material_light
        -
      • -
      - - - -
        -
      • -

        dim_foreground_disabled_material_dark

        -
        public static int dim_foreground_disabled_material_dark
        -
      • -
      - - - -
        -
      • -

        dim_foreground_disabled_material_light

        -
        public static int dim_foreground_disabled_material_light
        -
      • -
      - - - -
        -
      • -

        dim_foreground_material_dark

        -
        public static int dim_foreground_material_dark
        -
      • -
      - - - -
        -
      • -

        dim_foreground_material_light

        -
        public static int dim_foreground_material_light
        -
      • -
      - - - -
        -
      • -

        foreground_material_dark

        -
        public static int foreground_material_dark
        -
      • -
      - - - -
        -
      • -

        foreground_material_light

        -
        public static int foreground_material_light
        -
      • -
      - - - -
        -
      • -

        highlighted_text_material_dark

        -
        public static int highlighted_text_material_dark
        -
      • -
      - - - -
        -
      • -

        highlighted_text_material_light

        -
        public static int highlighted_text_material_light
        -
      • -
      - - - -
        -
      • -

        material_blue_grey_800

        -
        public static int material_blue_grey_800
        -
      • -
      - - - -
        -
      • -

        material_blue_grey_900

        -
        public static int material_blue_grey_900
        -
      • -
      - - - -
        -
      • -

        material_blue_grey_950

        -
        public static int material_blue_grey_950
        -
      • -
      - - - -
        -
      • -

        material_deep_teal_200

        -
        public static int material_deep_teal_200
        -
      • -
      - - - -
        -
      • -

        material_deep_teal_500

        -
        public static int material_deep_teal_500
        -
      • -
      - - - -
        -
      • -

        material_grey_100

        -
        public static int material_grey_100
        -
      • -
      - - - -
        -
      • -

        material_grey_300

        -
        public static int material_grey_300
        -
      • -
      - - - -
        -
      • -

        material_grey_50

        -
        public static int material_grey_50
        -
      • -
      - - - -
        -
      • -

        material_grey_600

        -
        public static int material_grey_600
        -
      • -
      - - - -
        -
      • -

        material_grey_800

        -
        public static int material_grey_800
        -
      • -
      - - - -
        -
      • -

        material_grey_850

        -
        public static int material_grey_850
        -
      • -
      - - - -
        -
      • -

        material_grey_900

        -
        public static int material_grey_900
        -
      • -
      - - - -
        -
      • -

        notification_action_color_filter

        -
        public static int notification_action_color_filter
        -
      • -
      - - - -
        -
      • -

        notification_icon_bg_color

        -
        public static int notification_icon_bg_color
        -
      • -
      - - - -
        -
      • -

        notification_material_background_media_default_color

        -
        public static int notification_material_background_media_default_color
        -
      • -
      - - - -
        -
      • -

        primary_dark_material_dark

        -
        public static int primary_dark_material_dark
        -
      • -
      - - - -
        -
      • -

        primary_dark_material_light

        -
        public static int primary_dark_material_light
        -
      • -
      - - - -
        -
      • -

        primary_material_dark

        -
        public static int primary_material_dark
        -
      • -
      - - - -
        -
      • -

        primary_material_light

        -
        public static int primary_material_light
        -
      • -
      - - - -
        -
      • -

        primary_text_default_material_dark

        -
        public static int primary_text_default_material_dark
        -
      • -
      - - - -
        -
      • -

        primary_text_default_material_light

        -
        public static int primary_text_default_material_light
        -
      • -
      - - - -
        -
      • -

        primary_text_disabled_material_dark

        -
        public static int primary_text_disabled_material_dark
        -
      • -
      - - - -
        -
      • -

        primary_text_disabled_material_light

        -
        public static int primary_text_disabled_material_light
        -
      • -
      - - - -
        -
      • -

        ripple_material_dark

        -
        public static int ripple_material_dark
        -
      • -
      - - - -
        -
      • -

        ripple_material_light

        -
        public static int ripple_material_light
        -
      • -
      - - - -
        -
      • -

        secondary_text_default_material_dark

        -
        public static int secondary_text_default_material_dark
        -
      • -
      - - - -
        -
      • -

        secondary_text_default_material_light

        -
        public static int secondary_text_default_material_light
        -
      • -
      - - - -
        -
      • -

        secondary_text_disabled_material_dark

        -
        public static int secondary_text_disabled_material_dark
        -
      • -
      - - - -
        -
      • -

        secondary_text_disabled_material_light

        -
        public static int secondary_text_disabled_material_light
        -
      • -
      - - - -
        -
      • -

        switch_thumb_disabled_material_dark

        -
        public static int switch_thumb_disabled_material_dark
        -
      • -
      - - - -
        -
      • -

        switch_thumb_disabled_material_light

        -
        public static int switch_thumb_disabled_material_light
        -
      • -
      - - - -
        -
      • -

        switch_thumb_material_dark

        -
        public static int switch_thumb_material_dark
        -
      • -
      - - - -
        -
      • -

        switch_thumb_material_light

        -
        public static int switch_thumb_material_light
        -
      • -
      - - - -
        -
      • -

        switch_thumb_normal_material_dark

        -
        public static int switch_thumb_normal_material_dark
        -
      • -
      - - - -
        -
      • -

        switch_thumb_normal_material_light

        -
        public static int switch_thumb_normal_material_light
        -
      • -
      -
    • -
    - -
      -
    • - - -

      Constructor Detail

      - - - -
        -
      • -

        color

        -
        public color()
        -
      • -
      -
    • -
    -
  • -
-
-
- - - - - - - diff --git a/docs/com/tomer/fadingtextview/R.dimen.html b/docs/com/tomer/fadingtextview/R.dimen.html deleted file mode 100644 index a5c77bc..0000000 --- a/docs/com/tomer/fadingtextview/R.dimen.html +++ /dev/null @@ -1,1538 +0,0 @@ - - - - - -R.dimen - - - - - - - - - - - - -
-
com.tomer.fadingtextview
-

Class R.dimen

-
-
-
    -
  • java.lang.Object
  • -
  • -
      -
    • com.tomer.fadingtextview.R.dimen
    • -
    -
  • -
-
-
    -
  • -
    -
    Enclosing class:
    -
    R
    -
    -
    -
    -
    public static final class R.dimen
    -extends java.lang.Object
    -
  • -
-
-
- -
-
-
    -
  • - -
      -
    • - - -

      Field Detail

      - - - -
        -
      • -

        abc_action_bar_content_inset_material

        -
        public static int abc_action_bar_content_inset_material
        -
      • -
      - - - -
        -
      • -

        abc_action_bar_content_inset_with_nav

        -
        public static int abc_action_bar_content_inset_with_nav
        -
      • -
      - - - -
        -
      • -

        abc_action_bar_default_height_material

        -
        public static int abc_action_bar_default_height_material
        -
      • -
      - - - -
        -
      • -

        abc_action_bar_default_padding_end_material

        -
        public static int abc_action_bar_default_padding_end_material
        -
      • -
      - - - -
        -
      • -

        abc_action_bar_default_padding_start_material

        -
        public static int abc_action_bar_default_padding_start_material
        -
      • -
      - - - -
        -
      • -

        abc_action_bar_elevation_material

        -
        public static int abc_action_bar_elevation_material
        -
      • -
      - - - -
        -
      • -

        abc_action_bar_icon_vertical_padding_material

        -
        public static int abc_action_bar_icon_vertical_padding_material
        -
      • -
      - - - -
        -
      • -

        abc_action_bar_overflow_padding_end_material

        -
        public static int abc_action_bar_overflow_padding_end_material
        -
      • -
      - - - -
        -
      • -

        abc_action_bar_overflow_padding_start_material

        -
        public static int abc_action_bar_overflow_padding_start_material
        -
      • -
      - - - -
        -
      • -

        abc_action_bar_progress_bar_size

        -
        public static int abc_action_bar_progress_bar_size
        -
      • -
      - - - -
        -
      • -

        abc_action_bar_stacked_max_height

        -
        public static int abc_action_bar_stacked_max_height
        -
      • -
      - - - -
        -
      • -

        abc_action_bar_stacked_tab_max_width

        -
        public static int abc_action_bar_stacked_tab_max_width
        -
      • -
      - - - -
        -
      • -

        abc_action_bar_subtitle_bottom_margin_material

        -
        public static int abc_action_bar_subtitle_bottom_margin_material
        -
      • -
      - - - -
        -
      • -

        abc_action_bar_subtitle_top_margin_material

        -
        public static int abc_action_bar_subtitle_top_margin_material
        -
      • -
      - - - -
        -
      • -

        abc_action_button_min_height_material

        -
        public static int abc_action_button_min_height_material
        -
      • -
      - - - -
        -
      • -

        abc_action_button_min_width_material

        -
        public static int abc_action_button_min_width_material
        -
      • -
      - - - -
        -
      • -

        abc_action_button_min_width_overflow_material

        -
        public static int abc_action_button_min_width_overflow_material
        -
      • -
      - - - -
        -
      • -

        abc_alert_dialog_button_bar_height

        -
        public static int abc_alert_dialog_button_bar_height
        -
      • -
      - - - -
        -
      • -

        abc_button_inset_horizontal_material

        -
        public static int abc_button_inset_horizontal_material
        -
      • -
      - - - -
        -
      • -

        abc_button_inset_vertical_material

        -
        public static int abc_button_inset_vertical_material
        -
      • -
      - - - -
        -
      • -

        abc_button_padding_horizontal_material

        -
        public static int abc_button_padding_horizontal_material
        -
      • -
      - - - -
        -
      • -

        abc_button_padding_vertical_material

        -
        public static int abc_button_padding_vertical_material
        -
      • -
      - - - -
        -
      • -

        abc_cascading_menus_min_smallest_width

        -
        public static int abc_cascading_menus_min_smallest_width
        -
      • -
      - - - -
        -
      • -

        abc_config_prefDialogWidth

        -
        public static int abc_config_prefDialogWidth
        -
      • -
      - - - -
        -
      • -

        abc_control_corner_material

        -
        public static int abc_control_corner_material
        -
      • -
      - - - -
        -
      • -

        abc_control_inset_material

        -
        public static int abc_control_inset_material
        -
      • -
      - - - -
        -
      • -

        abc_control_padding_material

        -
        public static int abc_control_padding_material
        -
      • -
      - - - -
        -
      • -

        abc_dialog_fixed_height_major

        -
        public static int abc_dialog_fixed_height_major
        -
      • -
      - - - -
        -
      • -

        abc_dialog_fixed_height_minor

        -
        public static int abc_dialog_fixed_height_minor
        -
      • -
      - - - -
        -
      • -

        abc_dialog_fixed_width_major

        -
        public static int abc_dialog_fixed_width_major
        -
      • -
      - - - -
        -
      • -

        abc_dialog_fixed_width_minor

        -
        public static int abc_dialog_fixed_width_minor
        -
      • -
      - - - -
        -
      • -

        abc_dialog_list_padding_bottom_no_buttons

        -
        public static int abc_dialog_list_padding_bottom_no_buttons
        -
      • -
      - - - -
        -
      • -

        abc_dialog_list_padding_top_no_title

        -
        public static int abc_dialog_list_padding_top_no_title
        -
      • -
      - - - -
        -
      • -

        abc_dialog_min_width_major

        -
        public static int abc_dialog_min_width_major
        -
      • -
      - - - -
        -
      • -

        abc_dialog_min_width_minor

        -
        public static int abc_dialog_min_width_minor
        -
      • -
      - - - -
        -
      • -

        abc_dialog_padding_material

        -
        public static int abc_dialog_padding_material
        -
      • -
      - - - -
        -
      • -

        abc_dialog_padding_top_material

        -
        public static int abc_dialog_padding_top_material
        -
      • -
      - - - -
        -
      • -

        abc_dialog_title_divider_material

        -
        public static int abc_dialog_title_divider_material
        -
      • -
      - - - -
        -
      • -

        abc_disabled_alpha_material_dark

        -
        public static int abc_disabled_alpha_material_dark
        -
      • -
      - - - -
        -
      • -

        abc_disabled_alpha_material_light

        -
        public static int abc_disabled_alpha_material_light
        -
      • -
      - - - -
        -
      • -

        abc_dropdownitem_icon_width

        -
        public static int abc_dropdownitem_icon_width
        -
      • -
      - - - -
        -
      • -

        abc_dropdownitem_text_padding_left

        -
        public static int abc_dropdownitem_text_padding_left
        -
      • -
      - - - -
        -
      • -

        abc_dropdownitem_text_padding_right

        -
        public static int abc_dropdownitem_text_padding_right
        -
      • -
      - - - -
        -
      • -

        abc_edit_text_inset_bottom_material

        -
        public static int abc_edit_text_inset_bottom_material
        -
      • -
      - - - -
        -
      • -

        abc_edit_text_inset_horizontal_material

        -
        public static int abc_edit_text_inset_horizontal_material
        -
      • -
      - - - -
        -
      • -

        abc_edit_text_inset_top_material

        -
        public static int abc_edit_text_inset_top_material
        -
      • -
      - - - -
        -
      • -

        abc_floating_window_z

        -
        public static int abc_floating_window_z
        -
      • -
      - - - -
        -
      • -

        abc_list_item_padding_horizontal_material

        -
        public static int abc_list_item_padding_horizontal_material
        -
      • -
      - - - -
        -
      • -

        abc_panel_menu_list_width

        -
        public static int abc_panel_menu_list_width
        -
      • -
      - - - -
        -
      • -

        abc_progress_bar_height_material

        -
        public static int abc_progress_bar_height_material
        -
      • -
      - - - -
        -
      • -

        abc_search_view_preferred_height

        -
        public static int abc_search_view_preferred_height
        -
      • -
      - - - -
        -
      • -

        abc_search_view_preferred_width

        -
        public static int abc_search_view_preferred_width
        -
      • -
      - - - -
        -
      • -

        abc_seekbar_track_background_height_material

        -
        public static int abc_seekbar_track_background_height_material
        -
      • -
      - - - -
        -
      • -

        abc_seekbar_track_progress_height_material

        -
        public static int abc_seekbar_track_progress_height_material
        -
      • -
      - - - -
        -
      • -

        abc_select_dialog_padding_start_material

        -
        public static int abc_select_dialog_padding_start_material
        -
      • -
      - - - -
        -
      • -

        abc_switch_padding

        -
        public static int abc_switch_padding
        -
      • -
      - - - -
        -
      • -

        abc_text_size_body_1_material

        -
        public static int abc_text_size_body_1_material
        -
      • -
      - - - -
        -
      • -

        abc_text_size_body_2_material

        -
        public static int abc_text_size_body_2_material
        -
      • -
      - - - -
        -
      • -

        abc_text_size_button_material

        -
        public static int abc_text_size_button_material
        -
      • -
      - - - -
        -
      • -

        abc_text_size_caption_material

        -
        public static int abc_text_size_caption_material
        -
      • -
      - - - -
        -
      • -

        abc_text_size_display_1_material

        -
        public static int abc_text_size_display_1_material
        -
      • -
      - - - -
        -
      • -

        abc_text_size_display_2_material

        -
        public static int abc_text_size_display_2_material
        -
      • -
      - - - -
        -
      • -

        abc_text_size_display_3_material

        -
        public static int abc_text_size_display_3_material
        -
      • -
      - - - -
        -
      • -

        abc_text_size_display_4_material

        -
        public static int abc_text_size_display_4_material
        -
      • -
      - - - -
        -
      • -

        abc_text_size_headline_material

        -
        public static int abc_text_size_headline_material
        -
      • -
      - - - -
        -
      • -

        abc_text_size_large_material

        -
        public static int abc_text_size_large_material
        -
      • -
      - - - -
        -
      • -

        abc_text_size_medium_material

        -
        public static int abc_text_size_medium_material
        -
      • -
      - - - -
        -
      • -

        abc_text_size_menu_header_material

        -
        public static int abc_text_size_menu_header_material
        -
      • -
      - - - -
        -
      • -

        abc_text_size_menu_material

        -
        public static int abc_text_size_menu_material
        -
      • -
      - - - -
        -
      • -

        abc_text_size_small_material

        -
        public static int abc_text_size_small_material
        -
      • -
      - - - -
        -
      • -

        abc_text_size_subhead_material

        -
        public static int abc_text_size_subhead_material
        -
      • -
      - - - -
        -
      • -

        abc_text_size_subtitle_material_toolbar

        -
        public static int abc_text_size_subtitle_material_toolbar
        -
      • -
      - - - -
        -
      • -

        abc_text_size_title_material

        -
        public static int abc_text_size_title_material
        -
      • -
      - - - -
        -
      • -

        abc_text_size_title_material_toolbar

        -
        public static int abc_text_size_title_material_toolbar
        -
      • -
      - - - -
        -
      • -

        disabled_alpha_material_dark

        -
        public static int disabled_alpha_material_dark
        -
      • -
      - - - -
        -
      • -

        disabled_alpha_material_light

        -
        public static int disabled_alpha_material_light
        -
      • -
      - - - -
        -
      • -

        highlight_alpha_material_colored

        -
        public static int highlight_alpha_material_colored
        -
      • -
      - - - -
        -
      • -

        highlight_alpha_material_dark

        -
        public static int highlight_alpha_material_dark
        -
      • -
      - - - -
        -
      • -

        highlight_alpha_material_light

        -
        public static int highlight_alpha_material_light
        -
      • -
      - - - -
        -
      • -

        hint_alpha_material_dark

        -
        public static int hint_alpha_material_dark
        -
      • -
      - - - -
        -
      • -

        hint_alpha_material_light

        -
        public static int hint_alpha_material_light
        -
      • -
      - - - -
        -
      • -

        hint_pressed_alpha_material_dark

        -
        public static int hint_pressed_alpha_material_dark
        -
      • -
      - - - -
        -
      • -

        hint_pressed_alpha_material_light

        -
        public static int hint_pressed_alpha_material_light
        -
      • -
      - - - -
        -
      • -

        notification_action_icon_size

        -
        public static int notification_action_icon_size
        -
      • -
      - - - -
        -
      • -

        notification_action_text_size

        -
        public static int notification_action_text_size
        -
      • -
      - - - -
        -
      • -

        notification_big_circle_margin

        -
        public static int notification_big_circle_margin
        -
      • -
      - - - -
        -
      • -

        notification_content_margin_start

        -
        public static int notification_content_margin_start
        -
      • -
      - - - -
        -
      • -

        notification_large_icon_height

        -
        public static int notification_large_icon_height
        -
      • -
      - - - -
        -
      • -

        notification_large_icon_width

        -
        public static int notification_large_icon_width
        -
      • -
      - - - -
        -
      • -

        notification_main_column_padding_top

        -
        public static int notification_main_column_padding_top
        -
      • -
      - - - -
        -
      • -

        notification_media_narrow_margin

        -
        public static int notification_media_narrow_margin
        -
      • -
      - - - -
        -
      • -

        notification_right_icon_size

        -
        public static int notification_right_icon_size
        -
      • -
      - - - -
        -
      • -

        notification_right_side_padding_top

        -
        public static int notification_right_side_padding_top
        -
      • -
      - - - -
        -
      • -

        notification_small_icon_background_padding

        -
        public static int notification_small_icon_background_padding
        -
      • -
      - - - -
        -
      • -

        notification_small_icon_size_as_large

        -
        public static int notification_small_icon_size_as_large
        -
      • -
      - - - -
        -
      • -

        notification_subtext_size

        -
        public static int notification_subtext_size
        -
      • -
      - - - -
        -
      • -

        notification_top_pad

        -
        public static int notification_top_pad
        -
      • -
      - - - -
        -
      • -

        notification_top_pad_large_text

        -
        public static int notification_top_pad_large_text
        -
      • -
      -
    • -
    - -
      -
    • - - -

      Constructor Detail

      - - - -
        -
      • -

        dimen

        -
        public dimen()
        -
      • -
      -
    • -
    -
  • -
-
-
- - - - - - - diff --git a/docs/com/tomer/fadingtextview/R.drawable.html b/docs/com/tomer/fadingtextview/R.drawable.html deleted file mode 100644 index 633a0f1..0000000 --- a/docs/com/tomer/fadingtextview/R.drawable.html +++ /dev/null @@ -1,1499 +0,0 @@ - - - - - -R.drawable - - - - - - - - - - - - -
-
com.tomer.fadingtextview
-

Class R.drawable

-
-
-
    -
  • java.lang.Object
  • -
  • -
      -
    • com.tomer.fadingtextview.R.drawable
    • -
    -
  • -
-
-
    -
  • -
    -
    Enclosing class:
    -
    R
    -
    -
    -
    -
    public static final class R.drawable
    -extends java.lang.Object
    -
  • -
-
-
- -
-
-
    -
  • - -
      -
    • - - -

      Field Detail

      - - - -
        -
      • -

        abc_ab_share_pack_mtrl_alpha

        -
        public static int abc_ab_share_pack_mtrl_alpha
        -
      • -
      - - - -
        -
      • -

        abc_action_bar_item_background_material

        -
        public static int abc_action_bar_item_background_material
        -
      • -
      - - - -
        -
      • -

        abc_btn_borderless_material

        -
        public static int abc_btn_borderless_material
        -
      • -
      - - - -
        -
      • -

        abc_btn_check_material

        -
        public static int abc_btn_check_material
        -
      • -
      - - - -
        -
      • -

        abc_btn_check_to_on_mtrl_000

        -
        public static int abc_btn_check_to_on_mtrl_000
        -
      • -
      - - - -
        -
      • -

        abc_btn_check_to_on_mtrl_015

        -
        public static int abc_btn_check_to_on_mtrl_015
        -
      • -
      - - - -
        -
      • -

        abc_btn_colored_material

        -
        public static int abc_btn_colored_material
        -
      • -
      - - - -
        -
      • -

        abc_btn_default_mtrl_shape

        -
        public static int abc_btn_default_mtrl_shape
        -
      • -
      - - - -
        -
      • -

        abc_btn_radio_material

        -
        public static int abc_btn_radio_material
        -
      • -
      - - - -
        -
      • -

        abc_btn_radio_to_on_mtrl_000

        -
        public static int abc_btn_radio_to_on_mtrl_000
        -
      • -
      - - - -
        -
      • -

        abc_btn_radio_to_on_mtrl_015

        -
        public static int abc_btn_radio_to_on_mtrl_015
        -
      • -
      - - - -
        -
      • -

        abc_btn_switch_to_on_mtrl_00001

        -
        public static int abc_btn_switch_to_on_mtrl_00001
        -
      • -
      - - - -
        -
      • -

        abc_btn_switch_to_on_mtrl_00012

        -
        public static int abc_btn_switch_to_on_mtrl_00012
        -
      • -
      - - - -
        -
      • -

        abc_cab_background_internal_bg

        -
        public static int abc_cab_background_internal_bg
        -
      • -
      - - - -
        -
      • -

        abc_cab_background_top_material

        -
        public static int abc_cab_background_top_material
        -
      • -
      - - - -
        -
      • -

        abc_cab_background_top_mtrl_alpha

        -
        public static int abc_cab_background_top_mtrl_alpha
        -
      • -
      - - - -
        -
      • -

        abc_control_background_material

        -
        public static int abc_control_background_material
        -
      • -
      - - - -
        -
      • -

        abc_dialog_material_background

        -
        public static int abc_dialog_material_background
        -
      • -
      - - - -
        -
      • -

        abc_edit_text_material

        -
        public static int abc_edit_text_material
        -
      • -
      - - - -
        -
      • -

        abc_ic_ab_back_material

        -
        public static int abc_ic_ab_back_material
        -
      • -
      - - - -
        -
      • -

        abc_ic_arrow_drop_right_black_24dp

        -
        public static int abc_ic_arrow_drop_right_black_24dp
        -
      • -
      - - - -
        -
      • -

        abc_ic_clear_material

        -
        public static int abc_ic_clear_material
        -
      • -
      - - - -
        -
      • -

        abc_ic_commit_search_api_mtrl_alpha

        -
        public static int abc_ic_commit_search_api_mtrl_alpha
        -
      • -
      - - - -
        -
      • -

        abc_ic_go_search_api_material

        -
        public static int abc_ic_go_search_api_material
        -
      • -
      - - - -
        -
      • -

        abc_ic_menu_copy_mtrl_am_alpha

        -
        public static int abc_ic_menu_copy_mtrl_am_alpha
        -
      • -
      - - - -
        -
      • -

        abc_ic_menu_cut_mtrl_alpha

        -
        public static int abc_ic_menu_cut_mtrl_alpha
        -
      • -
      - - - -
        -
      • -

        abc_ic_menu_overflow_material

        -
        public static int abc_ic_menu_overflow_material
        -
      • -
      - - - -
        -
      • -

        abc_ic_menu_paste_mtrl_am_alpha

        -
        public static int abc_ic_menu_paste_mtrl_am_alpha
        -
      • -
      - - - -
        -
      • -

        abc_ic_menu_selectall_mtrl_alpha

        -
        public static int abc_ic_menu_selectall_mtrl_alpha
        -
      • -
      - - - -
        -
      • -

        abc_ic_menu_share_mtrl_alpha

        -
        public static int abc_ic_menu_share_mtrl_alpha
        -
      • -
      - - - -
        -
      • -

        abc_ic_search_api_material

        -
        public static int abc_ic_search_api_material
        -
      • -
      - - - -
        -
      • -

        abc_ic_star_black_16dp

        -
        public static int abc_ic_star_black_16dp
        -
      • -
      - - - -
        -
      • -

        abc_ic_star_black_36dp

        -
        public static int abc_ic_star_black_36dp
        -
      • -
      - - - -
        -
      • -

        abc_ic_star_black_48dp

        -
        public static int abc_ic_star_black_48dp
        -
      • -
      - - - -
        -
      • -

        abc_ic_star_half_black_16dp

        -
        public static int abc_ic_star_half_black_16dp
        -
      • -
      - - - -
        -
      • -

        abc_ic_star_half_black_36dp

        -
        public static int abc_ic_star_half_black_36dp
        -
      • -
      - - - -
        -
      • -

        abc_ic_star_half_black_48dp

        -
        public static int abc_ic_star_half_black_48dp
        -
      • -
      - - - -
        -
      • -

        abc_ic_voice_search_api_material

        -
        public static int abc_ic_voice_search_api_material
        -
      • -
      - - - -
        -
      • -

        abc_item_background_holo_dark

        -
        public static int abc_item_background_holo_dark
        -
      • -
      - - - -
        -
      • -

        abc_item_background_holo_light

        -
        public static int abc_item_background_holo_light
        -
      • -
      - - - -
        -
      • -

        abc_list_divider_mtrl_alpha

        -
        public static int abc_list_divider_mtrl_alpha
        -
      • -
      - - - -
        -
      • -

        abc_list_focused_holo

        -
        public static int abc_list_focused_holo
        -
      • -
      - - - -
        -
      • -

        abc_list_longpressed_holo

        -
        public static int abc_list_longpressed_holo
        -
      • -
      - - - -
        -
      • -

        abc_list_pressed_holo_dark

        -
        public static int abc_list_pressed_holo_dark
        -
      • -
      - - - -
        -
      • -

        abc_list_pressed_holo_light

        -
        public static int abc_list_pressed_holo_light
        -
      • -
      - - - -
        -
      • -

        abc_list_selector_background_transition_holo_dark

        -
        public static int abc_list_selector_background_transition_holo_dark
        -
      • -
      - - - -
        -
      • -

        abc_list_selector_background_transition_holo_light

        -
        public static int abc_list_selector_background_transition_holo_light
        -
      • -
      - - - -
        -
      • -

        abc_list_selector_disabled_holo_dark

        -
        public static int abc_list_selector_disabled_holo_dark
        -
      • -
      - - - -
        -
      • -

        abc_list_selector_disabled_holo_light

        -
        public static int abc_list_selector_disabled_holo_light
        -
      • -
      - - - -
        -
      • -

        abc_list_selector_holo_dark

        -
        public static int abc_list_selector_holo_dark
        -
      • -
      - - - -
        -
      • -

        abc_list_selector_holo_light

        -
        public static int abc_list_selector_holo_light
        -
      • -
      - - - -
        -
      • -

        abc_menu_hardkey_panel_mtrl_mult

        -
        public static int abc_menu_hardkey_panel_mtrl_mult
        -
      • -
      - - - -
        -
      • -

        abc_popup_background_mtrl_mult

        -
        public static int abc_popup_background_mtrl_mult
        -
      • -
      - - - -
        -
      • -

        abc_ratingbar_indicator_material

        -
        public static int abc_ratingbar_indicator_material
        -
      • -
      - - - -
        -
      • -

        abc_ratingbar_material

        -
        public static int abc_ratingbar_material
        -
      • -
      - - - -
        -
      • -

        abc_ratingbar_small_material

        -
        public static int abc_ratingbar_small_material
        -
      • -
      - - - -
        -
      • -

        abc_scrubber_control_off_mtrl_alpha

        -
        public static int abc_scrubber_control_off_mtrl_alpha
        -
      • -
      - - - -
        -
      • -

        abc_scrubber_control_to_pressed_mtrl_000

        -
        public static int abc_scrubber_control_to_pressed_mtrl_000
        -
      • -
      - - - -
        -
      • -

        abc_scrubber_control_to_pressed_mtrl_005

        -
        public static int abc_scrubber_control_to_pressed_mtrl_005
        -
      • -
      - - - -
        -
      • -

        abc_scrubber_primary_mtrl_alpha

        -
        public static int abc_scrubber_primary_mtrl_alpha
        -
      • -
      - - - -
        -
      • -

        abc_scrubber_track_mtrl_alpha

        -
        public static int abc_scrubber_track_mtrl_alpha
        -
      • -
      - - - -
        -
      • -

        abc_seekbar_thumb_material

        -
        public static int abc_seekbar_thumb_material
        -
      • -
      - - - -
        -
      • -

        abc_seekbar_tick_mark_material

        -
        public static int abc_seekbar_tick_mark_material
        -
      • -
      - - - -
        -
      • -

        abc_seekbar_track_material

        -
        public static int abc_seekbar_track_material
        -
      • -
      - - - -
        -
      • -

        abc_spinner_mtrl_am_alpha

        -
        public static int abc_spinner_mtrl_am_alpha
        -
      • -
      - - - -
        -
      • -

        abc_spinner_textfield_background_material

        -
        public static int abc_spinner_textfield_background_material
        -
      • -
      - - - -
        -
      • -

        abc_switch_thumb_material

        -
        public static int abc_switch_thumb_material
        -
      • -
      - - - -
        -
      • -

        abc_switch_track_mtrl_alpha

        -
        public static int abc_switch_track_mtrl_alpha
        -
      • -
      - - - -
        -
      • -

        abc_tab_indicator_material

        -
        public static int abc_tab_indicator_material
        -
      • -
      - - - -
        -
      • -

        abc_tab_indicator_mtrl_alpha

        -
        public static int abc_tab_indicator_mtrl_alpha
        -
      • -
      - - - -
        -
      • -

        abc_text_cursor_material

        -
        public static int abc_text_cursor_material
        -
      • -
      - - - -
        -
      • -

        abc_text_select_handle_left_mtrl_dark

        -
        public static int abc_text_select_handle_left_mtrl_dark
        -
      • -
      - - - -
        -
      • -

        abc_text_select_handle_left_mtrl_light

        -
        public static int abc_text_select_handle_left_mtrl_light
        -
      • -
      - - - -
        -
      • -

        abc_text_select_handle_middle_mtrl_dark

        -
        public static int abc_text_select_handle_middle_mtrl_dark
        -
      • -
      - - - -
        -
      • -

        abc_text_select_handle_middle_mtrl_light

        -
        public static int abc_text_select_handle_middle_mtrl_light
        -
      • -
      - - - -
        -
      • -

        abc_text_select_handle_right_mtrl_dark

        -
        public static int abc_text_select_handle_right_mtrl_dark
        -
      • -
      - - - -
        -
      • -

        abc_text_select_handle_right_mtrl_light

        -
        public static int abc_text_select_handle_right_mtrl_light
        -
      • -
      - - - -
        -
      • -

        abc_textfield_activated_mtrl_alpha

        -
        public static int abc_textfield_activated_mtrl_alpha
        -
      • -
      - - - -
        -
      • -

        abc_textfield_default_mtrl_alpha

        -
        public static int abc_textfield_default_mtrl_alpha
        -
      • -
      - - - -
        -
      • -

        abc_textfield_search_activated_mtrl_alpha

        -
        public static int abc_textfield_search_activated_mtrl_alpha
        -
      • -
      - - - -
        -
      • -

        abc_textfield_search_default_mtrl_alpha

        -
        public static int abc_textfield_search_default_mtrl_alpha
        -
      • -
      - - - -
        -
      • -

        abc_textfield_search_material

        -
        public static int abc_textfield_search_material
        -
      • -
      - - - -
        -
      • -

        abc_vector_test

        -
        public static int abc_vector_test
        -
      • -
      - - - -
        -
      • -

        notification_action_background

        -
        public static int notification_action_background
        -
      • -
      - - - -
        -
      • -

        notification_bg

        -
        public static int notification_bg
        -
      • -
      - - - -
        -
      • -

        notification_bg_low

        -
        public static int notification_bg_low
        -
      • -
      - - - -
        -
      • -

        notification_bg_low_normal

        -
        public static int notification_bg_low_normal
        -
      • -
      - - - -
        -
      • -

        notification_bg_low_pressed

        -
        public static int notification_bg_low_pressed
        -
      • -
      - - - -
        -
      • -

        notification_bg_normal

        -
        public static int notification_bg_normal
        -
      • -
      - - - -
        -
      • -

        notification_bg_normal_pressed

        -
        public static int notification_bg_normal_pressed
        -
      • -
      - - - -
        -
      • -

        notification_icon_background

        -
        public static int notification_icon_background
        -
      • -
      - - - -
        -
      • -

        notification_template_icon_bg

        -
        public static int notification_template_icon_bg
        -
      • -
      - - - -
        -
      • -

        notification_template_icon_low_bg

        -
        public static int notification_template_icon_low_bg
        -
      • -
      - - - -
        -
      • -

        notification_tile_bg

        -
        public static int notification_tile_bg
        -
      • -
      - - - -
        -
      • -

        notify_panel_notification_icon_bg

        -
        public static int notify_panel_notification_icon_bg
        -
      • -
      -
    • -
    - -
      -
    • - - -

      Constructor Detail

      - - - -
        -
      • -

        drawable

        -
        public drawable()
        -
      • -
      -
    • -
    -
  • -
-
-
- - - - - - - diff --git a/docs/com/tomer/fadingtextview/R.html b/docs/com/tomer/fadingtextview/R.html deleted file mode 100644 index e830135..0000000 --- a/docs/com/tomer/fadingtextview/R.html +++ /dev/null @@ -1,300 +0,0 @@ - - - - - -R - - - - - - - - - - - - -
-
com.tomer.fadingtextview
-

Class R

-
-
-
    -
  • java.lang.Object
  • -
  • -
      -
    • com.tomer.fadingtextview.R
    • -
    -
  • -
-
-
    -
  • -
    -
    -
    public final class R
    -extends java.lang.Object
    -
  • -
-
-
-
    -
  • - -
      -
    • - - -

      Nested Class Summary

      - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
      Nested Classes 
      Modifier and TypeClass and Description
      static class R.anim 
      static class R.attr 
      static class R.bool 
      static class R.color 
      static class R.dimen 
      static class R.drawable 
      static class R.id 
      static class R.integer 
      static class R.layout 
      static class R.string 
      static class R.style 
      static class R.styleable 
      -
    • -
    - -
      -
    • - - -

      Constructor Summary

      - - - - - - - - -
      Constructors 
      Constructor and Description
      R() 
      -
    • -
    - -
      -
    • - - -

      Method Summary

      -
        -
      • - - -

        Methods inherited from class java.lang.Object

        -clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
      • -
      -
    • -
    -
  • -
-
-
-
    -
  • - -
      -
    • - - -

      Constructor Detail

      - - - -
        -
      • -

        R

        -
        public R()
        -
      • -
      -
    • -
    -
  • -
-
-
- - - - - - - diff --git a/docs/com/tomer/fadingtextview/R.id.html b/docs/com/tomer/fadingtextview/R.id.html deleted file mode 100644 index d9e360b..0000000 --- a/docs/com/tomer/fadingtextview/R.id.html +++ /dev/null @@ -1,1681 +0,0 @@ - - - - - -R.id - - - - - - - - - - - - -
-
com.tomer.fadingtextview
-

Class R.id

-
-
-
    -
  • java.lang.Object
  • -
  • -
      -
    • com.tomer.fadingtextview.R.id
    • -
    -
  • -
-
-
    -
  • -
    -
    Enclosing class:
    -
    R
    -
    -
    -
    -
    public static final class R.id
    -extends java.lang.Object
    -
  • -
-
-
- -
-
-
    -
  • - -
      -
    • - - -

      Field Detail

      - - - -
        -
      • -

        action0

        -
        public static int action0
        -
      • -
      - - - -
        -
      • -

        action_bar

        -
        public static int action_bar
        -
      • -
      - - - -
        -
      • -

        action_bar_activity_content

        -
        public static int action_bar_activity_content
        -
      • -
      - - - -
        -
      • -

        action_bar_container

        -
        public static int action_bar_container
        -
      • -
      - - - -
        -
      • -

        action_bar_root

        -
        public static int action_bar_root
        -
      • -
      - - - -
        -
      • -

        action_bar_spinner

        -
        public static int action_bar_spinner
        -
      • -
      - - - -
        -
      • -

        action_bar_subtitle

        -
        public static int action_bar_subtitle
        -
      • -
      - - - -
        -
      • -

        action_bar_title

        -
        public static int action_bar_title
        -
      • -
      - - - -
        -
      • -

        action_container

        -
        public static int action_container
        -
      • -
      - - - -
        -
      • -

        action_context_bar

        -
        public static int action_context_bar
        -
      • -
      - - - -
        -
      • -

        action_divider

        -
        public static int action_divider
        -
      • -
      - - - -
        -
      • -

        action_image

        -
        public static int action_image
        -
      • -
      - - - -
        -
      • -

        action_menu_divider

        -
        public static int action_menu_divider
        -
      • -
      - - - -
        -
      • -

        action_menu_presenter

        -
        public static int action_menu_presenter
        -
      • -
      - - - -
        -
      • -

        action_mode_bar

        -
        public static int action_mode_bar
        -
      • -
      - - - -
        -
      • -

        action_mode_bar_stub

        -
        public static int action_mode_bar_stub
        -
      • -
      - - - -
        -
      • -

        action_mode_close_button

        -
        public static int action_mode_close_button
        -
      • -
      - - - -
        -
      • -

        action_text

        -
        public static int action_text
        -
      • -
      - - - -
        -
      • -

        actions

        -
        public static int actions
        -
      • -
      - - - -
        -
      • -

        activity_chooser_view_content

        -
        public static int activity_chooser_view_content
        -
      • -
      - - - -
        -
      • -

        add

        -
        public static int add
        -
      • -
      - - - -
        -
      • -

        alertTitle

        -
        public static int alertTitle
        -
      • -
      - - - -
        -
      • -

        always

        -
        public static int always
        -
      • -
      - - - -
        -
      • -

        beginning

        -
        public static int beginning
        -
      • -
      - - - -
        -
      • -

        bottom

        -
        public static int bottom
        -
      • -
      - - - -
        -
      • -

        buttonPanel

        -
        public static int buttonPanel
        -
      • -
      - - - -
        -
      • -

        cancel_action

        -
        public static int cancel_action
        -
      • -
      - - - -
        -
      • -

        checkbox

        -
        public static int checkbox
        -
      • -
      - - - -
        -
      • -

        chronometer

        -
        public static int chronometer
        -
      • -
      - - - -
        -
      • -

        collapseActionView

        -
        public static int collapseActionView
        -
      • -
      - - - -
        -
      • -

        contentPanel

        -
        public static int contentPanel
        -
      • -
      - - - -
        -
      • -

        custom

        -
        public static int custom
        -
      • -
      - - - -
        -
      • -

        customPanel

        -
        public static int customPanel
        -
      • -
      - - - -
        -
      • -

        decor_content_parent

        -
        public static int decor_content_parent
        -
      • -
      - - - -
        -
      • -

        default_activity_button

        -
        public static int default_activity_button
        -
      • -
      - - - -
        -
      • -

        disableHome

        -
        public static int disableHome
        -
      • -
      - - - -
        -
      • -

        edit_query

        -
        public static int edit_query
        -
      • -
      - - - -
        -
      • -

        end

        -
        public static int end
        -
      • -
      - - - -
        -
      • -

        end_padder

        -
        public static int end_padder
        -
      • -
      - - - -
        -
      • -

        expand_activities_button

        -
        public static int expand_activities_button
        -
      • -
      - - - -
        -
      • -

        expanded_menu

        -
        public static int expanded_menu
        -
      • -
      - - - -
        -
      • -

        home

        -
        public static int home
        -
      • -
      - - - -
        -
      • -

        homeAsUp

        -
        public static int homeAsUp
        -
      • -
      - - - -
        -
      • -

        icon

        -
        public static int icon
        -
      • -
      - - - -
        -
      • -

        icon_group

        -
        public static int icon_group
        -
      • -
      - - - -
        -
      • -

        ifRoom

        -
        public static int ifRoom
        -
      • -
      - - - -
        -
      • -

        image

        -
        public static int image
        -
      • -
      - - - -
        -
      • -

        info

        -
        public static int info
        -
      • -
      - - - -
        -
      • -

        line1

        -
        public static int line1
        -
      • -
      - - - -
        -
      • -

        line3

        -
        public static int line3
        -
      • -
      - - - -
        -
      • -

        listMode

        -
        public static int listMode
        -
      • -
      - - - -
        -
      • -

        list_item

        -
        public static int list_item
        -
      • -
      - - - -
        -
      • -

        media_actions

        -
        public static int media_actions
        -
      • -
      - - - -
        -
      • -

        middle

        -
        public static int middle
        -
      • -
      - - - -
        -
      • -

        multiply

        -
        public static int multiply
        -
      • -
      - - - -
        -
      • -

        never

        -
        public static int never
        -
      • -
      - - - -
        -
      • -

        none

        -
        public static int none
        -
      • -
      - - - -
        -
      • -

        normal

        -
        public static int normal
        -
      • -
      - - - -
        -
      • -

        notification_background

        -
        public static int notification_background
        -
      • -
      - - - -
        -
      • -

        notification_main_column

        -
        public static int notification_main_column
        -
      • -
      - - - -
        -
      • -

        notification_main_column_container

        -
        public static int notification_main_column_container
        -
      • -
      - - - -
        -
      • -

        parentPanel

        -
        public static int parentPanel
        -
      • -
      - - - -
        -
      • -

        progress_circular

        -
        public static int progress_circular
        -
      • -
      - - - -
        -
      • -

        progress_horizontal

        -
        public static int progress_horizontal
        -
      • -
      - - - -
        -
      • -

        radio

        -
        public static int radio
        -
      • -
      - - - -
        -
      • -

        right_icon

        -
        public static int right_icon
        -
      • -
      - - - -
        -
      • -

        right_side

        -
        public static int right_side
        -
      • -
      - - - -
        -
      • -

        screen

        -
        public static int screen
        -
      • -
      - - - -
        -
      • -

        scrollIndicatorDown

        -
        public static int scrollIndicatorDown
        -
      • -
      - - - -
        -
      • -

        scrollIndicatorUp

        -
        public static int scrollIndicatorUp
        -
      • -
      - - - -
        -
      • -

        scrollView

        -
        public static int scrollView
        -
      • -
      - - - -
        -
      • -

        search_badge

        -
        public static int search_badge
        -
      • -
      - - - -
        -
      • -

        search_bar

        -
        public static int search_bar
        -
      • -
      - - - -
        -
      • -

        search_button

        -
        public static int search_button
        -
      • -
      - - - -
        -
      • -

        search_close_btn

        -
        public static int search_close_btn
        -
      • -
      - - - -
        -
      • -

        search_edit_frame

        -
        public static int search_edit_frame
        -
      • -
      - - - -
        -
      • -

        search_go_btn

        -
        public static int search_go_btn
        -
      • -
      - - - -
        -
      • -

        search_mag_icon

        -
        public static int search_mag_icon
        -
      • -
      - - - -
        -
      • -

        search_plate

        -
        public static int search_plate
        -
      • -
      - - - -
        -
      • -

        search_src_text

        -
        public static int search_src_text
        -
      • -
      - - - -
        -
      • -

        search_voice_btn

        -
        public static int search_voice_btn
        -
      • -
      - - - -
        -
      • -

        select_dialog_listview

        -
        public static int select_dialog_listview
        -
      • -
      - - - -
        -
      • -

        shortcut

        -
        public static int shortcut
        -
      • -
      - - - -
        -
      • -

        showCustom

        -
        public static int showCustom
        -
      • -
      - - - -
        -
      • -

        showHome

        -
        public static int showHome
        -
      • -
      - - - -
        -
      • -

        showTitle

        -
        public static int showTitle
        -
      • -
      - - - -
        -
      • -

        spacer

        -
        public static int spacer
        -
      • -
      - - - -
        -
      • -

        split_action_bar

        -
        public static int split_action_bar
        -
      • -
      - - - -
        -
      • -

        src_atop

        -
        public static int src_atop
        -
      • -
      - - - -
        -
      • -

        src_in

        -
        public static int src_in
        -
      • -
      - - - -
        -
      • -

        src_over

        -
        public static int src_over
        -
      • -
      - - - -
        -
      • -

        status_bar_latest_event_content

        -
        public static int status_bar_latest_event_content
        -
      • -
      - - - -
        -
      • -

        submenuarrow

        -
        public static int submenuarrow
        -
      • -
      - - - -
        -
      • -

        submit_area

        -
        public static int submit_area
        -
      • -
      - - - -
        -
      • -

        tabMode

        -
        public static int tabMode
        -
      • -
      - - - -
        -
      • -

        text

        -
        public static int text
        -
      • -
      - - - -
        -
      • -

        text2

        -
        public static int text2
        -
      • -
      - - - -
        -
      • -

        textSpacerNoButtons

        -
        public static int textSpacerNoButtons
        -
      • -
      - - - -
        -
      • -

        textSpacerNoTitle

        -
        public static int textSpacerNoTitle
        -
      • -
      - - - -
        -
      • -

        time

        -
        public static int time
        -
      • -
      - - - -
        -
      • -

        title

        -
        public static int title
        -
      • -
      - - - -
        -
      • -

        titleDividerNoCustom

        -
        public static int titleDividerNoCustom
        -
      • -
      - - - -
        -
      • -

        title_template

        -
        public static int title_template
        -
      • -
      - - - -
        -
      • -

        top

        -
        public static int top
        -
      • -
      - - - -
        -
      • -

        topPanel

        -
        public static int topPanel
        -
      • -
      - - - -
        -
      • -

        up

        -
        public static int up
        -
      • -
      - - - -
        -
      • -

        useLogo

        -
        public static int useLogo
        -
      • -
      - - - -
        -
      • -

        withText

        -
        public static int withText
        -
      • -
      - - - -
        -
      • -

        wrap_content

        -
        public static int wrap_content
        -
      • -
      -
    • -
    - -
      -
    • - - -

      Constructor Detail

      - - - -
        -
      • -

        id

        -
        public id()
        -
      • -
      -
    • -
    -
  • -
-
-
- - - - - - - diff --git a/docs/com/tomer/fadingtextview/R.integer.html b/docs/com/tomer/fadingtextview/R.integer.html deleted file mode 100644 index fc36ea8..0000000 --- a/docs/com/tomer/fadingtextview/R.integer.html +++ /dev/null @@ -1,316 +0,0 @@ - - - - - -R.integer - - - - - - - - - - - - -
-
com.tomer.fadingtextview
-

Class R.integer

-
-
-
    -
  • java.lang.Object
  • -
  • -
      -
    • com.tomer.fadingtextview.R.integer
    • -
    -
  • -
-
-
    -
  • -
    -
    Enclosing class:
    -
    R
    -
    -
    -
    -
    public static final class R.integer
    -extends java.lang.Object
    -
  • -
-
-
- -
-
-
    -
  • - -
      -
    • - - -

      Field Detail

      - - - -
        -
      • -

        abc_config_activityDefaultDur

        -
        public static int abc_config_activityDefaultDur
        -
      • -
      - - - -
        -
      • -

        abc_config_activityShortDur

        -
        public static int abc_config_activityShortDur
        -
      • -
      - - - -
        -
      • -

        cancel_button_image_alpha

        -
        public static int cancel_button_image_alpha
        -
      • -
      - - - -
        -
      • -

        status_bar_notification_info_maxnum

        -
        public static int status_bar_notification_info_maxnum
        -
      • -
      -
    • -
    - -
      -
    • - - -

      Constructor Detail

      - - - -
        -
      • -

        integer

        -
        public integer()
        -
      • -
      -
    • -
    -
  • -
-
-
- - - - - - - diff --git a/docs/com/tomer/fadingtextview/R.layout.html b/docs/com/tomer/fadingtextview/R.layout.html deleted file mode 100644 index f07418e..0000000 --- a/docs/com/tomer/fadingtextview/R.layout.html +++ /dev/null @@ -1,862 +0,0 @@ - - - - - -R.layout - - - - - - - - - - - - -
-
com.tomer.fadingtextview
-

Class R.layout

-
-
-
    -
  • java.lang.Object
  • -
  • -
      -
    • com.tomer.fadingtextview.R.layout
    • -
    -
  • -
-
-
    -
  • -
    -
    Enclosing class:
    -
    R
    -
    -
    -
    -
    public static final class R.layout
    -extends java.lang.Object
    -
  • -
-
-
- -
-
-
    -
  • - -
      -
    • - - -

      Field Detail

      - - - -
        -
      • -

        abc_action_bar_title_item

        -
        public static int abc_action_bar_title_item
        -
      • -
      - - - -
        -
      • -

        abc_action_bar_up_container

        -
        public static int abc_action_bar_up_container
        -
      • -
      - - - -
        -
      • -

        abc_action_bar_view_list_nav_layout

        -
        public static int abc_action_bar_view_list_nav_layout
        -
      • -
      - - - -
        -
      • -

        abc_action_menu_item_layout

        -
        public static int abc_action_menu_item_layout
        -
      • -
      - - - -
        -
      • -

        abc_action_menu_layout

        -
        public static int abc_action_menu_layout
        -
      • -
      - - - -
        -
      • -

        abc_action_mode_bar

        -
        public static int abc_action_mode_bar
        -
      • -
      - - - -
        -
      • -

        abc_action_mode_close_item_material

        -
        public static int abc_action_mode_close_item_material
        -
      • -
      - - - -
        -
      • -

        abc_activity_chooser_view

        -
        public static int abc_activity_chooser_view
        -
      • -
      - - - -
        -
      • -

        abc_activity_chooser_view_list_item

        -
        public static int abc_activity_chooser_view_list_item
        -
      • -
      - - - -
        -
      • -

        abc_alert_dialog_button_bar_material

        -
        public static int abc_alert_dialog_button_bar_material
        -
      • -
      - - - -
        -
      • -

        abc_alert_dialog_material

        -
        public static int abc_alert_dialog_material
        -
      • -
      - - - -
        -
      • -

        abc_alert_dialog_title_material

        -
        public static int abc_alert_dialog_title_material
        -
      • -
      - - - -
        -
      • -

        abc_dialog_title_material

        -
        public static int abc_dialog_title_material
        -
      • -
      - - - -
        -
      • -

        abc_expanded_menu_layout

        -
        public static int abc_expanded_menu_layout
        -
      • -
      - - - -
        -
      • -

        abc_list_menu_item_checkbox

        -
        public static int abc_list_menu_item_checkbox
        -
      • -
      - - - -
        -
      • -

        abc_list_menu_item_icon

        -
        public static int abc_list_menu_item_icon
        -
      • -
      - - - -
        -
      • -

        abc_list_menu_item_layout

        -
        public static int abc_list_menu_item_layout
        -
      • -
      - - - -
        -
      • -

        abc_list_menu_item_radio

        -
        public static int abc_list_menu_item_radio
        -
      • -
      - - - -
        -
      • -

        abc_popup_menu_header_item_layout

        -
        public static int abc_popup_menu_header_item_layout
        -
      • -
      - - - -
        -
      • -

        abc_popup_menu_item_layout

        -
        public static int abc_popup_menu_item_layout
        -
      • -
      - - - -
        -
      • -

        abc_screen_content_include

        -
        public static int abc_screen_content_include
        -
      • -
      - - - -
        -
      • -

        abc_screen_simple

        -
        public static int abc_screen_simple
        -
      • -
      - - - -
        -
      • -

        abc_screen_simple_overlay_action_mode

        -
        public static int abc_screen_simple_overlay_action_mode
        -
      • -
      - - - -
        -
      • -

        abc_screen_toolbar

        -
        public static int abc_screen_toolbar
        -
      • -
      - - - -
        -
      • -

        abc_search_dropdown_item_icons_2line

        -
        public static int abc_search_dropdown_item_icons_2line
        -
      • -
      - - - -
        -
      • -

        abc_search_view

        -
        public static int abc_search_view
        -
      • -
      - - - -
        -
      • -

        abc_select_dialog_material

        -
        public static int abc_select_dialog_material
        -
      • -
      - - - -
        -
      • -

        notification_action

        -
        public static int notification_action
        -
      • -
      - - - -
        -
      • -

        notification_action_tombstone

        -
        public static int notification_action_tombstone
        -
      • -
      - - - -
        -
      • -

        notification_media_action

        -
        public static int notification_media_action
        -
      • -
      - - - -
        -
      • -

        notification_media_cancel_action

        -
        public static int notification_media_cancel_action
        -
      • -
      - - - -
        -
      • -

        notification_template_big_media

        -
        public static int notification_template_big_media
        -
      • -
      - - - -
        -
      • -

        notification_template_big_media_custom

        -
        public static int notification_template_big_media_custom
        -
      • -
      - - - -
        -
      • -

        notification_template_big_media_narrow

        -
        public static int notification_template_big_media_narrow
        -
      • -
      - - - -
        -
      • -

        notification_template_big_media_narrow_custom

        -
        public static int notification_template_big_media_narrow_custom
        -
      • -
      - - - -
        -
      • -

        notification_template_custom_big

        -
        public static int notification_template_custom_big
        -
      • -
      - - - -
        -
      • -

        notification_template_icon_group

        -
        public static int notification_template_icon_group
        -
      • -
      - - - -
        -
      • -

        notification_template_lines_media

        -
        public static int notification_template_lines_media
        -
      • -
      - - - -
        -
      • -

        notification_template_media

        -
        public static int notification_template_media
        -
      • -
      - - - -
        -
      • -

        notification_template_media_custom

        -
        public static int notification_template_media_custom
        -
      • -
      - - - -
        -
      • -

        notification_template_part_chronometer

        -
        public static int notification_template_part_chronometer
        -
      • -
      - - - -
        -
      • -

        notification_template_part_time

        -
        public static int notification_template_part_time
        -
      • -
      - - - -
        -
      • -

        select_dialog_item_material

        -
        public static int select_dialog_item_material
        -
      • -
      - - - -
        -
      • -

        select_dialog_multichoice_material

        -
        public static int select_dialog_multichoice_material
        -
      • -
      - - - -
        -
      • -

        select_dialog_singlechoice_material

        -
        public static int select_dialog_singlechoice_material
        -
      • -
      - - - -
        -
      • -

        support_simple_spinner_dropdown_item

        -
        public static int support_simple_spinner_dropdown_item
        -
      • -
      -
    • -
    - -
      -
    • - - -

      Constructor Detail

      - - - -
        -
      • -

        layout

        -
        public layout()
        -
      • -
      -
    • -
    -
  • -
-
-
- - - - - - - diff --git a/docs/com/tomer/fadingtextview/R.string.html b/docs/com/tomer/fadingtextview/R.string.html deleted file mode 100644 index 28b5f51..0000000 --- a/docs/com/tomer/fadingtextview/R.string.html +++ /dev/null @@ -1,693 +0,0 @@ - - - - - -R.string - - - - - - - - - - - - -
-
com.tomer.fadingtextview
-

Class R.string

-
-
-
    -
  • java.lang.Object
  • -
  • -
      -
    • com.tomer.fadingtextview.R.string
    • -
    -
  • -
-
-
    -
  • -
    -
    Enclosing class:
    -
    R
    -
    -
    -
    -
    public static final class R.string
    -extends java.lang.Object
    -
  • -
-
-
- -
-
-
    -
  • - -
      -
    • - - -

      Field Detail

      - - - -
        -
      • -

        abc_action_bar_home_description

        -
        public static int abc_action_bar_home_description
        -
      • -
      - - - -
        -
      • -

        abc_action_bar_home_description_format

        -
        public static int abc_action_bar_home_description_format
        -
      • -
      - - - -
        -
      • -

        abc_action_bar_home_subtitle_description_format

        -
        public static int abc_action_bar_home_subtitle_description_format
        -
      • -
      - - - -
        -
      • -

        abc_action_bar_up_description

        -
        public static int abc_action_bar_up_description
        -
      • -
      - - - -
        -
      • -

        abc_action_menu_overflow_description

        -
        public static int abc_action_menu_overflow_description
        -
      • -
      - - - -
        -
      • -

        abc_action_mode_done

        -
        public static int abc_action_mode_done
        -
      • -
      - - - -
        -
      • -

        abc_activity_chooser_view_see_all

        -
        public static int abc_activity_chooser_view_see_all
        -
      • -
      - - - -
        -
      • -

        abc_activitychooserview_choose_application

        -
        public static int abc_activitychooserview_choose_application
        -
      • -
      - - - -
        -
      • -

        abc_capital_off

        -
        public static int abc_capital_off
        -
      • -
      - - - -
        -
      • -

        abc_capital_on

        -
        public static int abc_capital_on
        -
      • -
      - - - -
        -
      • -

        abc_font_family_body_1_material

        -
        public static int abc_font_family_body_1_material
        -
      • -
      - - - -
        -
      • -

        abc_font_family_body_2_material

        -
        public static int abc_font_family_body_2_material
        -
      • -
      - - - -
        -
      • -

        abc_font_family_button_material

        -
        public static int abc_font_family_button_material
        -
      • -
      - - - -
        -
      • -

        abc_font_family_caption_material

        -
        public static int abc_font_family_caption_material
        -
      • -
      - - - -
        -
      • -

        abc_font_family_display_1_material

        -
        public static int abc_font_family_display_1_material
        -
      • -
      - - - -
        -
      • -

        abc_font_family_display_2_material

        -
        public static int abc_font_family_display_2_material
        -
      • -
      - - - -
        -
      • -

        abc_font_family_display_3_material

        -
        public static int abc_font_family_display_3_material
        -
      • -
      - - - -
        -
      • -

        abc_font_family_display_4_material

        -
        public static int abc_font_family_display_4_material
        -
      • -
      - - - -
        -
      • -

        abc_font_family_headline_material

        -
        public static int abc_font_family_headline_material
        -
      • -
      - - - -
        -
      • -

        abc_font_family_menu_material

        -
        public static int abc_font_family_menu_material
        -
      • -
      - - - -
        -
      • -

        abc_font_family_subhead_material

        -
        public static int abc_font_family_subhead_material
        -
      • -
      - - - -
        -
      • -

        abc_font_family_title_material

        -
        public static int abc_font_family_title_material
        -
      • -
      - - - -
        -
      • -

        abc_search_hint

        -
        public static int abc_search_hint
        -
      • -
      - - - -
        -
      • -

        abc_searchview_description_clear

        -
        public static int abc_searchview_description_clear
        -
      • -
      - - - -
        -
      • -

        abc_searchview_description_query

        -
        public static int abc_searchview_description_query
        -
      • -
      - - - -
        -
      • -

        abc_searchview_description_search

        -
        public static int abc_searchview_description_search
        -
      • -
      - - - -
        -
      • -

        abc_searchview_description_submit

        -
        public static int abc_searchview_description_submit
        -
      • -
      - - - -
        -
      • -

        abc_searchview_description_voice

        -
        public static int abc_searchview_description_voice
        -
      • -
      - - - -
        -
      • -

        abc_shareactionprovider_share_with

        -
        public static int abc_shareactionprovider_share_with
        -
      • -
      - - - -
        -
      • -

        abc_shareactionprovider_share_with_application

        -
        public static int abc_shareactionprovider_share_with_application
        -
      • -
      - - - -
        -
      • -

        abc_toolbar_collapse_description

        -
        public static int abc_toolbar_collapse_description
        -
      • -
      - - - -
        -
      • -

        search_menu_title

        -
        public static int search_menu_title
        -
      • -
      - - - -
        -
      • -

        status_bar_notification_info_overflow

        -
        public static int status_bar_notification_info_overflow
        -
      • -
      -
    • -
    - -
      -
    • - - -

      Constructor Detail

      - - - -
        -
      • -

        string

        -
        public string()
        -
      • -
      -
    • -
    -
  • -
-
-
- - - - - - - diff --git a/docs/com/tomer/fadingtextview/R.style.html b/docs/com/tomer/fadingtextview/R.style.html deleted file mode 100644 index 3c7317f..0000000 --- a/docs/com/tomer/fadingtextview/R.style.html +++ /dev/null @@ -1,4827 +0,0 @@ - - - - - -R.style - - - - - - - - - - - - -
-
com.tomer.fadingtextview
-

Class R.style

-
-
-
    -
  • java.lang.Object
  • -
  • -
      -
    • com.tomer.fadingtextview.R.style
    • -
    -
  • -
-
-
    -
  • -
    -
    Enclosing class:
    -
    R
    -
    -
    -
    -
    public static final class R.style
    -extends java.lang.Object
    -
  • -
-
-
- -
-
-
    -
  • - -
      -
    • - - -

      Field Detail

      - - - -
        -
      • -

        AlertDialog_AppCompat

        -
        public static int AlertDialog_AppCompat
        -
      • -
      - - - -
        -
      • -

        AlertDialog_AppCompat_Light

        -
        public static int AlertDialog_AppCompat_Light
        -
      • -
      - - - -
        -
      • -

        Animation_AppCompat_Dialog

        -
        public static int Animation_AppCompat_Dialog
        -
      • -
      - - - -
        -
      • -

        Animation_AppCompat_DropDownUp

        -
        public static int Animation_AppCompat_DropDownUp
        -
      • -
      - - - -
        -
      • -

        Base_AlertDialog_AppCompat

        -
        public static int Base_AlertDialog_AppCompat
        -
      • -
      - - - -
        -
      • -

        Base_AlertDialog_AppCompat_Light

        -
        public static int Base_AlertDialog_AppCompat_Light
        -
      • -
      - - - -
        -
      • -

        Base_Animation_AppCompat_Dialog

        -
        public static int Base_Animation_AppCompat_Dialog
        -
      • -
      - - - -
        -
      • -

        Base_Animation_AppCompat_DropDownUp

        -
        public static int Base_Animation_AppCompat_DropDownUp
        -
      • -
      - - - -
        -
      • -

        Base_DialogWindowTitle_AppCompat

        -
        public static int Base_DialogWindowTitle_AppCompat
        -
      • -
      - - - -
        -
      • -

        Base_DialogWindowTitleBackground_AppCompat

        -
        public static int Base_DialogWindowTitleBackground_AppCompat
        -
      • -
      - - - -
        -
      • -

        Base_TextAppearance_AppCompat

        -
        public static int Base_TextAppearance_AppCompat
        -
      • -
      - - - -
        -
      • -

        Base_TextAppearance_AppCompat_Body1

        -
        public static int Base_TextAppearance_AppCompat_Body1
        -
      • -
      - - - -
        -
      • -

        Base_TextAppearance_AppCompat_Body2

        -
        public static int Base_TextAppearance_AppCompat_Body2
        -
      • -
      - - - -
        -
      • -

        Base_TextAppearance_AppCompat_Button

        -
        public static int Base_TextAppearance_AppCompat_Button
        -
      • -
      - - - -
        -
      • -

        Base_TextAppearance_AppCompat_Caption

        -
        public static int Base_TextAppearance_AppCompat_Caption
        -
      • -
      - - - -
        -
      • -

        Base_TextAppearance_AppCompat_Display1

        -
        public static int Base_TextAppearance_AppCompat_Display1
        -
      • -
      - - - -
        -
      • -

        Base_TextAppearance_AppCompat_Display2

        -
        public static int Base_TextAppearance_AppCompat_Display2
        -
      • -
      - - - -
        -
      • -

        Base_TextAppearance_AppCompat_Display3

        -
        public static int Base_TextAppearance_AppCompat_Display3
        -
      • -
      - - - -
        -
      • -

        Base_TextAppearance_AppCompat_Display4

        -
        public static int Base_TextAppearance_AppCompat_Display4
        -
      • -
      - - - -
        -
      • -

        Base_TextAppearance_AppCompat_Headline

        -
        public static int Base_TextAppearance_AppCompat_Headline
        -
      • -
      - - - -
        -
      • -

        Base_TextAppearance_AppCompat_Inverse

        -
        public static int Base_TextAppearance_AppCompat_Inverse
        -
      • -
      - - - -
        -
      • -

        Base_TextAppearance_AppCompat_Large

        -
        public static int Base_TextAppearance_AppCompat_Large
        -
      • -
      - - - -
        -
      • -

        Base_TextAppearance_AppCompat_Large_Inverse

        -
        public static int Base_TextAppearance_AppCompat_Large_Inverse
        -
      • -
      - - - -
        -
      • -

        Base_TextAppearance_AppCompat_Light_Widget_PopupMenu_Large

        -
        public static int Base_TextAppearance_AppCompat_Light_Widget_PopupMenu_Large
        -
      • -
      - - - -
        -
      • -

        Base_TextAppearance_AppCompat_Light_Widget_PopupMenu_Small

        -
        public static int Base_TextAppearance_AppCompat_Light_Widget_PopupMenu_Small
        -
      • -
      - - - -
        -
      • -

        Base_TextAppearance_AppCompat_Medium

        -
        public static int Base_TextAppearance_AppCompat_Medium
        -
      • -
      - - - -
        -
      • -

        Base_TextAppearance_AppCompat_Medium_Inverse

        -
        public static int Base_TextAppearance_AppCompat_Medium_Inverse
        -
      • -
      - - - -
        -
      • -

        Base_TextAppearance_AppCompat_Menu

        -
        public static int Base_TextAppearance_AppCompat_Menu
        -
      • -
      - - - -
        -
      • -

        Base_TextAppearance_AppCompat_SearchResult

        -
        public static int Base_TextAppearance_AppCompat_SearchResult
        -
      • -
      - - - -
        -
      • -

        Base_TextAppearance_AppCompat_SearchResult_Subtitle

        -
        public static int Base_TextAppearance_AppCompat_SearchResult_Subtitle
        -
      • -
      - - - -
        -
      • -

        Base_TextAppearance_AppCompat_SearchResult_Title

        -
        public static int Base_TextAppearance_AppCompat_SearchResult_Title
        -
      • -
      - - - -
        -
      • -

        Base_TextAppearance_AppCompat_Small

        -
        public static int Base_TextAppearance_AppCompat_Small
        -
      • -
      - - - -
        -
      • -

        Base_TextAppearance_AppCompat_Small_Inverse

        -
        public static int Base_TextAppearance_AppCompat_Small_Inverse
        -
      • -
      - - - -
        -
      • -

        Base_TextAppearance_AppCompat_Subhead

        -
        public static int Base_TextAppearance_AppCompat_Subhead
        -
      • -
      - - - -
        -
      • -

        Base_TextAppearance_AppCompat_Subhead_Inverse

        -
        public static int Base_TextAppearance_AppCompat_Subhead_Inverse
        -
      • -
      - - - -
        -
      • -

        Base_TextAppearance_AppCompat_Title

        -
        public static int Base_TextAppearance_AppCompat_Title
        -
      • -
      - - - -
        -
      • -

        Base_TextAppearance_AppCompat_Title_Inverse

        -
        public static int Base_TextAppearance_AppCompat_Title_Inverse
        -
      • -
      - - - -
        -
      • -

        Base_TextAppearance_AppCompat_Widget_ActionBar_Menu

        -
        public static int Base_TextAppearance_AppCompat_Widget_ActionBar_Menu
        -
      • -
      - - - -
        -
      • -

        Base_TextAppearance_AppCompat_Widget_ActionBar_Subtitle

        -
        public static int Base_TextAppearance_AppCompat_Widget_ActionBar_Subtitle
        -
      • -
      - - - -
        -
      • -

        Base_TextAppearance_AppCompat_Widget_ActionBar_Subtitle_Inverse

        -
        public static int Base_TextAppearance_AppCompat_Widget_ActionBar_Subtitle_Inverse
        -
      • -
      - - - -
        -
      • -

        Base_TextAppearance_AppCompat_Widget_ActionBar_Title

        -
        public static int Base_TextAppearance_AppCompat_Widget_ActionBar_Title
        -
      • -
      - - - -
        -
      • -

        Base_TextAppearance_AppCompat_Widget_ActionBar_Title_Inverse

        -
        public static int Base_TextAppearance_AppCompat_Widget_ActionBar_Title_Inverse
        -
      • -
      - - - -
        -
      • -

        Base_TextAppearance_AppCompat_Widget_ActionMode_Subtitle

        -
        public static int Base_TextAppearance_AppCompat_Widget_ActionMode_Subtitle
        -
      • -
      - - - -
        -
      • -

        Base_TextAppearance_AppCompat_Widget_ActionMode_Title

        -
        public static int Base_TextAppearance_AppCompat_Widget_ActionMode_Title
        -
      • -
      - - - -
        -
      • -

        Base_TextAppearance_AppCompat_Widget_Button

        -
        public static int Base_TextAppearance_AppCompat_Widget_Button
        -
      • -
      - - - -
        -
      • -

        Base_TextAppearance_AppCompat_Widget_Button_Borderless_Colored

        -
        public static int Base_TextAppearance_AppCompat_Widget_Button_Borderless_Colored
        -
      • -
      - - - -
        -
      • -

        Base_TextAppearance_AppCompat_Widget_Button_Colored

        -
        public static int Base_TextAppearance_AppCompat_Widget_Button_Colored
        -
      • -
      - - - -
        -
      • -

        Base_TextAppearance_AppCompat_Widget_Button_Inverse

        -
        public static int Base_TextAppearance_AppCompat_Widget_Button_Inverse
        -
      • -
      - - - -
        -
      • -

        Base_TextAppearance_AppCompat_Widget_DropDownItem

        -
        public static int Base_TextAppearance_AppCompat_Widget_DropDownItem
        -
      • -
      - - - -
        -
      • -

        Base_TextAppearance_AppCompat_Widget_PopupMenu_Header

        -
        public static int Base_TextAppearance_AppCompat_Widget_PopupMenu_Header
        -
      • -
      - - - -
        -
      • -

        Base_TextAppearance_AppCompat_Widget_PopupMenu_Large

        -
        public static int Base_TextAppearance_AppCompat_Widget_PopupMenu_Large
        -
      • -
      - - - -
        -
      • -

        Base_TextAppearance_AppCompat_Widget_PopupMenu_Small

        -
        public static int Base_TextAppearance_AppCompat_Widget_PopupMenu_Small
        -
      • -
      - - - -
        -
      • -

        Base_TextAppearance_AppCompat_Widget_Switch

        -
        public static int Base_TextAppearance_AppCompat_Widget_Switch
        -
      • -
      - - - -
        -
      • -

        Base_TextAppearance_AppCompat_Widget_TextView_SpinnerItem

        -
        public static int Base_TextAppearance_AppCompat_Widget_TextView_SpinnerItem
        -
      • -
      - - - -
        -
      • -

        Base_TextAppearance_Widget_AppCompat_ExpandedMenu_Item

        -
        public static int Base_TextAppearance_Widget_AppCompat_ExpandedMenu_Item
        -
      • -
      - - - -
        -
      • -

        Base_TextAppearance_Widget_AppCompat_Toolbar_Subtitle

        -
        public static int Base_TextAppearance_Widget_AppCompat_Toolbar_Subtitle
        -
      • -
      - - - -
        -
      • -

        Base_TextAppearance_Widget_AppCompat_Toolbar_Title

        -
        public static int Base_TextAppearance_Widget_AppCompat_Toolbar_Title
        -
      • -
      - - - -
        -
      • -

        Base_Theme_AppCompat

        -
        public static int Base_Theme_AppCompat
        -
      • -
      - - - -
        -
      • -

        Base_Theme_AppCompat_CompactMenu

        -
        public static int Base_Theme_AppCompat_CompactMenu
        -
      • -
      - - - -
        -
      • -

        Base_Theme_AppCompat_Dialog

        -
        public static int Base_Theme_AppCompat_Dialog
        -
      • -
      - - - -
        -
      • -

        Base_Theme_AppCompat_Dialog_Alert

        -
        public static int Base_Theme_AppCompat_Dialog_Alert
        -
      • -
      - - - -
        -
      • -

        Base_Theme_AppCompat_Dialog_FixedSize

        -
        public static int Base_Theme_AppCompat_Dialog_FixedSize
        -
      • -
      - - - -
        -
      • -

        Base_Theme_AppCompat_Dialog_MinWidth

        -
        public static int Base_Theme_AppCompat_Dialog_MinWidth
        -
      • -
      - - - -
        -
      • -

        Base_Theme_AppCompat_DialogWhenLarge

        -
        public static int Base_Theme_AppCompat_DialogWhenLarge
        -
      • -
      - - - -
        -
      • -

        Base_Theme_AppCompat_Light

        -
        public static int Base_Theme_AppCompat_Light
        -
      • -
      - - - -
        -
      • -

        Base_Theme_AppCompat_Light_DarkActionBar

        -
        public static int Base_Theme_AppCompat_Light_DarkActionBar
        -
      • -
      - - - -
        -
      • -

        Base_Theme_AppCompat_Light_Dialog

        -
        public static int Base_Theme_AppCompat_Light_Dialog
        -
      • -
      - - - -
        -
      • -

        Base_Theme_AppCompat_Light_Dialog_Alert

        -
        public static int Base_Theme_AppCompat_Light_Dialog_Alert
        -
      • -
      - - - -
        -
      • -

        Base_Theme_AppCompat_Light_Dialog_FixedSize

        -
        public static int Base_Theme_AppCompat_Light_Dialog_FixedSize
        -
      • -
      - - - -
        -
      • -

        Base_Theme_AppCompat_Light_Dialog_MinWidth

        -
        public static int Base_Theme_AppCompat_Light_Dialog_MinWidth
        -
      • -
      - - - -
        -
      • -

        Base_Theme_AppCompat_Light_DialogWhenLarge

        -
        public static int Base_Theme_AppCompat_Light_DialogWhenLarge
        -
      • -
      - - - -
        -
      • -

        Base_ThemeOverlay_AppCompat

        -
        public static int Base_ThemeOverlay_AppCompat
        -
      • -
      - - - -
        -
      • -

        Base_ThemeOverlay_AppCompat_ActionBar

        -
        public static int Base_ThemeOverlay_AppCompat_ActionBar
        -
      • -
      - - - -
        -
      • -

        Base_ThemeOverlay_AppCompat_Dark

        -
        public static int Base_ThemeOverlay_AppCompat_Dark
        -
      • -
      - - - -
        -
      • -

        Base_ThemeOverlay_AppCompat_Dark_ActionBar

        -
        public static int Base_ThemeOverlay_AppCompat_Dark_ActionBar
        -
      • -
      - - - -
        -
      • -

        Base_ThemeOverlay_AppCompat_Dialog

        -
        public static int Base_ThemeOverlay_AppCompat_Dialog
        -
      • -
      - - - -
        -
      • -

        Base_ThemeOverlay_AppCompat_Dialog_Alert

        -
        public static int Base_ThemeOverlay_AppCompat_Dialog_Alert
        -
      • -
      - - - -
        -
      • -

        Base_ThemeOverlay_AppCompat_Light

        -
        public static int Base_ThemeOverlay_AppCompat_Light
        -
      • -
      - - - -
        -
      • -

        Base_V11_Theme_AppCompat_Dialog

        -
        public static int Base_V11_Theme_AppCompat_Dialog
        -
      • -
      - - - -
        -
      • -

        Base_V11_Theme_AppCompat_Light_Dialog

        -
        public static int Base_V11_Theme_AppCompat_Light_Dialog
        -
      • -
      - - - -
        -
      • -

        Base_V11_ThemeOverlay_AppCompat_Dialog

        -
        public static int Base_V11_ThemeOverlay_AppCompat_Dialog
        -
      • -
      - - - -
        -
      • -

        Base_V12_Widget_AppCompat_AutoCompleteTextView

        -
        public static int Base_V12_Widget_AppCompat_AutoCompleteTextView
        -
      • -
      - - - -
        -
      • -

        Base_V12_Widget_AppCompat_EditText

        -
        public static int Base_V12_Widget_AppCompat_EditText
        -
      • -
      - - - -
        -
      • -

        Base_V21_Theme_AppCompat

        -
        public static int Base_V21_Theme_AppCompat
        -
      • -
      - - - -
        -
      • -

        Base_V21_Theme_AppCompat_Dialog

        -
        public static int Base_V21_Theme_AppCompat_Dialog
        -
      • -
      - - - -
        -
      • -

        Base_V21_Theme_AppCompat_Light

        -
        public static int Base_V21_Theme_AppCompat_Light
        -
      • -
      - - - -
        -
      • -

        Base_V21_Theme_AppCompat_Light_Dialog

        -
        public static int Base_V21_Theme_AppCompat_Light_Dialog
        -
      • -
      - - - -
        -
      • -

        Base_V21_ThemeOverlay_AppCompat_Dialog

        -
        public static int Base_V21_ThemeOverlay_AppCompat_Dialog
        -
      • -
      - - - -
        -
      • -

        Base_V22_Theme_AppCompat

        -
        public static int Base_V22_Theme_AppCompat
        -
      • -
      - - - -
        -
      • -

        Base_V22_Theme_AppCompat_Light

        -
        public static int Base_V22_Theme_AppCompat_Light
        -
      • -
      - - - -
        -
      • -

        Base_V23_Theme_AppCompat

        -
        public static int Base_V23_Theme_AppCompat
        -
      • -
      - - - -
        -
      • -

        Base_V23_Theme_AppCompat_Light

        -
        public static int Base_V23_Theme_AppCompat_Light
        -
      • -
      - - - -
        -
      • -

        Base_V7_Theme_AppCompat

        -
        public static int Base_V7_Theme_AppCompat
        -
      • -
      - - - -
        -
      • -

        Base_V7_Theme_AppCompat_Dialog

        -
        public static int Base_V7_Theme_AppCompat_Dialog
        -
      • -
      - - - -
        -
      • -

        Base_V7_Theme_AppCompat_Light

        -
        public static int Base_V7_Theme_AppCompat_Light
        -
      • -
      - - - -
        -
      • -

        Base_V7_Theme_AppCompat_Light_Dialog

        -
        public static int Base_V7_Theme_AppCompat_Light_Dialog
        -
      • -
      - - - -
        -
      • -

        Base_V7_ThemeOverlay_AppCompat_Dialog

        -
        public static int Base_V7_ThemeOverlay_AppCompat_Dialog
        -
      • -
      - - - -
        -
      • -

        Base_V7_Widget_AppCompat_AutoCompleteTextView

        -
        public static int Base_V7_Widget_AppCompat_AutoCompleteTextView
        -
      • -
      - - - -
        -
      • -

        Base_V7_Widget_AppCompat_EditText

        -
        public static int Base_V7_Widget_AppCompat_EditText
        -
      • -
      - - - -
        -
      • -

        Base_Widget_AppCompat_ActionBar

        -
        public static int Base_Widget_AppCompat_ActionBar
        -
      • -
      - - - -
        -
      • -

        Base_Widget_AppCompat_ActionBar_Solid

        -
        public static int Base_Widget_AppCompat_ActionBar_Solid
        -
      • -
      - - - -
        -
      • -

        Base_Widget_AppCompat_ActionBar_TabBar

        -
        public static int Base_Widget_AppCompat_ActionBar_TabBar
        -
      • -
      - - - -
        -
      • -

        Base_Widget_AppCompat_ActionBar_TabText

        -
        public static int Base_Widget_AppCompat_ActionBar_TabText
        -
      • -
      - - - -
        -
      • -

        Base_Widget_AppCompat_ActionBar_TabView

        -
        public static int Base_Widget_AppCompat_ActionBar_TabView
        -
      • -
      - - - -
        -
      • -

        Base_Widget_AppCompat_ActionButton

        -
        public static int Base_Widget_AppCompat_ActionButton
        -
      • -
      - - - -
        -
      • -

        Base_Widget_AppCompat_ActionButton_CloseMode

        -
        public static int Base_Widget_AppCompat_ActionButton_CloseMode
        -
      • -
      - - - -
        -
      • -

        Base_Widget_AppCompat_ActionButton_Overflow

        -
        public static int Base_Widget_AppCompat_ActionButton_Overflow
        -
      • -
      - - - -
        -
      • -

        Base_Widget_AppCompat_ActionMode

        -
        public static int Base_Widget_AppCompat_ActionMode
        -
      • -
      - - - -
        -
      • -

        Base_Widget_AppCompat_ActivityChooserView

        -
        public static int Base_Widget_AppCompat_ActivityChooserView
        -
      • -
      - - - -
        -
      • -

        Base_Widget_AppCompat_AutoCompleteTextView

        -
        public static int Base_Widget_AppCompat_AutoCompleteTextView
        -
      • -
      - - - -
        -
      • -

        Base_Widget_AppCompat_Button

        -
        public static int Base_Widget_AppCompat_Button
        -
      • -
      - - - -
        -
      • -

        Base_Widget_AppCompat_Button_Borderless

        -
        public static int Base_Widget_AppCompat_Button_Borderless
        -
      • -
      - - - -
        -
      • -

        Base_Widget_AppCompat_Button_Borderless_Colored

        -
        public static int Base_Widget_AppCompat_Button_Borderless_Colored
        -
      • -
      - - - -
        -
      • -

        Base_Widget_AppCompat_Button_ButtonBar_AlertDialog

        -
        public static int Base_Widget_AppCompat_Button_ButtonBar_AlertDialog
        -
      • -
      - - - -
        -
      • -

        Base_Widget_AppCompat_Button_Colored

        -
        public static int Base_Widget_AppCompat_Button_Colored
        -
      • -
      - - - -
        -
      • -

        Base_Widget_AppCompat_Button_Small

        -
        public static int Base_Widget_AppCompat_Button_Small
        -
      • -
      - - - -
        -
      • -

        Base_Widget_AppCompat_ButtonBar

        -
        public static int Base_Widget_AppCompat_ButtonBar
        -
      • -
      - - - -
        -
      • -

        Base_Widget_AppCompat_ButtonBar_AlertDialog

        -
        public static int Base_Widget_AppCompat_ButtonBar_AlertDialog
        -
      • -
      - - - -
        -
      • -

        Base_Widget_AppCompat_CompoundButton_CheckBox

        -
        public static int Base_Widget_AppCompat_CompoundButton_CheckBox
        -
      • -
      - - - -
        -
      • -

        Base_Widget_AppCompat_CompoundButton_RadioButton

        -
        public static int Base_Widget_AppCompat_CompoundButton_RadioButton
        -
      • -
      - - - -
        -
      • -

        Base_Widget_AppCompat_CompoundButton_Switch

        -
        public static int Base_Widget_AppCompat_CompoundButton_Switch
        -
      • -
      - - - -
        -
      • -

        Base_Widget_AppCompat_DrawerArrowToggle

        -
        public static int Base_Widget_AppCompat_DrawerArrowToggle
        -
      • -
      - - - -
        -
      • -

        Base_Widget_AppCompat_DrawerArrowToggle_Common

        -
        public static int Base_Widget_AppCompat_DrawerArrowToggle_Common
        -
      • -
      - - - -
        -
      • -

        Base_Widget_AppCompat_DropDownItem_Spinner

        -
        public static int Base_Widget_AppCompat_DropDownItem_Spinner
        -
      • -
      - - - -
        -
      • -

        Base_Widget_AppCompat_EditText

        -
        public static int Base_Widget_AppCompat_EditText
        -
      • -
      - - - -
        -
      • -

        Base_Widget_AppCompat_ImageButton

        -
        public static int Base_Widget_AppCompat_ImageButton
        -
      • -
      - - - -
        -
      • -

        Base_Widget_AppCompat_Light_ActionBar

        -
        public static int Base_Widget_AppCompat_Light_ActionBar
        -
      • -
      - - - -
        -
      • -

        Base_Widget_AppCompat_Light_ActionBar_Solid

        -
        public static int Base_Widget_AppCompat_Light_ActionBar_Solid
        -
      • -
      - - - -
        -
      • -

        Base_Widget_AppCompat_Light_ActionBar_TabBar

        -
        public static int Base_Widget_AppCompat_Light_ActionBar_TabBar
        -
      • -
      - - - -
        -
      • -

        Base_Widget_AppCompat_Light_ActionBar_TabText

        -
        public static int Base_Widget_AppCompat_Light_ActionBar_TabText
        -
      • -
      - - - -
        -
      • -

        Base_Widget_AppCompat_Light_ActionBar_TabText_Inverse

        -
        public static int Base_Widget_AppCompat_Light_ActionBar_TabText_Inverse
        -
      • -
      - - - -
        -
      • -

        Base_Widget_AppCompat_Light_ActionBar_TabView

        -
        public static int Base_Widget_AppCompat_Light_ActionBar_TabView
        -
      • -
      - - - -
        -
      • -

        Base_Widget_AppCompat_Light_PopupMenu

        -
        public static int Base_Widget_AppCompat_Light_PopupMenu
        -
      • -
      - - - -
        -
      • -

        Base_Widget_AppCompat_Light_PopupMenu_Overflow

        -
        public static int Base_Widget_AppCompat_Light_PopupMenu_Overflow
        -
      • -
      - - - -
        -
      • -

        Base_Widget_AppCompat_ListMenuView

        -
        public static int Base_Widget_AppCompat_ListMenuView
        -
      • -
      - - - -
        -
      • -

        Base_Widget_AppCompat_ListPopupWindow

        -
        public static int Base_Widget_AppCompat_ListPopupWindow
        -
      • -
      - - - -
        -
      • -

        Base_Widget_AppCompat_ListView

        -
        public static int Base_Widget_AppCompat_ListView
        -
      • -
      - - - -
        -
      • -

        Base_Widget_AppCompat_ListView_DropDown

        -
        public static int Base_Widget_AppCompat_ListView_DropDown
        -
      • -
      - - - -
        -
      • -

        Base_Widget_AppCompat_ListView_Menu

        -
        public static int Base_Widget_AppCompat_ListView_Menu
        -
      • -
      - - - -
        -
      • -

        Base_Widget_AppCompat_PopupMenu

        -
        public static int Base_Widget_AppCompat_PopupMenu
        -
      • -
      - - - -
        -
      • -

        Base_Widget_AppCompat_PopupMenu_Overflow

        -
        public static int Base_Widget_AppCompat_PopupMenu_Overflow
        -
      • -
      - - - -
        -
      • -

        Base_Widget_AppCompat_PopupWindow

        -
        public static int Base_Widget_AppCompat_PopupWindow
        -
      • -
      - - - -
        -
      • -

        Base_Widget_AppCompat_ProgressBar

        -
        public static int Base_Widget_AppCompat_ProgressBar
        -
      • -
      - - - -
        -
      • -

        Base_Widget_AppCompat_ProgressBar_Horizontal

        -
        public static int Base_Widget_AppCompat_ProgressBar_Horizontal
        -
      • -
      - - - -
        -
      • -

        Base_Widget_AppCompat_RatingBar

        -
        public static int Base_Widget_AppCompat_RatingBar
        -
      • -
      - - - -
        -
      • -

        Base_Widget_AppCompat_RatingBar_Indicator

        -
        public static int Base_Widget_AppCompat_RatingBar_Indicator
        -
      • -
      - - - -
        -
      • -

        Base_Widget_AppCompat_RatingBar_Small

        -
        public static int Base_Widget_AppCompat_RatingBar_Small
        -
      • -
      - - - -
        -
      • -

        Base_Widget_AppCompat_SearchView

        -
        public static int Base_Widget_AppCompat_SearchView
        -
      • -
      - - - -
        -
      • -

        Base_Widget_AppCompat_SearchView_ActionBar

        -
        public static int Base_Widget_AppCompat_SearchView_ActionBar
        -
      • -
      - - - -
        -
      • -

        Base_Widget_AppCompat_SeekBar

        -
        public static int Base_Widget_AppCompat_SeekBar
        -
      • -
      - - - -
        -
      • -

        Base_Widget_AppCompat_SeekBar_Discrete

        -
        public static int Base_Widget_AppCompat_SeekBar_Discrete
        -
      • -
      - - - -
        -
      • -

        Base_Widget_AppCompat_Spinner

        -
        public static int Base_Widget_AppCompat_Spinner
        -
      • -
      - - - -
        -
      • -

        Base_Widget_AppCompat_Spinner_Underlined

        -
        public static int Base_Widget_AppCompat_Spinner_Underlined
        -
      • -
      - - - -
        -
      • -

        Base_Widget_AppCompat_TextView_SpinnerItem

        -
        public static int Base_Widget_AppCompat_TextView_SpinnerItem
        -
      • -
      - - - -
        -
      • -

        Base_Widget_AppCompat_Toolbar

        -
        public static int Base_Widget_AppCompat_Toolbar
        -
      • -
      - - - -
        -
      • -

        Base_Widget_AppCompat_Toolbar_Button_Navigation

        -
        public static int Base_Widget_AppCompat_Toolbar_Button_Navigation
        -
      • -
      - - - -
        -
      • -

        Platform_AppCompat

        -
        public static int Platform_AppCompat
        -
      • -
      - - - -
        -
      • -

        Platform_AppCompat_Light

        -
        public static int Platform_AppCompat_Light
        -
      • -
      - - - -
        -
      • -

        Platform_ThemeOverlay_AppCompat

        -
        public static int Platform_ThemeOverlay_AppCompat
        -
      • -
      - - - -
        -
      • -

        Platform_ThemeOverlay_AppCompat_Dark

        -
        public static int Platform_ThemeOverlay_AppCompat_Dark
        -
      • -
      - - - -
        -
      • -

        Platform_ThemeOverlay_AppCompat_Light

        -
        public static int Platform_ThemeOverlay_AppCompat_Light
        -
      • -
      - - - -
        -
      • -

        Platform_V11_AppCompat

        -
        public static int Platform_V11_AppCompat
        -
      • -
      - - - -
        -
      • -

        Platform_V11_AppCompat_Light

        -
        public static int Platform_V11_AppCompat_Light
        -
      • -
      - - - -
        -
      • -

        Platform_V14_AppCompat

        -
        public static int Platform_V14_AppCompat
        -
      • -
      - - - -
        -
      • -

        Platform_V14_AppCompat_Light

        -
        public static int Platform_V14_AppCompat_Light
        -
      • -
      - - - -
        -
      • -

        Platform_V21_AppCompat

        -
        public static int Platform_V21_AppCompat
        -
      • -
      - - - -
        -
      • -

        Platform_V21_AppCompat_Light

        -
        public static int Platform_V21_AppCompat_Light
        -
      • -
      - - - -
        -
      • -

        Platform_V25_AppCompat

        -
        public static int Platform_V25_AppCompat
        -
      • -
      - - - -
        -
      • -

        Platform_V25_AppCompat_Light

        -
        public static int Platform_V25_AppCompat_Light
        -
      • -
      - - - -
        -
      • -

        Platform_Widget_AppCompat_Spinner

        -
        public static int Platform_Widget_AppCompat_Spinner
        -
      • -
      - - - -
        -
      • -

        RtlOverlay_DialogWindowTitle_AppCompat

        -
        public static int RtlOverlay_DialogWindowTitle_AppCompat
        -
      • -
      - - - -
        -
      • -

        RtlOverlay_Widget_AppCompat_ActionBar_TitleItem

        -
        public static int RtlOverlay_Widget_AppCompat_ActionBar_TitleItem
        -
      • -
      - - - -
        -
      • -

        RtlOverlay_Widget_AppCompat_DialogTitle_Icon

        -
        public static int RtlOverlay_Widget_AppCompat_DialogTitle_Icon
        -
      • -
      - - - -
        -
      • -

        RtlOverlay_Widget_AppCompat_PopupMenuItem

        -
        public static int RtlOverlay_Widget_AppCompat_PopupMenuItem
        -
      • -
      - - - -
        -
      • -

        RtlOverlay_Widget_AppCompat_PopupMenuItem_InternalGroup

        -
        public static int RtlOverlay_Widget_AppCompat_PopupMenuItem_InternalGroup
        -
      • -
      - - - -
        -
      • -

        RtlOverlay_Widget_AppCompat_PopupMenuItem_Text

        -
        public static int RtlOverlay_Widget_AppCompat_PopupMenuItem_Text
        -
      • -
      - - - -
        -
      • -

        RtlOverlay_Widget_AppCompat_Search_DropDown

        -
        public static int RtlOverlay_Widget_AppCompat_Search_DropDown
        -
      • -
      - - - -
        -
      • -

        RtlOverlay_Widget_AppCompat_Search_DropDown_Icon1

        -
        public static int RtlOverlay_Widget_AppCompat_Search_DropDown_Icon1
        -
      • -
      - - - -
        -
      • -

        RtlOverlay_Widget_AppCompat_Search_DropDown_Icon2

        -
        public static int RtlOverlay_Widget_AppCompat_Search_DropDown_Icon2
        -
      • -
      - - - -
        -
      • -

        RtlOverlay_Widget_AppCompat_Search_DropDown_Query

        -
        public static int RtlOverlay_Widget_AppCompat_Search_DropDown_Query
        -
      • -
      - - - -
        -
      • -

        RtlOverlay_Widget_AppCompat_Search_DropDown_Text

        -
        public static int RtlOverlay_Widget_AppCompat_Search_DropDown_Text
        -
      • -
      - - - -
        -
      • -

        RtlOverlay_Widget_AppCompat_SearchView_MagIcon

        -
        public static int RtlOverlay_Widget_AppCompat_SearchView_MagIcon
        -
      • -
      - - - -
        -
      • -

        RtlUnderlay_Widget_AppCompat_ActionButton

        -
        public static int RtlUnderlay_Widget_AppCompat_ActionButton
        -
      • -
      - - - -
        -
      • -

        RtlUnderlay_Widget_AppCompat_ActionButton_Overflow

        -
        public static int RtlUnderlay_Widget_AppCompat_ActionButton_Overflow
        -
      • -
      - - - -
        -
      • -

        TextAppearance_AppCompat

        -
        public static int TextAppearance_AppCompat
        -
      • -
      - - - -
        -
      • -

        TextAppearance_AppCompat_Body1

        -
        public static int TextAppearance_AppCompat_Body1
        -
      • -
      - - - -
        -
      • -

        TextAppearance_AppCompat_Body2

        -
        public static int TextAppearance_AppCompat_Body2
        -
      • -
      - - - -
        -
      • -

        TextAppearance_AppCompat_Button

        -
        public static int TextAppearance_AppCompat_Button
        -
      • -
      - - - -
        -
      • -

        TextAppearance_AppCompat_Caption

        -
        public static int TextAppearance_AppCompat_Caption
        -
      • -
      - - - -
        -
      • -

        TextAppearance_AppCompat_Display1

        -
        public static int TextAppearance_AppCompat_Display1
        -
      • -
      - - - -
        -
      • -

        TextAppearance_AppCompat_Display2

        -
        public static int TextAppearance_AppCompat_Display2
        -
      • -
      - - - -
        -
      • -

        TextAppearance_AppCompat_Display3

        -
        public static int TextAppearance_AppCompat_Display3
        -
      • -
      - - - -
        -
      • -

        TextAppearance_AppCompat_Display4

        -
        public static int TextAppearance_AppCompat_Display4
        -
      • -
      - - - -
        -
      • -

        TextAppearance_AppCompat_Headline

        -
        public static int TextAppearance_AppCompat_Headline
        -
      • -
      - - - -
        -
      • -

        TextAppearance_AppCompat_Inverse

        -
        public static int TextAppearance_AppCompat_Inverse
        -
      • -
      - - - -
        -
      • -

        TextAppearance_AppCompat_Large

        -
        public static int TextAppearance_AppCompat_Large
        -
      • -
      - - - -
        -
      • -

        TextAppearance_AppCompat_Large_Inverse

        -
        public static int TextAppearance_AppCompat_Large_Inverse
        -
      • -
      - - - -
        -
      • -

        TextAppearance_AppCompat_Light_SearchResult_Subtitle

        -
        public static int TextAppearance_AppCompat_Light_SearchResult_Subtitle
        -
      • -
      - - - -
        -
      • -

        TextAppearance_AppCompat_Light_SearchResult_Title

        -
        public static int TextAppearance_AppCompat_Light_SearchResult_Title
        -
      • -
      - - - -
        -
      • -

        TextAppearance_AppCompat_Light_Widget_PopupMenu_Large

        -
        public static int TextAppearance_AppCompat_Light_Widget_PopupMenu_Large
        -
      • -
      - - - -
        -
      • -

        TextAppearance_AppCompat_Light_Widget_PopupMenu_Small

        -
        public static int TextAppearance_AppCompat_Light_Widget_PopupMenu_Small
        -
      • -
      - - - -
        -
      • -

        TextAppearance_AppCompat_Medium

        -
        public static int TextAppearance_AppCompat_Medium
        -
      • -
      - - - -
        -
      • -

        TextAppearance_AppCompat_Medium_Inverse

        -
        public static int TextAppearance_AppCompat_Medium_Inverse
        -
      • -
      - - - -
        -
      • -

        TextAppearance_AppCompat_Menu

        -
        public static int TextAppearance_AppCompat_Menu
        -
      • -
      - - - -
        -
      • -

        TextAppearance_AppCompat_Notification

        -
        public static int TextAppearance_AppCompat_Notification
        -
      • -
      - - - -
        -
      • -

        TextAppearance_AppCompat_Notification_Info

        -
        public static int TextAppearance_AppCompat_Notification_Info
        -
      • -
      - - - -
        -
      • -

        TextAppearance_AppCompat_Notification_Info_Media

        -
        public static int TextAppearance_AppCompat_Notification_Info_Media
        -
      • -
      - - - -
        -
      • -

        TextAppearance_AppCompat_Notification_Line2

        -
        public static int TextAppearance_AppCompat_Notification_Line2
        -
      • -
      - - - -
        -
      • -

        TextAppearance_AppCompat_Notification_Line2_Media

        -
        public static int TextAppearance_AppCompat_Notification_Line2_Media
        -
      • -
      - - - -
        -
      • -

        TextAppearance_AppCompat_Notification_Media

        -
        public static int TextAppearance_AppCompat_Notification_Media
        -
      • -
      - - - -
        -
      • -

        TextAppearance_AppCompat_Notification_Time

        -
        public static int TextAppearance_AppCompat_Notification_Time
        -
      • -
      - - - -
        -
      • -

        TextAppearance_AppCompat_Notification_Time_Media

        -
        public static int TextAppearance_AppCompat_Notification_Time_Media
        -
      • -
      - - - -
        -
      • -

        TextAppearance_AppCompat_Notification_Title

        -
        public static int TextAppearance_AppCompat_Notification_Title
        -
      • -
      - - - -
        -
      • -

        TextAppearance_AppCompat_Notification_Title_Media

        -
        public static int TextAppearance_AppCompat_Notification_Title_Media
        -
      • -
      - - - -
        -
      • -

        TextAppearance_AppCompat_SearchResult_Subtitle

        -
        public static int TextAppearance_AppCompat_SearchResult_Subtitle
        -
      • -
      - - - -
        -
      • -

        TextAppearance_AppCompat_SearchResult_Title

        -
        public static int TextAppearance_AppCompat_SearchResult_Title
        -
      • -
      - - - -
        -
      • -

        TextAppearance_AppCompat_Small

        -
        public static int TextAppearance_AppCompat_Small
        -
      • -
      - - - -
        -
      • -

        TextAppearance_AppCompat_Small_Inverse

        -
        public static int TextAppearance_AppCompat_Small_Inverse
        -
      • -
      - - - -
        -
      • -

        TextAppearance_AppCompat_Subhead

        -
        public static int TextAppearance_AppCompat_Subhead
        -
      • -
      - - - -
        -
      • -

        TextAppearance_AppCompat_Subhead_Inverse

        -
        public static int TextAppearance_AppCompat_Subhead_Inverse
        -
      • -
      - - - -
        -
      • -

        TextAppearance_AppCompat_Title

        -
        public static int TextAppearance_AppCompat_Title
        -
      • -
      - - - -
        -
      • -

        TextAppearance_AppCompat_Title_Inverse

        -
        public static int TextAppearance_AppCompat_Title_Inverse
        -
      • -
      - - - -
        -
      • -

        TextAppearance_AppCompat_Widget_ActionBar_Menu

        -
        public static int TextAppearance_AppCompat_Widget_ActionBar_Menu
        -
      • -
      - - - -
        -
      • -

        TextAppearance_AppCompat_Widget_ActionBar_Subtitle

        -
        public static int TextAppearance_AppCompat_Widget_ActionBar_Subtitle
        -
      • -
      - - - -
        -
      • -

        TextAppearance_AppCompat_Widget_ActionBar_Subtitle_Inverse

        -
        public static int TextAppearance_AppCompat_Widget_ActionBar_Subtitle_Inverse
        -
      • -
      - - - -
        -
      • -

        TextAppearance_AppCompat_Widget_ActionBar_Title

        -
        public static int TextAppearance_AppCompat_Widget_ActionBar_Title
        -
      • -
      - - - -
        -
      • -

        TextAppearance_AppCompat_Widget_ActionBar_Title_Inverse

        -
        public static int TextAppearance_AppCompat_Widget_ActionBar_Title_Inverse
        -
      • -
      - - - -
        -
      • -

        TextAppearance_AppCompat_Widget_ActionMode_Subtitle

        -
        public static int TextAppearance_AppCompat_Widget_ActionMode_Subtitle
        -
      • -
      - - - -
        -
      • -

        TextAppearance_AppCompat_Widget_ActionMode_Subtitle_Inverse

        -
        public static int TextAppearance_AppCompat_Widget_ActionMode_Subtitle_Inverse
        -
      • -
      - - - -
        -
      • -

        TextAppearance_AppCompat_Widget_ActionMode_Title

        -
        public static int TextAppearance_AppCompat_Widget_ActionMode_Title
        -
      • -
      - - - -
        -
      • -

        TextAppearance_AppCompat_Widget_ActionMode_Title_Inverse

        -
        public static int TextAppearance_AppCompat_Widget_ActionMode_Title_Inverse
        -
      • -
      - - - -
        -
      • -

        TextAppearance_AppCompat_Widget_Button

        -
        public static int TextAppearance_AppCompat_Widget_Button
        -
      • -
      - - - -
        -
      • -

        TextAppearance_AppCompat_Widget_Button_Borderless_Colored

        -
        public static int TextAppearance_AppCompat_Widget_Button_Borderless_Colored
        -
      • -
      - - - -
        -
      • -

        TextAppearance_AppCompat_Widget_Button_Colored

        -
        public static int TextAppearance_AppCompat_Widget_Button_Colored
        -
      • -
      - - - -
        -
      • -

        TextAppearance_AppCompat_Widget_Button_Inverse

        -
        public static int TextAppearance_AppCompat_Widget_Button_Inverse
        -
      • -
      - - - -
        -
      • -

        TextAppearance_AppCompat_Widget_DropDownItem

        -
        public static int TextAppearance_AppCompat_Widget_DropDownItem
        -
      • -
      - - - -
        -
      • -

        TextAppearance_AppCompat_Widget_PopupMenu_Header

        -
        public static int TextAppearance_AppCompat_Widget_PopupMenu_Header
        -
      • -
      - - - -
        -
      • -

        TextAppearance_AppCompat_Widget_PopupMenu_Large

        -
        public static int TextAppearance_AppCompat_Widget_PopupMenu_Large
        -
      • -
      - - - -
        -
      • -

        TextAppearance_AppCompat_Widget_PopupMenu_Small

        -
        public static int TextAppearance_AppCompat_Widget_PopupMenu_Small
        -
      • -
      - - - -
        -
      • -

        TextAppearance_AppCompat_Widget_Switch

        -
        public static int TextAppearance_AppCompat_Widget_Switch
        -
      • -
      - - - -
        -
      • -

        TextAppearance_AppCompat_Widget_TextView_SpinnerItem

        -
        public static int TextAppearance_AppCompat_Widget_TextView_SpinnerItem
        -
      • -
      - - - -
        -
      • -

        TextAppearance_StatusBar_EventContent

        -
        public static int TextAppearance_StatusBar_EventContent
        -
      • -
      - - - -
        -
      • -

        TextAppearance_StatusBar_EventContent_Info

        -
        public static int TextAppearance_StatusBar_EventContent_Info
        -
      • -
      - - - -
        -
      • -

        TextAppearance_StatusBar_EventContent_Line2

        -
        public static int TextAppearance_StatusBar_EventContent_Line2
        -
      • -
      - - - -
        -
      • -

        TextAppearance_StatusBar_EventContent_Time

        -
        public static int TextAppearance_StatusBar_EventContent_Time
        -
      • -
      - - - -
        -
      • -

        TextAppearance_StatusBar_EventContent_Title

        -
        public static int TextAppearance_StatusBar_EventContent_Title
        -
      • -
      - - - -
        -
      • -

        TextAppearance_Widget_AppCompat_ExpandedMenu_Item

        -
        public static int TextAppearance_Widget_AppCompat_ExpandedMenu_Item
        -
      • -
      - - - -
        -
      • -

        TextAppearance_Widget_AppCompat_Toolbar_Subtitle

        -
        public static int TextAppearance_Widget_AppCompat_Toolbar_Subtitle
        -
      • -
      - - - -
        -
      • -

        TextAppearance_Widget_AppCompat_Toolbar_Title

        -
        public static int TextAppearance_Widget_AppCompat_Toolbar_Title
        -
      • -
      - - - -
        -
      • -

        Theme_AppCompat

        -
        public static int Theme_AppCompat
        -
      • -
      - - - -
        -
      • -

        Theme_AppCompat_CompactMenu

        -
        public static int Theme_AppCompat_CompactMenu
        -
      • -
      - - - -
        -
      • -

        Theme_AppCompat_DayNight

        -
        public static int Theme_AppCompat_DayNight
        -
      • -
      - - - -
        -
      • -

        Theme_AppCompat_DayNight_DarkActionBar

        -
        public static int Theme_AppCompat_DayNight_DarkActionBar
        -
      • -
      - - - -
        -
      • -

        Theme_AppCompat_DayNight_Dialog

        -
        public static int Theme_AppCompat_DayNight_Dialog
        -
      • -
      - - - -
        -
      • -

        Theme_AppCompat_DayNight_Dialog_Alert

        -
        public static int Theme_AppCompat_DayNight_Dialog_Alert
        -
      • -
      - - - -
        -
      • -

        Theme_AppCompat_DayNight_Dialog_MinWidth

        -
        public static int Theme_AppCompat_DayNight_Dialog_MinWidth
        -
      • -
      - - - -
        -
      • -

        Theme_AppCompat_DayNight_DialogWhenLarge

        -
        public static int Theme_AppCompat_DayNight_DialogWhenLarge
        -
      • -
      - - - -
        -
      • -

        Theme_AppCompat_DayNight_NoActionBar

        -
        public static int Theme_AppCompat_DayNight_NoActionBar
        -
      • -
      - - - -
        -
      • -

        Theme_AppCompat_Dialog

        -
        public static int Theme_AppCompat_Dialog
        -
      • -
      - - - -
        -
      • -

        Theme_AppCompat_Dialog_Alert

        -
        public static int Theme_AppCompat_Dialog_Alert
        -
      • -
      - - - -
        -
      • -

        Theme_AppCompat_Dialog_MinWidth

        -
        public static int Theme_AppCompat_Dialog_MinWidth
        -
      • -
      - - - -
        -
      • -

        Theme_AppCompat_DialogWhenLarge

        -
        public static int Theme_AppCompat_DialogWhenLarge
        -
      • -
      - - - -
        -
      • -

        Theme_AppCompat_Light

        -
        public static int Theme_AppCompat_Light
        -
      • -
      - - - -
        -
      • -

        Theme_AppCompat_Light_DarkActionBar

        -
        public static int Theme_AppCompat_Light_DarkActionBar
        -
      • -
      - - - -
        -
      • -

        Theme_AppCompat_Light_Dialog

        -
        public static int Theme_AppCompat_Light_Dialog
        -
      • -
      - - - -
        -
      • -

        Theme_AppCompat_Light_Dialog_Alert

        -
        public static int Theme_AppCompat_Light_Dialog_Alert
        -
      • -
      - - - -
        -
      • -

        Theme_AppCompat_Light_Dialog_MinWidth

        -
        public static int Theme_AppCompat_Light_Dialog_MinWidth
        -
      • -
      - - - -
        -
      • -

        Theme_AppCompat_Light_DialogWhenLarge

        -
        public static int Theme_AppCompat_Light_DialogWhenLarge
        -
      • -
      - - - -
        -
      • -

        Theme_AppCompat_Light_NoActionBar

        -
        public static int Theme_AppCompat_Light_NoActionBar
        -
      • -
      - - - -
        -
      • -

        Theme_AppCompat_NoActionBar

        -
        public static int Theme_AppCompat_NoActionBar
        -
      • -
      - - - -
        -
      • -

        ThemeOverlay_AppCompat

        -
        public static int ThemeOverlay_AppCompat
        -
      • -
      - - - -
        -
      • -

        ThemeOverlay_AppCompat_ActionBar

        -
        public static int ThemeOverlay_AppCompat_ActionBar
        -
      • -
      - - - -
        -
      • -

        ThemeOverlay_AppCompat_Dark

        -
        public static int ThemeOverlay_AppCompat_Dark
        -
      • -
      - - - -
        -
      • -

        ThemeOverlay_AppCompat_Dark_ActionBar

        -
        public static int ThemeOverlay_AppCompat_Dark_ActionBar
        -
      • -
      - - - -
        -
      • -

        ThemeOverlay_AppCompat_Dialog

        -
        public static int ThemeOverlay_AppCompat_Dialog
        -
      • -
      - - - -
        -
      • -

        ThemeOverlay_AppCompat_Dialog_Alert

        -
        public static int ThemeOverlay_AppCompat_Dialog_Alert
        -
      • -
      - - - -
        -
      • -

        ThemeOverlay_AppCompat_Light

        -
        public static int ThemeOverlay_AppCompat_Light
        -
      • -
      - - - -
        -
      • -

        Widget_AppCompat_ActionBar

        -
        public static int Widget_AppCompat_ActionBar
        -
      • -
      - - - -
        -
      • -

        Widget_AppCompat_ActionBar_Solid

        -
        public static int Widget_AppCompat_ActionBar_Solid
        -
      • -
      - - - -
        -
      • -

        Widget_AppCompat_ActionBar_TabBar

        -
        public static int Widget_AppCompat_ActionBar_TabBar
        -
      • -
      - - - -
        -
      • -

        Widget_AppCompat_ActionBar_TabText

        -
        public static int Widget_AppCompat_ActionBar_TabText
        -
      • -
      - - - -
        -
      • -

        Widget_AppCompat_ActionBar_TabView

        -
        public static int Widget_AppCompat_ActionBar_TabView
        -
      • -
      - - - -
        -
      • -

        Widget_AppCompat_ActionButton

        -
        public static int Widget_AppCompat_ActionButton
        -
      • -
      - - - -
        -
      • -

        Widget_AppCompat_ActionButton_CloseMode

        -
        public static int Widget_AppCompat_ActionButton_CloseMode
        -
      • -
      - - - -
        -
      • -

        Widget_AppCompat_ActionButton_Overflow

        -
        public static int Widget_AppCompat_ActionButton_Overflow
        -
      • -
      - - - -
        -
      • -

        Widget_AppCompat_ActionMode

        -
        public static int Widget_AppCompat_ActionMode
        -
      • -
      - - - -
        -
      • -

        Widget_AppCompat_ActivityChooserView

        -
        public static int Widget_AppCompat_ActivityChooserView
        -
      • -
      - - - -
        -
      • -

        Widget_AppCompat_AutoCompleteTextView

        -
        public static int Widget_AppCompat_AutoCompleteTextView
        -
      • -
      - - - -
        -
      • -

        Widget_AppCompat_Button

        -
        public static int Widget_AppCompat_Button
        -
      • -
      - - - -
        -
      • -

        Widget_AppCompat_Button_Borderless

        -
        public static int Widget_AppCompat_Button_Borderless
        -
      • -
      - - - -
        -
      • -

        Widget_AppCompat_Button_Borderless_Colored

        -
        public static int Widget_AppCompat_Button_Borderless_Colored
        -
      • -
      - - - -
        -
      • -

        Widget_AppCompat_Button_ButtonBar_AlertDialog

        -
        public static int Widget_AppCompat_Button_ButtonBar_AlertDialog
        -
      • -
      - - - -
        -
      • -

        Widget_AppCompat_Button_Colored

        -
        public static int Widget_AppCompat_Button_Colored
        -
      • -
      - - - -
        -
      • -

        Widget_AppCompat_Button_Small

        -
        public static int Widget_AppCompat_Button_Small
        -
      • -
      - - - -
        -
      • -

        Widget_AppCompat_ButtonBar

        -
        public static int Widget_AppCompat_ButtonBar
        -
      • -
      - - - -
        -
      • -

        Widget_AppCompat_ButtonBar_AlertDialog

        -
        public static int Widget_AppCompat_ButtonBar_AlertDialog
        -
      • -
      - - - -
        -
      • -

        Widget_AppCompat_CompoundButton_CheckBox

        -
        public static int Widget_AppCompat_CompoundButton_CheckBox
        -
      • -
      - - - -
        -
      • -

        Widget_AppCompat_CompoundButton_RadioButton

        -
        public static int Widget_AppCompat_CompoundButton_RadioButton
        -
      • -
      - - - -
        -
      • -

        Widget_AppCompat_CompoundButton_Switch

        -
        public static int Widget_AppCompat_CompoundButton_Switch
        -
      • -
      - - - -
        -
      • -

        Widget_AppCompat_DrawerArrowToggle

        -
        public static int Widget_AppCompat_DrawerArrowToggle
        -
      • -
      - - - -
        -
      • -

        Widget_AppCompat_DropDownItem_Spinner

        -
        public static int Widget_AppCompat_DropDownItem_Spinner
        -
      • -
      - - - -
        -
      • -

        Widget_AppCompat_EditText

        -
        public static int Widget_AppCompat_EditText
        -
      • -
      - - - -
        -
      • -

        Widget_AppCompat_ImageButton

        -
        public static int Widget_AppCompat_ImageButton
        -
      • -
      - - - -
        -
      • -

        Widget_AppCompat_Light_ActionBar

        -
        public static int Widget_AppCompat_Light_ActionBar
        -
      • -
      - - - -
        -
      • -

        Widget_AppCompat_Light_ActionBar_Solid

        -
        public static int Widget_AppCompat_Light_ActionBar_Solid
        -
      • -
      - - - -
        -
      • -

        Widget_AppCompat_Light_ActionBar_Solid_Inverse

        -
        public static int Widget_AppCompat_Light_ActionBar_Solid_Inverse
        -
      • -
      - - - -
        -
      • -

        Widget_AppCompat_Light_ActionBar_TabBar

        -
        public static int Widget_AppCompat_Light_ActionBar_TabBar
        -
      • -
      - - - -
        -
      • -

        Widget_AppCompat_Light_ActionBar_TabBar_Inverse

        -
        public static int Widget_AppCompat_Light_ActionBar_TabBar_Inverse
        -
      • -
      - - - -
        -
      • -

        Widget_AppCompat_Light_ActionBar_TabText

        -
        public static int Widget_AppCompat_Light_ActionBar_TabText
        -
      • -
      - - - -
        -
      • -

        Widget_AppCompat_Light_ActionBar_TabText_Inverse

        -
        public static int Widget_AppCompat_Light_ActionBar_TabText_Inverse
        -
      • -
      - - - -
        -
      • -

        Widget_AppCompat_Light_ActionBar_TabView

        -
        public static int Widget_AppCompat_Light_ActionBar_TabView
        -
      • -
      - - - -
        -
      • -

        Widget_AppCompat_Light_ActionBar_TabView_Inverse

        -
        public static int Widget_AppCompat_Light_ActionBar_TabView_Inverse
        -
      • -
      - - - -
        -
      • -

        Widget_AppCompat_Light_ActionButton

        -
        public static int Widget_AppCompat_Light_ActionButton
        -
      • -
      - - - -
        -
      • -

        Widget_AppCompat_Light_ActionButton_CloseMode

        -
        public static int Widget_AppCompat_Light_ActionButton_CloseMode
        -
      • -
      - - - -
        -
      • -

        Widget_AppCompat_Light_ActionButton_Overflow

        -
        public static int Widget_AppCompat_Light_ActionButton_Overflow
        -
      • -
      - - - -
        -
      • -

        Widget_AppCompat_Light_ActionMode_Inverse

        -
        public static int Widget_AppCompat_Light_ActionMode_Inverse
        -
      • -
      - - - -
        -
      • -

        Widget_AppCompat_Light_ActivityChooserView

        -
        public static int Widget_AppCompat_Light_ActivityChooserView
        -
      • -
      - - - -
        -
      • -

        Widget_AppCompat_Light_AutoCompleteTextView

        -
        public static int Widget_AppCompat_Light_AutoCompleteTextView
        -
      • -
      - - - -
        -
      • -

        Widget_AppCompat_Light_DropDownItem_Spinner

        -
        public static int Widget_AppCompat_Light_DropDownItem_Spinner
        -
      • -
      - - - -
        -
      • -

        Widget_AppCompat_Light_ListPopupWindow

        -
        public static int Widget_AppCompat_Light_ListPopupWindow
        -
      • -
      - - - -
        -
      • -

        Widget_AppCompat_Light_ListView_DropDown

        -
        public static int Widget_AppCompat_Light_ListView_DropDown
        -
      • -
      - - - -
        -
      • -

        Widget_AppCompat_Light_PopupMenu

        -
        public static int Widget_AppCompat_Light_PopupMenu
        -
      • -
      - - - -
        -
      • -

        Widget_AppCompat_Light_PopupMenu_Overflow

        -
        public static int Widget_AppCompat_Light_PopupMenu_Overflow
        -
      • -
      - - - -
        -
      • -

        Widget_AppCompat_Light_SearchView

        -
        public static int Widget_AppCompat_Light_SearchView
        -
      • -
      - - - -
        -
      • -

        Widget_AppCompat_Light_Spinner_DropDown_ActionBar

        -
        public static int Widget_AppCompat_Light_Spinner_DropDown_ActionBar
        -
      • -
      - - - -
        -
      • -

        Widget_AppCompat_ListMenuView

        -
        public static int Widget_AppCompat_ListMenuView
        -
      • -
      - - - -
        -
      • -

        Widget_AppCompat_ListPopupWindow

        -
        public static int Widget_AppCompat_ListPopupWindow
        -
      • -
      - - - -
        -
      • -

        Widget_AppCompat_ListView

        -
        public static int Widget_AppCompat_ListView
        -
      • -
      - - - -
        -
      • -

        Widget_AppCompat_ListView_DropDown

        -
        public static int Widget_AppCompat_ListView_DropDown
        -
      • -
      - - - -
        -
      • -

        Widget_AppCompat_ListView_Menu

        -
        public static int Widget_AppCompat_ListView_Menu
        -
      • -
      - - - -
        -
      • -

        Widget_AppCompat_NotificationActionContainer

        -
        public static int Widget_AppCompat_NotificationActionContainer
        -
      • -
      - - - -
        -
      • -

        Widget_AppCompat_NotificationActionText

        -
        public static int Widget_AppCompat_NotificationActionText
        -
      • -
      - - - -
        -
      • -

        Widget_AppCompat_PopupMenu

        -
        public static int Widget_AppCompat_PopupMenu
        -
      • -
      - - - -
        -
      • -

        Widget_AppCompat_PopupMenu_Overflow

        -
        public static int Widget_AppCompat_PopupMenu_Overflow
        -
      • -
      - - - -
        -
      • -

        Widget_AppCompat_PopupWindow

        -
        public static int Widget_AppCompat_PopupWindow
        -
      • -
      - - - -
        -
      • -

        Widget_AppCompat_ProgressBar

        -
        public static int Widget_AppCompat_ProgressBar
        -
      • -
      - - - -
        -
      • -

        Widget_AppCompat_ProgressBar_Horizontal

        -
        public static int Widget_AppCompat_ProgressBar_Horizontal
        -
      • -
      - - - -
        -
      • -

        Widget_AppCompat_RatingBar

        -
        public static int Widget_AppCompat_RatingBar
        -
      • -
      - - - -
        -
      • -

        Widget_AppCompat_RatingBar_Indicator

        -
        public static int Widget_AppCompat_RatingBar_Indicator
        -
      • -
      - - - -
        -
      • -

        Widget_AppCompat_RatingBar_Small

        -
        public static int Widget_AppCompat_RatingBar_Small
        -
      • -
      - - - -
        -
      • -

        Widget_AppCompat_SearchView

        -
        public static int Widget_AppCompat_SearchView
        -
      • -
      - - - -
        -
      • -

        Widget_AppCompat_SearchView_ActionBar

        -
        public static int Widget_AppCompat_SearchView_ActionBar
        -
      • -
      - - - -
        -
      • -

        Widget_AppCompat_SeekBar

        -
        public static int Widget_AppCompat_SeekBar
        -
      • -
      - - - -
        -
      • -

        Widget_AppCompat_SeekBar_Discrete

        -
        public static int Widget_AppCompat_SeekBar_Discrete
        -
      • -
      - - - -
        -
      • -

        Widget_AppCompat_Spinner

        -
        public static int Widget_AppCompat_Spinner
        -
      • -
      - - - -
        -
      • -

        Widget_AppCompat_Spinner_DropDown

        -
        public static int Widget_AppCompat_Spinner_DropDown
        -
      • -
      - - - -
        -
      • -

        Widget_AppCompat_Spinner_DropDown_ActionBar

        -
        public static int Widget_AppCompat_Spinner_DropDown_ActionBar
        -
      • -
      - - - -
        -
      • -

        Widget_AppCompat_Spinner_Underlined

        -
        public static int Widget_AppCompat_Spinner_Underlined
        -
      • -
      - - - -
        -
      • -

        Widget_AppCompat_TextView_SpinnerItem

        -
        public static int Widget_AppCompat_TextView_SpinnerItem
        -
      • -
      - - - -
        -
      • -

        Widget_AppCompat_Toolbar

        -
        public static int Widget_AppCompat_Toolbar
        -
      • -
      - - - -
        -
      • -

        Widget_AppCompat_Toolbar_Button_Navigation

        -
        public static int Widget_AppCompat_Toolbar_Button_Navigation
        -
      • -
      -
    • -
    - -
      -
    • - - -

      Constructor Detail

      - - - -
        -
      • -

        style

        -
        public style()
        -
      • -
      -
    • -
    -
  • -
-
-
- - - - - - - diff --git a/docs/com/tomer/fadingtextview/R.styleable.html b/docs/com/tomer/fadingtextview/R.styleable.html deleted file mode 100644 index 05e2042..0000000 --- a/docs/com/tomer/fadingtextview/R.styleable.html +++ /dev/null @@ -1,9488 +0,0 @@ - - - - - -R.styleable - - - - - - - - - - - - -
-
com.tomer.fadingtextview
-

Class R.styleable

-
-
-
    -
  • java.lang.Object
  • -
  • -
      -
    • com.tomer.fadingtextview.R.styleable
    • -
    -
  • -
-
-
    -
  • -
    -
    Enclosing class:
    -
    R
    -
    -
    -
    -
    public static final class R.styleable
    -extends java.lang.Object
    -
  • -
-
-
- -
-
- -
-
- - - - - - - diff --git a/docs/com/tomer/fadingtextview/class-use/BuildConfig.html b/docs/com/tomer/fadingtextview/class-use/BuildConfig.html deleted file mode 100644 index 7bd9032..0000000 --- a/docs/com/tomer/fadingtextview/class-use/BuildConfig.html +++ /dev/null @@ -1,124 +0,0 @@ - - - - - -Uses of Class com.tomer.fadingtextview.BuildConfig - - - - - - - - - - - -
-

Uses of Class
com.tomer.fadingtextview.BuildConfig

-
-
No usage of com.tomer.fadingtextview.BuildConfig
- - - - - - diff --git a/docs/com/tomer/fadingtextview/class-use/ExampleUnitTest.html b/docs/com/tomer/fadingtextview/class-use/ExampleUnitTest.html deleted file mode 100644 index c78153d..0000000 --- a/docs/com/tomer/fadingtextview/class-use/ExampleUnitTest.html +++ /dev/null @@ -1,122 +0,0 @@ - - - - - -Uses of Class com.tomer.fadingtextview.ExampleUnitTest - - - - - - - - - - - -
-

Uses of Class
com.tomer.fadingtextview.ExampleUnitTest

-
-
No usage of com.tomer.fadingtextview.ExampleUnitTest
- - - - - - diff --git a/docs/com/tomer/fadingtextview/class-use/FadingTextView.TimeUnit.html b/docs/com/tomer/fadingtextview/class-use/FadingTextView.TimeUnit.html deleted file mode 100644 index 0bb1913..0000000 --- a/docs/com/tomer/fadingtextview/class-use/FadingTextView.TimeUnit.html +++ /dev/null @@ -1,152 +0,0 @@ - - - - - -Uses of Class com.tomer.fadingtextview.FadingTextView.TimeUnit - - - - - - - - - - - -
-

Uses of Class
com.tomer.fadingtextview.FadingTextView.TimeUnit

-
-
- -
- - - - - - diff --git a/docs/com/tomer/fadingtextview/class-use/FadingTextView.html b/docs/com/tomer/fadingtextview/class-use/FadingTextView.html deleted file mode 100644 index 153f9d5..0000000 --- a/docs/com/tomer/fadingtextview/class-use/FadingTextView.html +++ /dev/null @@ -1,122 +0,0 @@ - - - - - -Uses of Class com.tomer.fadingtextview.FadingTextView - - - - - - - - - - - -
-

Uses of Class
com.tomer.fadingtextview.FadingTextView

-
-
No usage of com.tomer.fadingtextview.FadingTextView
- - - - - - diff --git a/docs/com/tomer/fadingtextview/class-use/R.anim.html b/docs/com/tomer/fadingtextview/class-use/R.anim.html deleted file mode 100644 index 16ca943..0000000 --- a/docs/com/tomer/fadingtextview/class-use/R.anim.html +++ /dev/null @@ -1,124 +0,0 @@ - - - - - -Uses of Class com.tomer.fadingtextview.R.anim - - - - - - - - - - - -
-

Uses of Class
com.tomer.fadingtextview.R.anim

-
-
No usage of com.tomer.fadingtextview.R.anim
- - - - - - diff --git a/docs/com/tomer/fadingtextview/class-use/R.attr.html b/docs/com/tomer/fadingtextview/class-use/R.attr.html deleted file mode 100644 index eb80321..0000000 --- a/docs/com/tomer/fadingtextview/class-use/R.attr.html +++ /dev/null @@ -1,124 +0,0 @@ - - - - - -Uses of Class com.tomer.fadingtextview.R.attr - - - - - - - - - - - -
-

Uses of Class
com.tomer.fadingtextview.R.attr

-
-
No usage of com.tomer.fadingtextview.R.attr
- - - - - - diff --git a/docs/com/tomer/fadingtextview/class-use/R.bool.html b/docs/com/tomer/fadingtextview/class-use/R.bool.html deleted file mode 100644 index df0b886..0000000 --- a/docs/com/tomer/fadingtextview/class-use/R.bool.html +++ /dev/null @@ -1,124 +0,0 @@ - - - - - -Uses of Class com.tomer.fadingtextview.R.bool - - - - - - - - - - - -
-

Uses of Class
com.tomer.fadingtextview.R.bool

-
-
No usage of com.tomer.fadingtextview.R.bool
- - - - - - diff --git a/docs/com/tomer/fadingtextview/class-use/R.color.html b/docs/com/tomer/fadingtextview/class-use/R.color.html deleted file mode 100644 index a66fb9f..0000000 --- a/docs/com/tomer/fadingtextview/class-use/R.color.html +++ /dev/null @@ -1,124 +0,0 @@ - - - - - -Uses of Class com.tomer.fadingtextview.R.color - - - - - - - - - - - -
-

Uses of Class
com.tomer.fadingtextview.R.color

-
-
No usage of com.tomer.fadingtextview.R.color
- - - - - - diff --git a/docs/com/tomer/fadingtextview/class-use/R.dimen.html b/docs/com/tomer/fadingtextview/class-use/R.dimen.html deleted file mode 100644 index 3002b08..0000000 --- a/docs/com/tomer/fadingtextview/class-use/R.dimen.html +++ /dev/null @@ -1,124 +0,0 @@ - - - - - -Uses of Class com.tomer.fadingtextview.R.dimen - - - - - - - - - - - -
-

Uses of Class
com.tomer.fadingtextview.R.dimen

-
-
No usage of com.tomer.fadingtextview.R.dimen
- - - - - - diff --git a/docs/com/tomer/fadingtextview/class-use/R.drawable.html b/docs/com/tomer/fadingtextview/class-use/R.drawable.html deleted file mode 100644 index eac03ce..0000000 --- a/docs/com/tomer/fadingtextview/class-use/R.drawable.html +++ /dev/null @@ -1,124 +0,0 @@ - - - - - -Uses of Class com.tomer.fadingtextview.R.drawable - - - - - - - - - - - -
-

Uses of Class
com.tomer.fadingtextview.R.drawable

-
-
No usage of com.tomer.fadingtextview.R.drawable
- - - - - - diff --git a/docs/com/tomer/fadingtextview/class-use/R.html b/docs/com/tomer/fadingtextview/class-use/R.html deleted file mode 100644 index cd4b0b5..0000000 --- a/docs/com/tomer/fadingtextview/class-use/R.html +++ /dev/null @@ -1,124 +0,0 @@ - - - - - -Uses of Class com.tomer.fadingtextview.R - - - - - - - - - - - -
-

Uses of Class
com.tomer.fadingtextview.R

-
-
No usage of com.tomer.fadingtextview.R
- - - - - - diff --git a/docs/com/tomer/fadingtextview/class-use/R.id.html b/docs/com/tomer/fadingtextview/class-use/R.id.html deleted file mode 100644 index fc6bdbd..0000000 --- a/docs/com/tomer/fadingtextview/class-use/R.id.html +++ /dev/null @@ -1,124 +0,0 @@ - - - - - -Uses of Class com.tomer.fadingtextview.R.id - - - - - - - - - - - -
-

Uses of Class
com.tomer.fadingtextview.R.id

-
-
No usage of com.tomer.fadingtextview.R.id
- - - - - - diff --git a/docs/com/tomer/fadingtextview/class-use/R.integer.html b/docs/com/tomer/fadingtextview/class-use/R.integer.html deleted file mode 100644 index f29731e..0000000 --- a/docs/com/tomer/fadingtextview/class-use/R.integer.html +++ /dev/null @@ -1,124 +0,0 @@ - - - - - -Uses of Class com.tomer.fadingtextview.R.integer - - - - - - - - - - - -
-

Uses of Class
com.tomer.fadingtextview.R.integer

-
-
No usage of com.tomer.fadingtextview.R.integer
- - - - - - diff --git a/docs/com/tomer/fadingtextview/class-use/R.layout.html b/docs/com/tomer/fadingtextview/class-use/R.layout.html deleted file mode 100644 index b06032d..0000000 --- a/docs/com/tomer/fadingtextview/class-use/R.layout.html +++ /dev/null @@ -1,124 +0,0 @@ - - - - - -Uses of Class com.tomer.fadingtextview.R.layout - - - - - - - - - - - -
-

Uses of Class
com.tomer.fadingtextview.R.layout

-
-
No usage of com.tomer.fadingtextview.R.layout
- - - - - - diff --git a/docs/com/tomer/fadingtextview/class-use/R.string.html b/docs/com/tomer/fadingtextview/class-use/R.string.html deleted file mode 100644 index 3eb736f..0000000 --- a/docs/com/tomer/fadingtextview/class-use/R.string.html +++ /dev/null @@ -1,124 +0,0 @@ - - - - - -Uses of Class com.tomer.fadingtextview.R.string - - - - - - - - - - - -
-

Uses of Class
com.tomer.fadingtextview.R.string

-
-
No usage of com.tomer.fadingtextview.R.string
- - - - - - diff --git a/docs/com/tomer/fadingtextview/class-use/R.style.html b/docs/com/tomer/fadingtextview/class-use/R.style.html deleted file mode 100644 index 5a70fcd..0000000 --- a/docs/com/tomer/fadingtextview/class-use/R.style.html +++ /dev/null @@ -1,124 +0,0 @@ - - - - - -Uses of Class com.tomer.fadingtextview.R.style - - - - - - - - - - - -
-

Uses of Class
com.tomer.fadingtextview.R.style

-
-
No usage of com.tomer.fadingtextview.R.style
- - - - - - diff --git a/docs/com/tomer/fadingtextview/class-use/R.styleable.html b/docs/com/tomer/fadingtextview/class-use/R.styleable.html deleted file mode 100644 index 6a2f86d..0000000 --- a/docs/com/tomer/fadingtextview/class-use/R.styleable.html +++ /dev/null @@ -1,124 +0,0 @@ - - - - - -Uses of Class com.tomer.fadingtextview.R.styleable - - - - - - - - - - - -
-

Uses of Class
com.tomer.fadingtextview.R.styleable

-
-
No usage of com.tomer.fadingtextview.R.styleable
- - - - - - diff --git a/docs/com/tomer/fadingtextview/package-frame.html b/docs/com/tomer/fadingtextview/package-frame.html deleted file mode 100644 index bed0453..0000000 --- a/docs/com/tomer/fadingtextview/package-frame.html +++ /dev/null @@ -1,24 +0,0 @@ - - - - - -com.tomer.fadingtextview - - - - - -

com.tomer.fadingtextview

-
-

Classes

- -

Annotation Types

- -
- - diff --git a/docs/com/tomer/fadingtextview/package-summary.html b/docs/com/tomer/fadingtextview/package-summary.html deleted file mode 100644 index 6e48348..0000000 --- a/docs/com/tomer/fadingtextview/package-summary.html +++ /dev/null @@ -1,155 +0,0 @@ - - - - - -com.tomer.fadingtextview - - - - - - - - - - - -
-

Package com.tomer.fadingtextview

-
-
-
    -
  • - - - - - - - - - - - - -
    Class Summary 
    ClassDescription
    FadingTextView 
    -
  • -
  • - - - - - - - - - - - - -
    Annotation Types Summary 
    Annotation TypeDescription
    FadingTextView.TimeUnit 
    -
  • -
-
- - - - - - diff --git a/docs/com/tomer/fadingtextview/package-tree.html b/docs/com/tomer/fadingtextview/package-tree.html deleted file mode 100644 index 53e9555..0000000 --- a/docs/com/tomer/fadingtextview/package-tree.html +++ /dev/null @@ -1,147 +0,0 @@ - - - - - -com.tomer.fadingtextview Class Hierarchy - - - - - - - - - - - -
-

Hierarchy For Package com.tomer.fadingtextview

-
-
-

Class Hierarchy

-
    -
  • java.lang.Object -
      -
    • android.view.View (implements android.view.accessibility.AccessibilityEventSource, android.graphics.drawable.Drawable.Callback, android.view.KeyEvent.Callback) -
        -
      • android.widget.TextView (implements android.view.ViewTreeObserver.OnPreDrawListener) -
          -
        • android.support.v7.widget.AppCompatTextView (implements android.support.v4.view.TintableBackgroundView) - -
        • -
        -
      • -
      -
    • -
    -
  • -
-

Annotation Type Hierarchy

- -
- - - - - - diff --git a/docs/com/tomer/fadingtextview/package-use.html b/docs/com/tomer/fadingtextview/package-use.html deleted file mode 100644 index 6569b2f..0000000 --- a/docs/com/tomer/fadingtextview/package-use.html +++ /dev/null @@ -1,140 +0,0 @@ - - - - - -Uses of Package com.tomer.fadingtextview - - - - - - - - - - - -
-

Uses of Package
com.tomer.fadingtextview

-
-
- -
- - - - - - diff --git a/docs/com/tomerrosenfeld/fadingtextview/BuildConfig.html b/docs/com/tomerrosenfeld/fadingtextview/BuildConfig.html deleted file mode 100644 index f7b626f..0000000 --- a/docs/com/tomerrosenfeld/fadingtextview/BuildConfig.html +++ /dev/null @@ -1,358 +0,0 @@ - - - - - -BuildConfig - - - - - - - - - - - - -
-
com.tomerrosenfeld.fadingtextview
-

Class BuildConfig

-
-
-
    -
  • java.lang.Object
  • -
  • -
      -
    • com.tomerrosenfeld.fadingtextview.BuildConfig
    • -
    -
  • -
-
-
    -
  • -
    -
    -
    public final class BuildConfig
    -extends java.lang.Object
    -
  • -
-
-
-
    -
  • - -
      -
    • - - -

      Field Summary

      - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
      Fields 
      Modifier and TypeField and Description
      static java.lang.StringAPPLICATION_ID 
      static java.lang.StringBUILD_TYPE 
      static booleanDEBUG 
      static java.lang.StringFLAVOR 
      static intVERSION_CODE 
      static java.lang.StringVERSION_NAME 
      -
    • -
    - -
      -
    • - - -

      Constructor Summary

      - - - - - - - - -
      Constructors 
      Constructor and Description
      BuildConfig() 
      -
    • -
    - -
      -
    • - - -

      Method Summary

      -
        -
      • - - -

        Methods inherited from class java.lang.Object

        -clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
      • -
      -
    • -
    -
  • -
-
-
-
    -
  • - - - -
      -
    • - - -

      Constructor Detail

      - - - -
        -
      • -

        BuildConfig

        -
        public BuildConfig()
        -
      • -
      -
    • -
    -
  • -
-
-
- - - - - - - diff --git a/docs/com/tomerrosenfeld/fadingtextview/ExampleInstrumentedTest.html b/docs/com/tomerrosenfeld/fadingtextview/ExampleInstrumentedTest.html deleted file mode 100644 index c8c4077..0000000 --- a/docs/com/tomerrosenfeld/fadingtextview/ExampleInstrumentedTest.html +++ /dev/null @@ -1,281 +0,0 @@ - - - - - -ExampleInstrumentedTest - - - - - - - - - - - - -
-
com.tomerrosenfeld.fadingtextview
-

Class ExampleInstrumentedTest

-
-
-
    -
  • java.lang.Object
  • -
  • -
      -
    • com.tomerrosenfeld.fadingtextview.ExampleInstrumentedTest
    • -
    -
  • -
-
-
    -
  • -
    -
    -
    public class ExampleInstrumentedTest
    -extends java.lang.Object
    -
    Instrumentation test, which will execute on an Android device.
    -
    -
    See Also:
    -
    Testing documentation
    -
    -
  • -
-
-
-
    -
  • - - - -
      -
    • - - -

      Method Summary

      - - - - - - - - - - -
      All Methods Instance Methods Concrete Methods 
      Modifier and TypeMethod and Description
      voiduseAppContext() 
      -
        -
      • - - -

        Methods inherited from class java.lang.Object

        -clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
      • -
      -
    • -
    -
  • -
-
-
-
    -
  • - -
      -
    • - - -

      Constructor Detail

      - - - -
        -
      • -

        ExampleInstrumentedTest

        -
        public ExampleInstrumentedTest()
        -
      • -
      -
    • -
    - -
      -
    • - - -

      Method Detail

      - - - -
        -
      • -

        useAppContext

        -
        public void useAppContext()
        -                   throws java.lang.Exception
        -
        -
        Throws:
        -
        java.lang.Exception
        -
        -
      • -
      -
    • -
    -
  • -
-
-
- - - - - - - diff --git a/docs/com/tomerrosenfeld/fadingtextview/ExampleUnitTest.html b/docs/com/tomerrosenfeld/fadingtextview/ExampleUnitTest.html deleted file mode 100644 index e5447c5..0000000 --- a/docs/com/tomerrosenfeld/fadingtextview/ExampleUnitTest.html +++ /dev/null @@ -1,281 +0,0 @@ - - - - - -ExampleUnitTest - - - - - - - - - - - - -
-
com.tomerrosenfeld.fadingtextview
-

Class ExampleUnitTest

-
-
-
    -
  • java.lang.Object
  • -
  • -
      -
    • com.tomerrosenfeld.fadingtextview.ExampleUnitTest
    • -
    -
  • -
-
-
    -
  • -
    -
    -
    public class ExampleUnitTest
    -extends java.lang.Object
    -
    Example local unit test, which will execute on the development machine (host).
    -
    -
    See Also:
    -
    Testing documentation
    -
    -
  • -
-
-
-
    -
  • - -
      -
    • - - -

      Constructor Summary

      - - - - - - - - -
      Constructors 
      Constructor and Description
      ExampleUnitTest() 
      -
    • -
    - -
      -
    • - - -

      Method Summary

      - - - - - - - - - - -
      All Methods Instance Methods Concrete Methods 
      Modifier and TypeMethod and Description
      voidaddition_isCorrect() 
      -
        -
      • - - -

        Methods inherited from class java.lang.Object

        -clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
      • -
      -
    • -
    -
  • -
-
-
-
    -
  • - -
      -
    • - - -

      Constructor Detail

      - - - -
        -
      • -

        ExampleUnitTest

        -
        public ExampleUnitTest()
        -
      • -
      -
    • -
    - -
      -
    • - - -

      Method Detail

      - - - -
        -
      • -

        addition_isCorrect

        -
        public void addition_isCorrect()
        -                        throws java.lang.Exception
        -
        -
        Throws:
        -
        java.lang.Exception
        -
        -
      • -
      -
    • -
    -
  • -
-
-
- - - - - - - diff --git a/docs/com/tomerrosenfeld/fadingtextview/MainActivity.html b/docs/com/tomerrosenfeld/fadingtextview/MainActivity.html deleted file mode 100644 index 0cf3050..0000000 --- a/docs/com/tomerrosenfeld/fadingtextview/MainActivity.html +++ /dev/null @@ -1,414 +0,0 @@ - - - - - -MainActivity - - - - - - - - - - - - -
-
com.tomerrosenfeld.fadingtextview
-

Class MainActivity

-
-
-
    -
  • java.lang.Object
  • -
  • -
      -
    • android.content.Context
    • -
    • -
        -
      • android.content.ContextWrapper
      • -
      • -
          -
        • android.view.ContextThemeWrapper
        • -
        • -
            -
          • android.app.Activity
          • -
          • -
              -
            • android.support.v4.app.SupportActivity
            • -
            • -
                -
              • android.support.v4.app.FragmentActivity
              • -
              • -
                  -
                • android.support.v7.app.AppCompatActivity
                • -
                • -
                    -
                  • com.tomerrosenfeld.fadingtextview.MainActivity
                  • -
                  -
                • -
                -
              • -
              -
            • -
            -
          • -
          -
        • -
        -
      • -
      -
    • -
    -
  • -
-
-
    -
  • -
    -
    All Implemented Interfaces:
    -
    android.content.ComponentCallbacks, android.content.ComponentCallbacks2, android.support.v4.app.ActivityCompat.OnRequestPermissionsResultCallback, android.support.v4.app.ActivityCompatApi23.RequestPermissionsRequestCodeValidator, android.support.v4.app.TaskStackBuilder.SupportParentable, android.support.v7.app.ActionBarDrawerToggle.DelegateProvider, android.support.v7.app.AppCompatCallback, android.view.KeyEvent.Callback, android.view.LayoutInflater.Factory, android.view.LayoutInflater.Factory2, android.view.View.OnCreateContextMenuListener, android.view.Window.Callback
    -
    -
    -
    -
    public class MainActivity
    -extends android.support.v7.app.AppCompatActivity
    -
  • -
-
-
-
    -
  • - -
      -
    • - - -

      Nested Class Summary

      -
        -
      • - - -

        Nested classes/interfaces inherited from class android.support.v4.app.SupportActivity

        -android.support.v4.app.SupportActivity.ExtraData
      • -
      -
    • -
    - -
      -
    • - - -

      Field Summary

      -
        -
      • - - -

        Fields inherited from class android.app.Activity

        -DEFAULT_KEYS_DIALER, DEFAULT_KEYS_DISABLE, DEFAULT_KEYS_SEARCH_GLOBAL, DEFAULT_KEYS_SEARCH_LOCAL, DEFAULT_KEYS_SHORTCUT, FOCUSED_STATE_SET, RESULT_CANCELED, RESULT_FIRST_USER, RESULT_OK
      • -
      -
        -
      • - - -

        Fields inherited from class android.content.Context

        -ACCESSIBILITY_SERVICE, ACCOUNT_SERVICE, ACTIVITY_SERVICE, ALARM_SERVICE, APP_OPS_SERVICE, APPWIDGET_SERVICE, AUDIO_SERVICE, BATTERY_SERVICE, BIND_ABOVE_CLIENT, BIND_ADJUST_WITH_ACTIVITY, BIND_ALLOW_OOM_MANAGEMENT, BIND_AUTO_CREATE, BIND_DEBUG_UNBIND, BIND_EXTERNAL_SERVICE, BIND_IMPORTANT, BIND_NOT_FOREGROUND, BIND_WAIVE_PRIORITY, BLUETOOTH_SERVICE, CAMERA_SERVICE, CAPTIONING_SERVICE, CARRIER_CONFIG_SERVICE, CLIPBOARD_SERVICE, COMPANION_DEVICE_SERVICE, CONNECTIVITY_SERVICE, CONSUMER_IR_SERVICE, CONTEXT_IGNORE_SECURITY, CONTEXT_INCLUDE_CODE, CONTEXT_RESTRICTED, DEVICE_POLICY_SERVICE, DISPLAY_SERVICE, DOWNLOAD_SERVICE, DROPBOX_SERVICE, FINGERPRINT_SERVICE, HARDWARE_PROPERTIES_SERVICE, INPUT_METHOD_SERVICE, INPUT_SERVICE, JOB_SCHEDULER_SERVICE, KEYGUARD_SERVICE, LAUNCHER_APPS_SERVICE, LAYOUT_INFLATER_SERVICE, LOCATION_SERVICE, MEDIA_PROJECTION_SERVICE, MEDIA_ROUTER_SERVICE, MEDIA_SESSION_SERVICE, MIDI_SERVICE, MODE_APPEND, MODE_ENABLE_WRITE_AHEAD_LOGGING, MODE_MULTI_PROCESS, MODE_NO_LOCALIZED_COLLATORS, MODE_PRIVATE, MODE_WORLD_READABLE, MODE_WORLD_WRITEABLE, NETWORK_STATS_SERVICE, NFC_SERVICE, NOTIFICATION_SERVICE, NSD_SERVICE, POWER_SERVICE, PRINT_SERVICE, RECEIVER_VISIBLE_TO_INSTANT_APPS, RESTRICTIONS_SERVICE, SEARCH_SERVICE, SENSOR_SERVICE, SHORTCUT_SERVICE, STORAGE_SERVICE, STORAGE_STATS_SERVICE, SYSTEM_HEALTH_SERVICE, TELECOM_SERVICE, TELEPHONY_SERVICE, TELEPHONY_SUBSCRIPTION_SERVICE, TEXT_CLASSIFICATION_SERVICE, TEXT_SERVICES_MANAGER_SERVICE, TV_INPUT_SERVICE, UI_MODE_SERVICE, USAGE_STATS_SERVICE, USB_SERVICE, USER_SERVICE, VIBRATOR_SERVICE, WALLPAPER_SERVICE, WIFI_AWARE_SERVICE, WIFI_P2P_SERVICE, WIFI_SERVICE, WINDOW_SERVICE
      • -
      -
        -
      • - - -

        Fields inherited from interface android.content.ComponentCallbacks2

        -TRIM_MEMORY_BACKGROUND, TRIM_MEMORY_COMPLETE, TRIM_MEMORY_MODERATE, TRIM_MEMORY_RUNNING_CRITICAL, TRIM_MEMORY_RUNNING_LOW, TRIM_MEMORY_RUNNING_MODERATE, TRIM_MEMORY_UI_HIDDEN
      • -
      -
    • -
    - -
      -
    • - - -

      Constructor Summary

      - - - - - - - - -
      Constructors 
      Constructor and Description
      MainActivity() 
      -
    • -
    - -
      -
    • - - -

      Method Summary

      - - - - - - - - - - -
      All Methods Instance Methods Concrete Methods 
      Modifier and TypeMethod and Description
      protected voidonCreate(android.os.Bundle savedInstanceState) 
      -
        -
      • - - -

        Methods inherited from class android.support.v7.app.AppCompatActivity

        -addContentView, dispatchKeyEvent, findViewById, getDelegate, getDrawerToggleDelegate, getMenuInflater, getResources, getSupportActionBar, getSupportParentActivityIntent, invalidateOptionsMenu, onConfigurationChanged, onContentChanged, onCreateSupportNavigateUpTaskStack, onDestroy, onMenuItemSelected, onMenuOpened, onPanelClosed, onPostCreate, onPostResume, onPrepareSupportNavigateUpTaskStack, onSaveInstanceState, onStart, onStop, onSupportActionModeFinished, onSupportActionModeStarted, onSupportContentChanged, onSupportNavigateUp, onTitleChanged, onWindowStartingSupportActionMode, setContentView, setContentView, setContentView, setSupportActionBar, setSupportProgress, setSupportProgressBarIndeterminate, setSupportProgressBarIndeterminateVisibility, setSupportProgressBarVisibility, setTheme, startSupportActionMode, supportInvalidateOptionsMenu, supportNavigateUpTo, supportRequestWindowFeature, supportShouldUpRecreateTask
      • -
      -
        -
      • - - -

        Methods inherited from class android.support.v4.app.FragmentActivity

        -dump, getLastCustomNonConfigurationInstance, getSupportFragmentManager, getSupportLoaderManager, getSupportMediaController, onActivityResult, onAttachFragment, onBackPressed, onCreatePanelMenu, onLowMemory, onMultiWindowModeChanged, onNewIntent, onPause, onPictureInPictureModeChanged, onPrepareOptionsPanel, onPreparePanel, onRequestPermissionsResult, onResume, onResumeFragments, onRetainCustomNonConfigurationInstance, onRetainNonConfigurationInstance, onStateNotSaved, setEnterSharedElementCallback, setExitSharedElementCallback, setSupportMediaController, startActivityForResult, startActivityFromFragment, startActivityFromFragment, startIntentSenderFromFragment, supportFinishAfterTransition, supportPostponeEnterTransition, supportStartPostponedEnterTransition, validateRequestPermissionsRequestCode
      • -
      -
        -
      • - - -

        Methods inherited from class android.support.v4.app.SupportActivity

        -getExtraData, putExtraData
      • -
      -
        -
      • - - -

        Methods inherited from class android.app.Activity

        -closeContextMenu, closeOptionsMenu, createPendingResult, dismissDialog, dismissKeyboardShortcutsHelper, dispatchGenericMotionEvent, dispatchKeyShortcutEvent, dispatchPopulateAccessibilityEvent, dispatchTouchEvent, dispatchTrackballEvent, enterPictureInPictureMode, enterPictureInPictureMode, finish, finishActivity, finishActivityFromChild, finishAffinity, finishAfterTransition, finishAndRemoveTask, finishFromChild, getActionBar, getApplication, getCallingActivity, getCallingPackage, getChangingConfigurations, getComponentName, getContentScene, getContentTransitionManager, getCurrentFocus, getFragmentManager, getIntent, getLastNonConfigurationInstance, getLayoutInflater, getLoaderManager, getLocalClassName, getMaxNumPictureInPictureActions, getMediaController, getParent, getParentActivityIntent, getPreferences, getReferrer, getRequestedOrientation, getSearchEvent, getSystemService, getTaskId, getTitle, getTitleColor, getVoiceInteractor, getVolumeControlStream, getWindow, getWindowManager, hasWindowFocus, isActivityTransitionRunning, isChangingConfigurations, isChild, isDestroyed, isFinishing, isImmersive, isInMultiWindowMode, isInPictureInPictureMode, isLocalVoiceInteractionSupported, isTaskRoot, isVoiceInteraction, isVoiceInteractionRoot, managedQuery, moveTaskToBack, navigateUpTo, navigateUpToFromChild, onActionModeFinished, onActionModeStarted, onActivityReenter, onApplyThemeResource, onAttachedToWindow, onAttachFragment, onChildTitleChanged, onContextItemSelected, onContextMenuClosed, onCreate, onCreateContextMenu, onCreateDescription, onCreateDialog, onCreateDialog, onCreateNavigateUpTaskStack, onCreateOptionsMenu, onCreatePanelView, onCreateThumbnail, onDetachedFromWindow, onEnterAnimationComplete, onGenericMotionEvent, onKeyDown, onKeyLongPress, onKeyMultiple, onKeyShortcut, onKeyUp, onLocalVoiceInteractionStarted, onLocalVoiceInteractionStopped, onMultiWindowModeChanged, onNavigateUp, onNavigateUpFromChild, onOptionsItemSelected, onOptionsMenuClosed, onPictureInPictureModeChanged, onPostCreate, onPrepareDialog, onPrepareDialog, onPrepareNavigateUpTaskStack, onPrepareOptionsMenu, onProvideAssistContent, onProvideAssistData, onProvideKeyboardShortcuts, onProvideReferrer, onRestart, onRestoreInstanceState, onRestoreInstanceState, onSaveInstanceState, onSearchRequested, onSearchRequested, onTouchEvent, onTrackballEvent, onTrimMemory, onUserInteraction, onUserLeaveHint, onVisibleBehindCanceled, onWindowAttributesChanged, onWindowFocusChanged, onWindowStartingActionMode, onWindowStartingActionMode, openContextMenu, openOptionsMenu, overridePendingTransition, postponeEnterTransition, recreate, registerForContextMenu, releaseInstance, removeDialog, reportFullyDrawn, requestDragAndDropPermissions, requestPermissions, requestShowKeyboardShortcuts, requestVisibleBehind, requestWindowFeature, runOnUiThread, setActionBar, setContentTransitionManager, setDefaultKeyMode, setEnterSharedElementCallback, setExitSharedElementCallback, setFeatureDrawable, setFeatureDrawableAlpha, setFeatureDrawableResource, setFeatureDrawableUri, setFinishOnTouchOutside, setImmersive, setIntent, setMediaController, setPictureInPictureParams, setProgress, setProgressBarIndeterminate, setProgressBarIndeterminateVisibility, setProgressBarVisibility, setRequestedOrientation, setResult, setResult, setSecondaryProgress, setTaskDescription, setTitle, setTitle, setTitleColor, setVisible, setVolumeControlStream, setVrModeEnabled, shouldShowRequestPermissionRationale, shouldUpRecreateTask, showAssist, showDialog, showDialog, showLockTaskEscapeMessage, startActionMode, startActionMode, startActivities, startActivities, startActivity, startActivity, startActivityFromChild, startActivityFromChild, startActivityFromFragment, startActivityFromFragment, startActivityIfNeeded, startActivityIfNeeded, startIntentSender, startIntentSender, startIntentSenderFromChild, startIntentSenderFromChild, startLocalVoiceInteraction, startLockTask, startManagingCursor, startNextMatchingActivity, startNextMatchingActivity, startPostponedEnterTransition, startSearch, stopLocalVoiceInteraction, stopLockTask, stopManagingCursor, takeKeyEvents, triggerSearch, unregisterForContextMenu
      • -
      -
        -
      • - - -

        Methods inherited from class android.view.ContextThemeWrapper

        -applyOverrideConfiguration, attachBaseContext, getAssets, getTheme
      • -
      -
        -
      • - - -

        Methods inherited from class android.content.ContextWrapper

        -bindService, checkCallingOrSelfPermission, checkCallingOrSelfUriPermission, checkCallingPermission, checkCallingUriPermission, checkPermission, checkSelfPermission, checkUriPermission, checkUriPermission, clearWallpaper, createConfigurationContext, createContextForSplit, createDeviceProtectedStorageContext, createDisplayContext, createPackageContext, databaseList, deleteDatabase, deleteFile, deleteSharedPreferences, enforceCallingOrSelfPermission, enforceCallingOrSelfUriPermission, enforceCallingPermission, enforceCallingUriPermission, enforcePermission, enforceUriPermission, enforceUriPermission, fileList, getApplicationContext, getApplicationInfo, getBaseContext, getCacheDir, getClassLoader, getCodeCacheDir, getContentResolver, getDatabasePath, getDataDir, getDir, getExternalCacheDir, getExternalCacheDirs, getExternalFilesDir, getExternalFilesDirs, getExternalMediaDirs, getFilesDir, getFileStreamPath, getMainLooper, getNoBackupFilesDir, getObbDir, getObbDirs, getPackageCodePath, getPackageManager, getPackageName, getPackageResourcePath, getSharedPreferences, getSystemServiceName, getWallpaper, getWallpaperDesiredMinimumHeight, getWallpaperDesiredMinimumWidth, grantUriPermission, isDeviceProtectedStorage, isRestricted, moveDatabaseFrom, moveSharedPreferencesFrom, openFileInput, openFileOutput, openOrCreateDatabase, openOrCreateDatabase, peekWallpaper, registerReceiver, registerReceiver, registerReceiver, registerReceiver, removeStickyBroadcast, removeStickyBroadcastAsUser, revokeUriPermission, revokeUriPermission, sendBroadcast, sendBroadcast, sendBroadcastAsUser, sendBroadcastAsUser, sendOrderedBroadcast, sendOrderedBroadcast, sendOrderedBroadcastAsUser, sendStickyBroadcast, sendStickyBroadcastAsUser, sendStickyOrderedBroadcast, sendStickyOrderedBroadcastAsUser, setWallpaper, setWallpaper, startForegroundService, startInstrumentation, startService, stopService, unbindService, unregisterReceiver
      • -
      -
        -
      • - - -

        Methods inherited from class android.content.Context

        -getColor, getColorStateList, getDrawable, getString, getString, getSystemService, getText, obtainStyledAttributes, obtainStyledAttributes, obtainStyledAttributes, obtainStyledAttributes, registerComponentCallbacks, unregisterComponentCallbacks
      • -
      -
        -
      • - - -

        Methods inherited from class java.lang.Object

        -clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
      • -
      -
        -
      • - - -

        Methods inherited from interface android.view.Window.Callback

        -onPointerCaptureChanged
      • -
      -
    • -
    -
  • -
-
-
-
    -
  • - -
      -
    • - - -

      Constructor Detail

      - - - -
        -
      • -

        MainActivity

        -
        public MainActivity()
        -
      • -
      -
    • -
    - -
      -
    • - - -

      Method Detail

      - - - -
        -
      • -

        onCreate

        -
        protected void onCreate(android.os.Bundle savedInstanceState)
        -
        -
        Overrides:
        -
        onCreate in class android.support.v7.app.AppCompatActivity
        -
        -
      • -
      -
    • -
    -
  • -
-
-
- - - - - - - diff --git a/docs/com/tomerrosenfeld/fadingtextview/R.anim.html b/docs/com/tomerrosenfeld/fadingtextview/R.anim.html deleted file mode 100644 index 1ab0b5f..0000000 --- a/docs/com/tomerrosenfeld/fadingtextview/R.anim.html +++ /dev/null @@ -1,570 +0,0 @@ - - - - - -R.anim - - - - - - - - - - - - -
-
com.tomerrosenfeld.fadingtextview
-

Class R.anim

-
-
-
    -
  • java.lang.Object
  • -
  • -
      -
    • com.tomerrosenfeld.fadingtextview.R.anim
    • -
    -
  • -
-
-
    -
  • -
    -
    Enclosing class:
    -
    R
    -
    -
    -
    -
    public static final class R.anim
    -extends java.lang.Object
    -
  • -
-
-
- -
-
- -
-
- - - - - - - diff --git a/docs/com/tomerrosenfeld/fadingtextview/R.animator.html b/docs/com/tomerrosenfeld/fadingtextview/R.animator.html deleted file mode 100644 index ae8f141..0000000 --- a/docs/com/tomerrosenfeld/fadingtextview/R.animator.html +++ /dev/null @@ -1,281 +0,0 @@ - - - - - -R.animator - - - - - - - - - - - - -
-
com.tomerrosenfeld.fadingtextview
-

Class R.animator

-
-
-
    -
  • java.lang.Object
  • -
  • -
      -
    • com.tomerrosenfeld.fadingtextview.R.animator
    • -
    -
  • -
-
-
    -
  • -
    -
    Enclosing class:
    -
    R
    -
    -
    -
    -
    public static final class R.animator
    -extends java.lang.Object
    -
  • -
-
-
-
    -
  • - - - -
      -
    • - - -

      Constructor Summary

      - - - - - - - - -
      Constructors 
      Constructor and Description
      animator() 
      -
    • -
    - -
      -
    • - - -

      Method Summary

      -
        -
      • - - -

        Methods inherited from class java.lang.Object

        -clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
      • -
      -
    • -
    -
  • -
-
-
-
    -
  • - -
      -
    • - - -

      Field Detail

      - - - -
        -
      • -

        design_appbar_state_list_animator

        -
        public static final int design_appbar_state_list_animator
        -
        -
        See Also:
        -
        Constant Field Values
        -
        -
      • -
      -
    • -
    - -
      -
    • - - -

      Constructor Detail

      - - - -
        -
      • -

        animator

        -
        public animator()
        -
      • -
      -
    • -
    -
  • -
-
-
- - - - - - - diff --git a/docs/com/tomerrosenfeld/fadingtextview/R.array.html b/docs/com/tomerrosenfeld/fadingtextview/R.array.html deleted file mode 100644 index bbf464a..0000000 --- a/docs/com/tomerrosenfeld/fadingtextview/R.array.html +++ /dev/null @@ -1,332 +0,0 @@ - - - - - -R.array - - - - - - - - - - - - -
-
com.tomerrosenfeld.fadingtextview
-

Class R.array

-
-
-
    -
  • java.lang.Object
  • -
  • -
      -
    • com.tomerrosenfeld.fadingtextview.R.array
    • -
    -
  • -
-
-
    -
  • -
    -
    Enclosing class:
    -
    R
    -
    -
    -
    -
    public static final class R.array
    -extends java.lang.Object
    -
  • -
-
-
-
    -
  • - - - -
      -
    • - - -

      Constructor Summary

      - - - - - - - - -
      Constructors 
      Constructor and Description
      array() 
      -
    • -
    - -
      -
    • - - -

      Method Summary

      -
        -
      • - - -

        Methods inherited from class java.lang.Object

        -clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
      • -
      -
    • -
    -
  • -
-
-
- -
-
- - - - - - - diff --git a/docs/com/tomerrosenfeld/fadingtextview/R.attr.html b/docs/com/tomerrosenfeld/fadingtextview/R.attr.html deleted file mode 100644 index bac2591..0000000 --- a/docs/com/tomerrosenfeld/fadingtextview/R.attr.html +++ /dev/null @@ -1,8635 +0,0 @@ - - - - - -R.attr - - - - - - - - - - - - -
-
com.tomerrosenfeld.fadingtextview
-

Class R.attr

-
-
-
    -
  • java.lang.Object
  • -
  • -
      -
    • com.tomerrosenfeld.fadingtextview.R.attr
    • -
    -
  • -
-
-
    -
  • -
    -
    Enclosing class:
    -
    R
    -
    -
    -
    -
    public static final class R.attr
    -extends java.lang.Object
    -
  • -
-
-
-
    -
  • - -
      -
    • - - -

      Field Summary

      - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
      Fields 
      Modifier and TypeField and Description
      static intactionBarDivider -
      Must be a reference to another resource, in the form "@[+][package:]type:name" -or to a theme attribute in the form "?[package:][type:]name".
      -
      static intactionBarItemBackground -
      Must be a reference to another resource, in the form "@[+][package:]type:name" -or to a theme attribute in the form "?[package:][type:]name".
      -
      static intactionBarPopupTheme -
      Must be a reference to another resource, in the form "@[+][package:]type:name" -or to a theme attribute in the form "?[package:][type:]name".
      -
      static intactionBarSize -
      May be a dimension value, which is a floating point number appended with a unit such as "14.5sp".
      -
      static intactionBarSplitStyle -
      Must be a reference to another resource, in the form "@[+][package:]type:name" -or to a theme attribute in the form "?[package:][type:]name".
      -
      static intactionBarStyle -
      Must be a reference to another resource, in the form "@[+][package:]type:name" -or to a theme attribute in the form "?[package:][type:]name".
      -
      static intactionBarTabBarStyle -
      Must be a reference to another resource, in the form "@[+][package:]type:name" -or to a theme attribute in the form "?[package:][type:]name".
      -
      static intactionBarTabStyle -
      Must be a reference to another resource, in the form "@[+][package:]type:name" -or to a theme attribute in the form "?[package:][type:]name".
      -
      static intactionBarTabTextStyle -
      Must be a reference to another resource, in the form "@[+][package:]type:name" -or to a theme attribute in the form "?[package:][type:]name".
      -
      static intactionBarTheme -
      Must be a reference to another resource, in the form "@[+][package:]type:name" -or to a theme attribute in the form "?[package:][type:]name".
      -
      static intactionBarWidgetTheme -
      Must be a reference to another resource, in the form "@[+][package:]type:name" -or to a theme attribute in the form "?[package:][type:]name".
      -
      static intactionButtonStyle -
      Must be a reference to another resource, in the form "@[+][package:]type:name" -or to a theme attribute in the form "?[package:][type:]name".
      -
      static intactionDropDownStyle -
      Must be a reference to another resource, in the form "@[+][package:]type:name" -or to a theme attribute in the form "?[package:][type:]name".
      -
      static intactionLayout -
      Must be a reference to another resource, in the form "@[+][package:]type:name" -or to a theme attribute in the form "?[package:][type:]name".
      -
      static intactionMenuTextAppearance -
      Must be a reference to another resource, in the form "@[+][package:]type:name" -or to a theme attribute in the form "?[package:][type:]name".
      -
      static intactionMenuTextColor -
      May be a reference to another resource, in the form "@[+][package:]type:name" -or to a theme attribute in the form "?[package:][type:]name".
      -
      static intactionModeBackground -
      Must be a reference to another resource, in the form "@[+][package:]type:name" -or to a theme attribute in the form "?[package:][type:]name".
      -
      static intactionModeCloseButtonStyle -
      Must be a reference to another resource, in the form "@[+][package:]type:name" -or to a theme attribute in the form "?[package:][type:]name".
      -
      static intactionModeCloseDrawable -
      Must be a reference to another resource, in the form "@[+][package:]type:name" -or to a theme attribute in the form "?[package:][type:]name".
      -
      static intactionModeCopyDrawable -
      Must be a reference to another resource, in the form "@[+][package:]type:name" -or to a theme attribute in the form "?[package:][type:]name".
      -
      static intactionModeCutDrawable -
      Must be a reference to another resource, in the form "@[+][package:]type:name" -or to a theme attribute in the form "?[package:][type:]name".
      -
      static intactionModeFindDrawable -
      Must be a reference to another resource, in the form "@[+][package:]type:name" -or to a theme attribute in the form "?[package:][type:]name".
      -
      static intactionModePasteDrawable -
      Must be a reference to another resource, in the form "@[+][package:]type:name" -or to a theme attribute in the form "?[package:][type:]name".
      -
      static intactionModePopupWindowStyle -
      Must be a reference to another resource, in the form "@[+][package:]type:name" -or to a theme attribute in the form "?[package:][type:]name".
      -
      static intactionModeSelectAllDrawable -
      Must be a reference to another resource, in the form "@[+][package:]type:name" -or to a theme attribute in the form "?[package:][type:]name".
      -
      static intactionModeShareDrawable -
      Must be a reference to another resource, in the form "@[+][package:]type:name" -or to a theme attribute in the form "?[package:][type:]name".
      -
      static intactionModeSplitBackground -
      Must be a reference to another resource, in the form "@[+][package:]type:name" -or to a theme attribute in the form "?[package:][type:]name".
      -
      static intactionModeStyle -
      Must be a reference to another resource, in the form "@[+][package:]type:name" -or to a theme attribute in the form "?[package:][type:]name".
      -
      static intactionModeWebSearchDrawable -
      Must be a reference to another resource, in the form "@[+][package:]type:name" -or to a theme attribute in the form "?[package:][type:]name".
      -
      static intactionOverflowButtonStyle -
      Must be a reference to another resource, in the form "@[+][package:]type:name" -or to a theme attribute in the form "?[package:][type:]name".
      -
      static intactionOverflowMenuStyle -
      Must be a reference to another resource, in the form "@[+][package:]type:name" -or to a theme attribute in the form "?[package:][type:]name".
      -
      static intactionProviderClass -
      Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character.
      -
      static intactionViewClass -
      Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character.
      -
      static intactivityChooserViewStyle -
      Must be a reference to another resource, in the form "@[+][package:]type:name" -or to a theme attribute in the form "?[package:][type:]name".
      -
      static intalertDialogButtonGroupStyle -
      Must be a reference to another resource, in the form "@[+][package:]type:name" -or to a theme attribute in the form "?[package:][type:]name".
      -
      static intalertDialogCenterButtons -
      Must be a boolean value, either "true" or "false".
      -
      static intalertDialogStyle -
      Must be a reference to another resource, in the form "@[+][package:]type:name" -or to a theme attribute in the form "?[package:][type:]name".
      -
      static intalertDialogTheme -
      Must be a reference to another resource, in the form "@[+][package:]type:name" -or to a theme attribute in the form "?[package:][type:]name".
      -
      static intallowStacking -
      Must be a boolean value, either "true" or "false".
      -
      static intalpha -
      Must be a floating point value, such as "1.2".
      -
      static intarrowHeadLength -
      Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp".
      -
      static intarrowShaftLength -
      Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp".
      -
      static intautoCompleteTextViewStyle -
      Must be a reference to another resource, in the form "@[+][package:]type:name" -or to a theme attribute in the form "?[package:][type:]name".
      -
      static intbackground -
      Must be a reference to another resource, in the form "@[+][package:]type:name" -or to a theme attribute in the form "?[package:][type:]name".
      -
      static intbackgroundSplit -
      May be a reference to another resource, in the form "@[+][package:]type:name" -or to a theme attribute in the form "?[package:][type:]name".
      -
      static intbackgroundStacked -
      May be a reference to another resource, in the form "@[+][package:]type:name" -or to a theme attribute in the form "?[package:][type:]name".
      -
      static intbackgroundTint -
      Must be a color value, in the form of "#rgb", "#argb", -"#rrggbb", or "#aarrggbb".
      -
      static intbackgroundTintMode -
      Must be one of the following constant values.
      -
      static intbarLength -
      Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp".
      -
      static intbehavior_autoHide -
      Must be a boolean value, either "true" or "false".
      -
      static intbehavior_hideable -
      Must be a boolean value, either "true" or "false".
      -
      static intbehavior_overlapTop -
      Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp".
      -
      static intbehavior_peekHeight -
      May be a dimension value, which is a floating point number appended with a unit such as "14.5sp".
      -
      static intbehavior_skipCollapsed -
      Must be a boolean value, either "true" or "false".
      -
      static intborderlessButtonStyle -
      Must be a reference to another resource, in the form "@[+][package:]type:name" -or to a theme attribute in the form "?[package:][type:]name".
      -
      static intborderWidth -
      Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp".
      -
      static intbottomSheetDialogTheme -
      Must be a reference to another resource, in the form "@[+][package:]type:name" -or to a theme attribute in the form "?[package:][type:]name".
      -
      static intbottomSheetStyle -
      Must be a reference to another resource, in the form "@[+][package:]type:name" -or to a theme attribute in the form "?[package:][type:]name".
      -
      static intbuttonBarButtonStyle -
      Must be a reference to another resource, in the form "@[+][package:]type:name" -or to a theme attribute in the form "?[package:][type:]name".
      -
      static intbuttonBarNegativeButtonStyle -
      Must be a reference to another resource, in the form "@[+][package:]type:name" -or to a theme attribute in the form "?[package:][type:]name".
      -
      static intbuttonBarNeutralButtonStyle -
      Must be a reference to another resource, in the form "@[+][package:]type:name" -or to a theme attribute in the form "?[package:][type:]name".
      -
      static intbuttonBarPositiveButtonStyle -
      Must be a reference to another resource, in the form "@[+][package:]type:name" -or to a theme attribute in the form "?[package:][type:]name".
      -
      static intbuttonBarStyle -
      Must be a reference to another resource, in the form "@[+][package:]type:name" -or to a theme attribute in the form "?[package:][type:]name".
      -
      static intbuttonGravity -
      Must be one or more (separated by '|') of the following constant values.
      -
      static intbuttonPanelSideLayout -
      Must be a reference to another resource, in the form "@[+][package:]type:name" -or to a theme attribute in the form "?[package:][type:]name".
      -
      static intbuttonStyle -
      Must be a reference to another resource, in the form "@[+][package:]type:name" -or to a theme attribute in the form "?[package:][type:]name".
      -
      static intbuttonStyleSmall -
      Must be a reference to another resource, in the form "@[+][package:]type:name" -or to a theme attribute in the form "?[package:][type:]name".
      -
      static intbuttonTint -
      Must be a color value, in the form of "#rgb", "#argb", -"#rrggbb", or "#aarrggbb".
      -
      static intbuttonTintMode -
      Must be one of the following constant values.
      -
      static intcheckboxStyle -
      Must be a reference to another resource, in the form "@[+][package:]type:name" -or to a theme attribute in the form "?[package:][type:]name".
      -
      static intcheckedTextViewStyle -
      Must be a reference to another resource, in the form "@[+][package:]type:name" -or to a theme attribute in the form "?[package:][type:]name".
      -
      static intcloseIcon -
      Must be a reference to another resource, in the form "@[+][package:]type:name" -or to a theme attribute in the form "?[package:][type:]name".
      -
      static intcloseItemLayout -
      Must be a reference to another resource, in the form "@[+][package:]type:name" -or to a theme attribute in the form "?[package:][type:]name".
      -
      static intcollapseContentDescription -
      Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character.
      -
      static intcollapsedTitleGravity -
      Must be one or more (separated by '|') of the following constant values.
      -
      static intcollapsedTitleTextAppearance -
      Must be a reference to another resource, in the form "@[+][package:]type:name" -or to a theme attribute in the form "?[package:][type:]name".
      -
      static intcollapseIcon -
      Must be a reference to another resource, in the form "@[+][package:]type:name" -or to a theme attribute in the form "?[package:][type:]name".
      -
      static intcolor -
      Must be a color value, in the form of "#rgb", "#argb", -"#rrggbb", or "#aarrggbb".
      -
      static intcolorAccent -
      Must be a color value, in the form of "#rgb", "#argb", -"#rrggbb", or "#aarrggbb".
      -
      static intcolorBackgroundFloating -
      Must be a color value, in the form of "#rgb", "#argb", -"#rrggbb", or "#aarrggbb".
      -
      static intcolorButtonNormal -
      Must be a color value, in the form of "#rgb", "#argb", -"#rrggbb", or "#aarrggbb".
      -
      static intcolorControlActivated -
      Must be a color value, in the form of "#rgb", "#argb", -"#rrggbb", or "#aarrggbb".
      -
      static intcolorControlHighlight -
      Must be a color value, in the form of "#rgb", "#argb", -"#rrggbb", or "#aarrggbb".
      -
      static intcolorControlNormal -
      Must be a color value, in the form of "#rgb", "#argb", -"#rrggbb", or "#aarrggbb".
      -
      static intcolorPrimary -
      Must be a color value, in the form of "#rgb", "#argb", -"#rrggbb", or "#aarrggbb".
      -
      static intcolorPrimaryDark -
      Must be a color value, in the form of "#rgb", "#argb", -"#rrggbb", or "#aarrggbb".
      -
      static intcolorSwitchThumbNormal -
      Must be a color value, in the form of "#rgb", "#argb", -"#rrggbb", or "#aarrggbb".
      -
      static intcommitIcon -
      Must be a reference to another resource, in the form "@[+][package:]type:name" -or to a theme attribute in the form "?[package:][type:]name".
      -
      static intcontentInsetEnd -
      Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp".
      -
      static intcontentInsetEndWithActions -
      Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp".
      -
      static intcontentInsetLeft -
      Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp".
      -
      static intcontentInsetRight -
      Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp".
      -
      static intcontentInsetStart -
      Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp".
      -
      static intcontentInsetStartWithNavigation -
      Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp".
      -
      static intcontentScrim -
      Must be a color value, in the form of "#rgb", "#argb", -"#rrggbb", or "#aarrggbb".
      -
      static intcontrolBackground -
      Must be a reference to another resource, in the form "@[+][package:]type:name" -or to a theme attribute in the form "?[package:][type:]name".
      -
      static intcounterEnabled -
      Must be a boolean value, either "true" or "false".
      -
      static intcounterMaxLength -
      Must be an integer value, such as "100".
      -
      static intcounterOverflowTextAppearance -
      Must be a reference to another resource, in the form "@[+][package:]type:name" -or to a theme attribute in the form "?[package:][type:]name".
      -
      static intcounterTextAppearance -
      Must be a reference to another resource, in the form "@[+][package:]type:name" -or to a theme attribute in the form "?[package:][type:]name".
      -
      static intcustomNavigationLayout -
      Must be a reference to another resource, in the form "@[+][package:]type:name" -or to a theme attribute in the form "?[package:][type:]name".
      -
      static intdefaultQueryHint -
      Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character.
      -
      static intdialogPreferredPadding -
      Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp".
      -
      static intdialogTheme -
      Must be a reference to another resource, in the form "@[+][package:]type:name" -or to a theme attribute in the form "?[package:][type:]name".
      -
      static intdiscreteSeekBarStyle -
      Must be a reference to another resource, in the form "@[+][package:]type:name" -or to a theme attribute in the form "?[package:][type:]name".
      -
      static intdisplayOptions -
      Must be one or more (separated by '|') of the following constant values.
      -
      static intdivider -
      Must be a reference to another resource, in the form "@[+][package:]type:name" -or to a theme attribute in the form "?[package:][type:]name".
      -
      static intdividerHorizontal -
      Must be a reference to another resource, in the form "@[+][package:]type:name" -or to a theme attribute in the form "?[package:][type:]name".
      -
      static intdividerPadding -
      Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp".
      -
      static intdividerVertical -
      Must be a reference to another resource, in the form "@[+][package:]type:name" -or to a theme attribute in the form "?[package:][type:]name".
      -
      static intdrawableSize -
      Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp".
      -
      static intdrawerArrowStyle -
      Must be a reference to another resource, in the form "@[+][package:]type:name" -or to a theme attribute in the form "?[package:][type:]name".
      -
      static intdropdownListPreferredItemHeight -
      Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp".
      -
      static intdropDownListViewStyle -
      Must be a reference to another resource, in the form "@[+][package:]type:name" -or to a theme attribute in the form "?[package:][type:]name".
      -
      static intdsb_allowTrackClickToDrag -
      Must be a boolean value, either "true" or "false".
      -
      static intdsb_indicatorColor -
      May be a reference to another resource, in the form "@[+][package:]type:name" -or to a theme attribute in the form "?[package:][type:]name".
      -
      static intdsb_indicatorElevation -
      Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp".
      -
      static intdsb_indicatorFormatter -
      May be a reference to another resource, in the form "@[+][package:]type:name" -or to a theme attribute in the form "?[package:][type:]name".
      -
      static intdsb_indicatorPopupEnabled -
      Must be a boolean value, either "true" or "false".
      -
      static intdsb_indicatorSeparation -
      May be an integer value, such as "100".
      -
      static intdsb_indicatorTextAppearance -
      Must be a reference to another resource, in the form "@[+][package:]type:name" -or to a theme attribute in the form "?[package:][type:]name".
      -
      static intdsb_max -
      May be an integer value, such as "100".
      -
      static intdsb_min -
      May be an integer value, such as "100".
      -
      static intdsb_mirrorForRtl -
      Must be a boolean value, either "true" or "false".
      -
      static intdsb_progressColor -
      May be a reference to another resource, in the form "@[+][package:]type:name" -or to a theme attribute in the form "?[package:][type:]name".
      -
      static intdsb_rippleColor -
      May be a reference to another resource, in the form "@[+][package:]type:name" -or to a theme attribute in the form "?[package:][type:]name".
      -
      static intdsb_scrubberHeight -
      May be an integer value, such as "100".
      -
      static intdsb_thumbSize -
      May be an integer value, such as "100".
      -
      static intdsb_trackColor -
      May be a reference to another resource, in the form "@[+][package:]type:name" -or to a theme attribute in the form "?[package:][type:]name".
      -
      static intdsb_trackHeight -
      May be an integer value, such as "100".
      -
      static intdsb_value -
      May be an integer value, such as "100".
      -
      static inteditTextBackground -
      Must be a reference to another resource, in the form "@[+][package:]type:name" -or to a theme attribute in the form "?[package:][type:]name".
      -
      static inteditTextColor -
      May be a reference to another resource, in the form "@[+][package:]type:name" -or to a theme attribute in the form "?[package:][type:]name".
      -
      static inteditTextStyle -
      Must be a reference to another resource, in the form "@[+][package:]type:name" -or to a theme attribute in the form "?[package:][type:]name".
      -
      static intelevation -
      Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp".
      -
      static interrorEnabled -
      Must be a boolean value, either "true" or "false".
      -
      static interrorTextAppearance -
      Must be a reference to another resource, in the form "@[+][package:]type:name" -or to a theme attribute in the form "?[package:][type:]name".
      -
      static intexpandActivityOverflowButtonDrawable -
      Must be a reference to another resource, in the form "@[+][package:]type:name" -or to a theme attribute in the form "?[package:][type:]name".
      -
      static intexpanded -
      Must be a boolean value, either "true" or "false".
      -
      static intexpandedTitleGravity -
      Must be one or more (separated by '|') of the following constant values.
      -
      static intexpandedTitleMargin -
      Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp".
      -
      static intexpandedTitleMarginBottom -
      Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp".
      -
      static intexpandedTitleMarginEnd -
      Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp".
      -
      static intexpandedTitleMarginStart -
      Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp".
      -
      static intexpandedTitleMarginTop -
      Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp".
      -
      static intexpandedTitleTextAppearance -
      Must be a reference to another resource, in the form "@[+][package:]type:name" -or to a theme attribute in the form "?[package:][type:]name".
      -
      static intfabSize -
      Must be one of the following constant values.
      -
      static intforegroundInsidePadding -
      Must be a boolean value, either "true" or "false".
      -
      static intgapBetweenBars -
      Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp".
      -
      static intgoIcon -
      Must be a reference to another resource, in the form "@[+][package:]type:name" -or to a theme attribute in the form "?[package:][type:]name".
      -
      static intheaderLayout -
      Must be a reference to another resource, in the form "@[+][package:]type:name" -or to a theme attribute in the form "?[package:][type:]name".
      -
      static intheight -
      Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp".
      -
      static inthideOnContentScroll -
      Must be a boolean value, either "true" or "false".
      -
      static inthintAnimationEnabled -
      Must be a boolean value, either "true" or "false".
      -
      static inthintEnabled -
      Must be a boolean value, either "true" or "false".
      -
      static inthintTextAppearance -
      Must be a reference to another resource, in the form "@[+][package:]type:name" -or to a theme attribute in the form "?[package:][type:]name".
      -
      static inthomeAsUpIndicator -
      Must be a reference to another resource, in the form "@[+][package:]type:name" -or to a theme attribute in the form "?[package:][type:]name".
      -
      static inthomeLayout -
      Must be a reference to another resource, in the form "@[+][package:]type:name" -or to a theme attribute in the form "?[package:][type:]name".
      -
      static inticon -
      Must be a reference to another resource, in the form "@[+][package:]type:name" -or to a theme attribute in the form "?[package:][type:]name".
      -
      static inticonifiedByDefault -
      Must be a boolean value, either "true" or "false".
      -
      static intimageButtonStyle -
      Must be a reference to another resource, in the form "@[+][package:]type:name" -or to a theme attribute in the form "?[package:][type:]name".
      -
      static intindeterminateProgressStyle -
      Must be a reference to another resource, in the form "@[+][package:]type:name" -or to a theme attribute in the form "?[package:][type:]name".
      -
      static intinitialActivityCount -
      Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character.
      -
      static intinsetForeground -
      May be a reference to another resource, in the form "@[+][package:]type:name" -or to a theme attribute in the form "?[package:][type:]name".
      -
      static intisLightTheme -
      Must be a boolean value, either "true" or "false".
      -
      static intitemBackground -
      Must be a reference to another resource, in the form "@[+][package:]type:name" -or to a theme attribute in the form "?[package:][type:]name".
      -
      static intitemIconTint -
      Must be a color value, in the form of "#rgb", "#argb", -"#rrggbb", or "#aarrggbb".
      -
      static intitemPadding -
      Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp".
      -
      static intitemTextAppearance -
      Must be a reference to another resource, in the form "@[+][package:]type:name" -or to a theme attribute in the form "?[package:][type:]name".
      -
      static intitemTextColor -
      Must be a color value, in the form of "#rgb", "#argb", -"#rrggbb", or "#aarrggbb".
      -
      static intkeylines -
      Must be a reference to another resource, in the form "@[+][package:]type:name" -or to a theme attribute in the form "?[package:][type:]name".
      -
      static intlayout -
      Must be a reference to another resource, in the form "@[+][package:]type:name" -or to a theme attribute in the form "?[package:][type:]name".
      -
      static intlayout_anchor -
      Must be a reference to another resource, in the form "@[+][package:]type:name" -or to a theme attribute in the form "?[package:][type:]name".
      -
      static intlayout_anchorGravity -
      Must be one or more (separated by '|') of the following constant values.
      -
      static intlayout_behavior -
      Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character.
      -
      static intlayout_collapseMode -
      Must be one of the following constant values.
      -
      static intlayout_collapseParallaxMultiplier -
      Must be a floating point value, such as "1.2".
      -
      static intlayout_dodgeInsetEdges -
      Must be one or more (separated by '|') of the following constant values.
      -
      static intlayout_insetEdge -
      Must be one of the following constant values.
      -
      static intlayout_keyline -
      Must be an integer value, such as "100".
      -
      static intlayout_scrollFlags -
      Must be one or more (separated by '|') of the following constant values.
      -
      static intlayout_scrollInterpolator -
      Must be a reference to another resource, in the form "@[+][package:]type:name" -or to a theme attribute in the form "?[package:][type:]name".
      -
      static intlayoutManager -
      Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character.
      -
      static intlistChoiceBackgroundIndicator -
      Must be a reference to another resource, in the form "@[+][package:]type:name" -or to a theme attribute in the form "?[package:][type:]name".
      -
      static intlistDividerAlertDialog -
      Must be a reference to another resource, in the form "@[+][package:]type:name" -or to a theme attribute in the form "?[package:][type:]name".
      -
      static intlistItemLayout -
      Must be a reference to another resource, in the form "@[+][package:]type:name" -or to a theme attribute in the form "?[package:][type:]name".
      -
      static intlistLayout -
      Must be a reference to another resource, in the form "@[+][package:]type:name" -or to a theme attribute in the form "?[package:][type:]name".
      -
      static intlistMenuViewStyle -
      Must be a reference to another resource, in the form "@[+][package:]type:name" -or to a theme attribute in the form "?[package:][type:]name".
      -
      static intlistPopupWindowStyle -
      Must be a reference to another resource, in the form "@[+][package:]type:name" -or to a theme attribute in the form "?[package:][type:]name".
      -
      static intlistPreferredItemHeight -
      Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp".
      -
      static intlistPreferredItemHeightLarge -
      Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp".
      -
      static intlistPreferredItemHeightSmall -
      Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp".
      -
      static intlistPreferredItemPaddingLeft -
      Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp".
      -
      static intlistPreferredItemPaddingRight -
      Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp".
      -
      static intlogo -
      Must be a reference to another resource, in the form "@[+][package:]type:name" -or to a theme attribute in the form "?[package:][type:]name".
      -
      static intlogoDescription -
      Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character.
      -
      static intmaxActionInlineWidth -
      Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp".
      -
      static intmaxButtonHeight -
      Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp".
      -
      static intmeasureWithLargestChild -
      Must be a boolean value, either "true" or "false".
      -
      static intmenu -
      Must be a reference to another resource, in the form "@[+][package:]type:name" -or to a theme attribute in the form "?[package:][type:]name".
      -
      static intmultiChoiceItemLayout -
      Must be a reference to another resource, in the form "@[+][package:]type:name" -or to a theme attribute in the form "?[package:][type:]name".
      -
      static intnavigationContentDescription -
      Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character.
      -
      static intnavigationIcon -
      Must be a reference to another resource, in the form "@[+][package:]type:name" -or to a theme attribute in the form "?[package:][type:]name".
      -
      static intnavigationMode -
      Must be one of the following constant values.
      -
      static intoverlapAnchor -
      Must be a boolean value, either "true" or "false".
      -
      static intpaddingBottomNoButtons -
      Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp".
      -
      static intpaddingEnd -
      Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp".
      -
      static intpaddingStart -
      Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp".
      -
      static intpaddingTopNoTitle -
      Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp".
      -
      static intpanelBackground -
      Must be a reference to another resource, in the form "@[+][package:]type:name" -or to a theme attribute in the form "?[package:][type:]name".
      -
      static intpanelMenuListTheme -
      Must be a reference to another resource, in the form "@[+][package:]type:name" -or to a theme attribute in the form "?[package:][type:]name".
      -
      static intpanelMenuListWidth -
      Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp".
      -
      static intpasswordToggleContentDescription -
      Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character.
      -
      static intpasswordToggleDrawable -
      Must be a reference to another resource, in the form "@[+][package:]type:name" -or to a theme attribute in the form "?[package:][type:]name".
      -
      static intpasswordToggleEnabled -
      Must be a boolean value, either "true" or "false".
      -
      static intpasswordToggleTint -
      Must be a color value, in the form of "#rgb", "#argb", -"#rrggbb", or "#aarrggbb".
      -
      static intpasswordToggleTintMode -
      Must be one of the following constant values.
      -
      static intpopupMenuStyle -
      Must be a reference to another resource, in the form "@[+][package:]type:name" -or to a theme attribute in the form "?[package:][type:]name".
      -
      static intpopupTheme -
      Must be a reference to another resource, in the form "@[+][package:]type:name" -or to a theme attribute in the form "?[package:][type:]name".
      -
      static intpopupWindowStyle -
      Must be a reference to another resource, in the form "@[+][package:]type:name" -or to a theme attribute in the form "?[package:][type:]name".
      -
      static intpreserveIconSpacing -
      Must be a boolean value, either "true" or "false".
      -
      static intpressedTranslationZ -
      Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp".
      -
      static intprogressBarPadding -
      Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp".
      -
      static intprogressBarStyle -
      Must be a reference to another resource, in the form "@[+][package:]type:name" -or to a theme attribute in the form "?[package:][type:]name".
      -
      static intqueryBackground -
      Must be a reference to another resource, in the form "@[+][package:]type:name" -or to a theme attribute in the form "?[package:][type:]name".
      -
      static intqueryHint -
      Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character.
      -
      static intradioButtonStyle -
      Must be a reference to another resource, in the form "@[+][package:]type:name" -or to a theme attribute in the form "?[package:][type:]name".
      -
      static intratingBarStyle -
      Must be a reference to another resource, in the form "@[+][package:]type:name" -or to a theme attribute in the form "?[package:][type:]name".
      -
      static intratingBarStyleIndicator -
      Must be a reference to another resource, in the form "@[+][package:]type:name" -or to a theme attribute in the form "?[package:][type:]name".
      -
      static intratingBarStyleSmall -
      Must be a reference to another resource, in the form "@[+][package:]type:name" -or to a theme attribute in the form "?[package:][type:]name".
      -
      static intreverseLayout -
      Must be a boolean value, either "true" or "false".
      -
      static intrippleColor -
      Must be a color value, in the form of "#rgb", "#argb", -"#rrggbb", or "#aarrggbb".
      -
      static intscrimAnimationDuration -
      Must be an integer value, such as "100".
      -
      static intscrimVisibleHeightTrigger -
      Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp".
      -
      static intsearchHintIcon -
      Must be a reference to another resource, in the form "@[+][package:]type:name" -or to a theme attribute in the form "?[package:][type:]name".
      -
      static intsearchIcon -
      Must be a reference to another resource, in the form "@[+][package:]type:name" -or to a theme attribute in the form "?[package:][type:]name".
      -
      static intsearchViewStyle -
      Must be a reference to another resource, in the form "@[+][package:]type:name" -or to a theme attribute in the form "?[package:][type:]name".
      -
      static intseekBarStyle -
      Must be a reference to another resource, in the form "@[+][package:]type:name" -or to a theme attribute in the form "?[package:][type:]name".
      -
      static intselectableItemBackground -
      Must be a reference to another resource, in the form "@[+][package:]type:name" -or to a theme attribute in the form "?[package:][type:]name".
      -
      static intselectableItemBackgroundBorderless -
      Must be a reference to another resource, in the form "@[+][package:]type:name" -or to a theme attribute in the form "?[package:][type:]name".
      -
      static intshowAsAction -
      Must be one or more (separated by '|') of the following constant values.
      -
      static intshowDividers -
      Must be one or more (separated by '|') of the following constant values.
      -
      static intshowText -
      Must be a boolean value, either "true" or "false".
      -
      static intshowTitle -
      Must be a boolean value, either "true" or "false".
      -
      static intsingleChoiceItemLayout -
      Must be a reference to another resource, in the form "@[+][package:]type:name" -or to a theme attribute in the form "?[package:][type:]name".
      -
      static intspanCount -
      Must be an integer value, such as "100".
      -
      static intspinBars -
      Must be a boolean value, either "true" or "false".
      -
      static intspinnerDropDownItemStyle -
      Must be a reference to another resource, in the form "@[+][package:]type:name" -or to a theme attribute in the form "?[package:][type:]name".
      -
      static intspinnerStyle -
      Must be a reference to another resource, in the form "@[+][package:]type:name" -or to a theme attribute in the form "?[package:][type:]name".
      -
      static intsplitTrack -
      Must be a boolean value, either "true" or "false".
      -
      static intsrcCompat -
      Must be a reference to another resource, in the form "@[+][package:]type:name" -or to a theme attribute in the form "?[package:][type:]name".
      -
      static intstackFromEnd -
      Must be a boolean value, either "true" or "false".
      -
      static intstate_above_anchor -
      Must be a boolean value, either "true" or "false".
      -
      static intstate_collapsed -
      Must be a boolean value, either "true" or "false".
      -
      static intstate_collapsible -
      Must be a boolean value, either "true" or "false".
      -
      static intstatusBarBackground -
      Must be a reference to another resource, in the form "@[+][package:]type:name" -or to a theme attribute in the form "?[package:][type:]name".
      -
      static intstatusBarScrim -
      Must be a color value, in the form of "#rgb", "#argb", -"#rrggbb", or "#aarrggbb".
      -
      static intsubMenuArrow -
      Must be a reference to another resource, in the form "@[+][package:]type:name" -or to a theme attribute in the form "?[package:][type:]name".
      -
      static intsubmitBackground -
      Must be a reference to another resource, in the form "@[+][package:]type:name" -or to a theme attribute in the form "?[package:][type:]name".
      -
      static intsubtitle -
      Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character.
      -
      static intsubtitleTextAppearance -
      Must be a reference to another resource, in the form "@[+][package:]type:name" -or to a theme attribute in the form "?[package:][type:]name".
      -
      static intsubtitleTextColor -
      Must be a color value, in the form of "#rgb", "#argb", -"#rrggbb", or "#aarrggbb".
      -
      static intsubtitleTextStyle -
      Must be a reference to another resource, in the form "@[+][package:]type:name" -or to a theme attribute in the form "?[package:][type:]name".
      -
      static intsuggestionRowLayout -
      Must be a reference to another resource, in the form "@[+][package:]type:name" -or to a theme attribute in the form "?[package:][type:]name".
      -
      static intswitchMinWidth -
      Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp".
      -
      static intswitchPadding -
      Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp".
      -
      static intswitchStyle -
      Must be a reference to another resource, in the form "@[+][package:]type:name" -or to a theme attribute in the form "?[package:][type:]name".
      -
      static intswitchTextAppearance -
      Must be a reference to another resource, in the form "@[+][package:]type:name" -or to a theme attribute in the form "?[package:][type:]name".
      -
      static inttabBackground -
      Must be a reference to another resource, in the form "@[+][package:]type:name" -or to a theme attribute in the form "?[package:][type:]name".
      -
      static inttabContentStart -
      Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp".
      -
      static inttabGravity -
      Must be one of the following constant values.
      -
      static inttabIndicatorColor -
      Must be a color value, in the form of "#rgb", "#argb", -"#rrggbb", or "#aarrggbb".
      -
      static inttabIndicatorHeight -
      Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp".
      -
      static inttabMaxWidth -
      Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp".
      -
      static inttabMinWidth -
      Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp".
      -
      static inttabMode -
      Must be one of the following constant values.
      -
      static inttabPadding -
      Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp".
      -
      static inttabPaddingBottom -
      Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp".
      -
      static inttabPaddingEnd -
      Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp".
      -
      static inttabPaddingStart -
      Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp".
      -
      static inttabPaddingTop -
      Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp".
      -
      static inttabSelectedTextColor -
      Must be a color value, in the form of "#rgb", "#argb", -"#rrggbb", or "#aarrggbb".
      -
      static inttabTextAppearance -
      Must be a reference to another resource, in the form "@[+][package:]type:name" -or to a theme attribute in the form "?[package:][type:]name".
      -
      static inttabTextColor -
      Must be a color value, in the form of "#rgb", "#argb", -"#rrggbb", or "#aarrggbb".
      -
      static inttextAllCaps -
      May be a reference to another resource, in the form "@[+][package:]type:name" -or to a theme attribute in the form "?[package:][type:]name".
      -
      static inttextAppearanceLargePopupMenu -
      Must be a reference to another resource, in the form "@[+][package:]type:name" -or to a theme attribute in the form "?[package:][type:]name".
      -
      static inttextAppearanceListItem -
      Must be a reference to another resource, in the form "@[+][package:]type:name" -or to a theme attribute in the form "?[package:][type:]name".
      -
      static inttextAppearanceListItemSecondary -
      Must be a reference to another resource, in the form "@[+][package:]type:name" -or to a theme attribute in the form "?[package:][type:]name".
      -
      static inttextAppearanceListItemSmall -
      Must be a reference to another resource, in the form "@[+][package:]type:name" -or to a theme attribute in the form "?[package:][type:]name".
      -
      static inttextAppearancePopupMenuHeader -
      Must be a reference to another resource, in the form "@[+][package:]type:name" -or to a theme attribute in the form "?[package:][type:]name".
      -
      static inttextAppearanceSearchResultSubtitle -
      Must be a reference to another resource, in the form "@[+][package:]type:name" -or to a theme attribute in the form "?[package:][type:]name".
      -
      static inttextAppearanceSearchResultTitle -
      Must be a reference to another resource, in the form "@[+][package:]type:name" -or to a theme attribute in the form "?[package:][type:]name".
      -
      static inttextAppearanceSmallPopupMenu -
      Must be a reference to another resource, in the form "@[+][package:]type:name" -or to a theme attribute in the form "?[package:][type:]name".
      -
      static inttextColorAlertDialogListItem -
      May be a reference to another resource, in the form "@[+][package:]type:name" -or to a theme attribute in the form "?[package:][type:]name".
      -
      static inttextColorError -
      Must be a color value, in the form of "#rgb", "#argb", -"#rrggbb", or "#aarrggbb".
      -
      static inttextColorSearchUrl -
      May be a reference to another resource, in the form "@[+][package:]type:name" -or to a theme attribute in the form "?[package:][type:]name".
      -
      static inttexts -
      Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character.
      -
      static inttheme -
      Must be a reference to another resource, in the form "@[+][package:]type:name" -or to a theme attribute in the form "?[package:][type:]name".
      -
      static intthickness -
      Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp".
      -
      static intthumbTextPadding -
      Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp".
      -
      static intthumbTint -
      Must be a color value, in the form of "#rgb", "#argb", -"#rrggbb", or "#aarrggbb".
      -
      static intthumbTintMode -
      Must be one of the following constant values.
      -
      static inttickMark -
      Must be a reference to another resource, in the form "@[+][package:]type:name" -or to a theme attribute in the form "?[package:][type:]name".
      -
      static inttickMarkTint -
      Must be a color value, in the form of "#rgb", "#argb", -"#rrggbb", or "#aarrggbb".
      -
      static inttickMarkTintMode -
      Must be one of the following constant values.
      -
      static inttimeout -
      Must be an integer value, such as "100".
      -
      static inttint -
      Must be a color value, in the form of "#rgb", "#argb", -"#rrggbb", or "#aarrggbb".
      -
      static inttintMode -
      Must be one of the following constant values.
      -
      static inttitle -
      Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character.
      -
      static inttitleEnabled -
      Must be a boolean value, either "true" or "false".
      -
      static inttitleMargin -
      Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp".
      -
      static inttitleMarginBottom -
      Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp".
      -
      static inttitleMarginEnd -
      Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp".
      -
      static inttitleMargins -
      Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp".
      -
      static inttitleMarginStart -
      Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp".
      -
      static inttitleMarginTop -
      Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp".
      -
      static inttitleTextAppearance -
      Must be a reference to another resource, in the form "@[+][package:]type:name" -or to a theme attribute in the form "?[package:][type:]name".
      -
      static inttitleTextColor -
      Must be a color value, in the form of "#rgb", "#argb", -"#rrggbb", or "#aarrggbb".
      -
      static inttitleTextStyle -
      Must be a reference to another resource, in the form "@[+][package:]type:name" -or to a theme attribute in the form "?[package:][type:]name".
      -
      static inttoolbarId -
      Must be a reference to another resource, in the form "@[+][package:]type:name" -or to a theme attribute in the form "?[package:][type:]name".
      -
      static inttoolbarNavigationButtonStyle -
      Must be a reference to another resource, in the form "@[+][package:]type:name" -or to a theme attribute in the form "?[package:][type:]name".
      -
      static inttoolbarStyle -
      Must be a reference to another resource, in the form "@[+][package:]type:name" -or to a theme attribute in the form "?[package:][type:]name".
      -
      static inttrack -
      Must be a reference to another resource, in the form "@[+][package:]type:name" -or to a theme attribute in the form "?[package:][type:]name".
      -
      static inttrackTint -
      Must be a color value, in the form of "#rgb", "#argb", -"#rrggbb", or "#aarrggbb".
      -
      static inttrackTintMode -
      Must be one of the following constant values.
      -
      static intuseCompatPadding -
      Must be a boolean value, either "true" or "false".
      -
      static intvoiceIcon -
      Must be a reference to another resource, in the form "@[+][package:]type:name" -or to a theme attribute in the form "?[package:][type:]name".
      -
      static intwindowActionBar -
      Must be a boolean value, either "true" or "false".
      -
      static intwindowActionBarOverlay -
      Must be a boolean value, either "true" or "false".
      -
      static intwindowActionModeOverlay -
      Must be a boolean value, either "true" or "false".
      -
      static intwindowFixedHeightMajor -
      May be a dimension value, which is a floating point number appended with a unit such as "14.5sp".
      -
      static intwindowFixedHeightMinor -
      May be a dimension value, which is a floating point number appended with a unit such as "14.5sp".
      -
      static intwindowFixedWidthMajor -
      May be a dimension value, which is a floating point number appended with a unit such as "14.5sp".
      -
      static intwindowFixedWidthMinor -
      May be a dimension value, which is a floating point number appended with a unit such as "14.5sp".
      -
      static intwindowMinWidthMajor -
      May be a dimension value, which is a floating point number appended with a unit such as "14.5sp".
      -
      static intwindowMinWidthMinor -
      May be a dimension value, which is a floating point number appended with a unit such as "14.5sp".
      -
      static intwindowNoTitle -
      Must be a boolean value, either "true" or "false".
      -
      -
    • -
    - -
      -
    • - - -

      Constructor Summary

      - - - - - - - - -
      Constructors 
      Constructor and Description
      attr() 
      -
    • -
    - -
      -
    • - - -

      Method Summary

      -
        -
      • - - -

        Methods inherited from class java.lang.Object

        -clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
      • -
      -
    • -
    -
  • -
-
-
-
    -
  • - -
      -
    • - - -

      Field Detail

      - - - -
        -
      • -

        actionBarDivider

        -
        public static final int actionBarDivider
        -

        Must be a reference to another resource, in the form "@[+][package:]type:name" -or to a theme attribute in the form "?[package:][type:]name".

        -
        -
        See Also:
        -
        Constant Field Values
        -
        -
      • -
      - - - -
        -
      • -

        actionBarItemBackground

        -
        public static final int actionBarItemBackground
        -

        Must be a reference to another resource, in the form "@[+][package:]type:name" -or to a theme attribute in the form "?[package:][type:]name".

        -
        -
        See Also:
        -
        Constant Field Values
        -
        -
      • -
      - - - -
        -
      • -

        actionBarPopupTheme

        -
        public static final int actionBarPopupTheme
        -

        Must be a reference to another resource, in the form "@[+][package:]type:name" -or to a theme attribute in the form "?[package:][type:]name".

        -
        -
        See Also:
        -
        Constant Field Values
        -
        -
      • -
      - - - -
        -
      • -

        actionBarSize

        -
        public static final int actionBarSize
        -

        May be a dimension value, which is a floating point number appended with a unit such as "14.5sp". -Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), -in (inches), mm (millimeters). -

        This may also be a reference to a resource (in the form -"@[package:]type:name") or -theme attribute (in the form -"?[package:][type:]name") -containing a value of this type. -

        May be one of the following constant values.

        - ---- - -
        ConstantValueDescription
        wrap_content0
        -
        -
        See Also:
        -
        Constant Field Values
        -
        -
      • -
      - - - -
        -
      • -

        actionBarSplitStyle

        -
        public static final int actionBarSplitStyle
        -

        Must be a reference to another resource, in the form "@[+][package:]type:name" -or to a theme attribute in the form "?[package:][type:]name".

        -
        -
        See Also:
        -
        Constant Field Values
        -
        -
      • -
      - - - -
        -
      • -

        actionBarStyle

        -
        public static final int actionBarStyle
        -

        Must be a reference to another resource, in the form "@[+][package:]type:name" -or to a theme attribute in the form "?[package:][type:]name".

        -
        -
        See Also:
        -
        Constant Field Values
        -
        -
      • -
      - - - -
        -
      • -

        actionBarTabBarStyle

        -
        public static final int actionBarTabBarStyle
        -

        Must be a reference to another resource, in the form "@[+][package:]type:name" -or to a theme attribute in the form "?[package:][type:]name".

        -
        -
        See Also:
        -
        Constant Field Values
        -
        -
      • -
      - - - -
        -
      • -

        actionBarTabStyle

        -
        public static final int actionBarTabStyle
        -

        Must be a reference to another resource, in the form "@[+][package:]type:name" -or to a theme attribute in the form "?[package:][type:]name".

        -
        -
        See Also:
        -
        Constant Field Values
        -
        -
      • -
      - - - -
        -
      • -

        actionBarTabTextStyle

        -
        public static final int actionBarTabTextStyle
        -

        Must be a reference to another resource, in the form "@[+][package:]type:name" -or to a theme attribute in the form "?[package:][type:]name".

        -
        -
        See Also:
        -
        Constant Field Values
        -
        -
      • -
      - - - -
        -
      • -

        actionBarTheme

        -
        public static final int actionBarTheme
        -

        Must be a reference to another resource, in the form "@[+][package:]type:name" -or to a theme attribute in the form "?[package:][type:]name".

        -
        -
        See Also:
        -
        Constant Field Values
        -
        -
      • -
      - - - -
        -
      • -

        actionBarWidgetTheme

        -
        public static final int actionBarWidgetTheme
        -

        Must be a reference to another resource, in the form "@[+][package:]type:name" -or to a theme attribute in the form "?[package:][type:]name".

        -
        -
        See Also:
        -
        Constant Field Values
        -
        -
      • -
      - - - -
        -
      • -

        actionButtonStyle

        -
        public static final int actionButtonStyle
        -

        Must be a reference to another resource, in the form "@[+][package:]type:name" -or to a theme attribute in the form "?[package:][type:]name".

        -
        -
        See Also:
        -
        Constant Field Values
        -
        -
      • -
      - - - -
        -
      • -

        actionDropDownStyle

        -
        public static final int actionDropDownStyle
        -

        Must be a reference to another resource, in the form "@[+][package:]type:name" -or to a theme attribute in the form "?[package:][type:]name".

        -
        -
        See Also:
        -
        Constant Field Values
        -
        -
      • -
      - - - -
        -
      • -

        actionLayout

        -
        public static final int actionLayout
        -

        Must be a reference to another resource, in the form "@[+][package:]type:name" -or to a theme attribute in the form "?[package:][type:]name".

        -
        -
        See Also:
        -
        Constant Field Values
        -
        -
      • -
      - - - -
        -
      • -

        actionMenuTextAppearance

        -
        public static final int actionMenuTextAppearance
        -

        Must be a reference to another resource, in the form "@[+][package:]type:name" -or to a theme attribute in the form "?[package:][type:]name".

        -
        -
        See Also:
        -
        Constant Field Values
        -
        -
      • -
      - - - -
        -
      • -

        actionMenuTextColor

        -
        public static final int actionMenuTextColor
        -

        May be a reference to another resource, in the form "@[+][package:]type:name" -or to a theme attribute in the form "?[package:][type:]name". -

        May be a color value, in the form of "#rgb", "#argb", -"#rrggbb", or "#aarrggbb".

        -
        -
        See Also:
        -
        Constant Field Values
        -
        -
      • -
      - - - -
        -
      • -

        actionModeBackground

        -
        public static final int actionModeBackground
        -

        Must be a reference to another resource, in the form "@[+][package:]type:name" -or to a theme attribute in the form "?[package:][type:]name".

        -
        -
        See Also:
        -
        Constant Field Values
        -
        -
      • -
      - - - -
        -
      • -

        actionModeCloseButtonStyle

        -
        public static final int actionModeCloseButtonStyle
        -

        Must be a reference to another resource, in the form "@[+][package:]type:name" -or to a theme attribute in the form "?[package:][type:]name".

        -
        -
        See Also:
        -
        Constant Field Values
        -
        -
      • -
      - - - -
        -
      • -

        actionModeCloseDrawable

        -
        public static final int actionModeCloseDrawable
        -

        Must be a reference to another resource, in the form "@[+][package:]type:name" -or to a theme attribute in the form "?[package:][type:]name".

        -
        -
        See Also:
        -
        Constant Field Values
        -
        -
      • -
      - - - -
        -
      • -

        actionModeCopyDrawable

        -
        public static final int actionModeCopyDrawable
        -

        Must be a reference to another resource, in the form "@[+][package:]type:name" -or to a theme attribute in the form "?[package:][type:]name".

        -
        -
        See Also:
        -
        Constant Field Values
        -
        -
      • -
      - - - -
        -
      • -

        actionModeCutDrawable

        -
        public static final int actionModeCutDrawable
        -

        Must be a reference to another resource, in the form "@[+][package:]type:name" -or to a theme attribute in the form "?[package:][type:]name".

        -
        -
        See Also:
        -
        Constant Field Values
        -
        -
      • -
      - - - -
        -
      • -

        actionModeFindDrawable

        -
        public static final int actionModeFindDrawable
        -

        Must be a reference to another resource, in the form "@[+][package:]type:name" -or to a theme attribute in the form "?[package:][type:]name".

        -
        -
        See Also:
        -
        Constant Field Values
        -
        -
      • -
      - - - -
        -
      • -

        actionModePasteDrawable

        -
        public static final int actionModePasteDrawable
        -

        Must be a reference to another resource, in the form "@[+][package:]type:name" -or to a theme attribute in the form "?[package:][type:]name".

        -
        -
        See Also:
        -
        Constant Field Values
        -
        -
      • -
      - - - -
        -
      • -

        actionModePopupWindowStyle

        -
        public static final int actionModePopupWindowStyle
        -

        Must be a reference to another resource, in the form "@[+][package:]type:name" -or to a theme attribute in the form "?[package:][type:]name".

        -
        -
        See Also:
        -
        Constant Field Values
        -
        -
      • -
      - - - -
        -
      • -

        actionModeSelectAllDrawable

        -
        public static final int actionModeSelectAllDrawable
        -

        Must be a reference to another resource, in the form "@[+][package:]type:name" -or to a theme attribute in the form "?[package:][type:]name".

        -
        -
        See Also:
        -
        Constant Field Values
        -
        -
      • -
      - - - -
        -
      • -

        actionModeShareDrawable

        -
        public static final int actionModeShareDrawable
        -

        Must be a reference to another resource, in the form "@[+][package:]type:name" -or to a theme attribute in the form "?[package:][type:]name".

        -
        -
        See Also:
        -
        Constant Field Values
        -
        -
      • -
      - - - -
        -
      • -

        actionModeSplitBackground

        -
        public static final int actionModeSplitBackground
        -

        Must be a reference to another resource, in the form "@[+][package:]type:name" -or to a theme attribute in the form "?[package:][type:]name".

        -
        -
        See Also:
        -
        Constant Field Values
        -
        -
      • -
      - - - -
        -
      • -

        actionModeStyle

        -
        public static final int actionModeStyle
        -

        Must be a reference to another resource, in the form "@[+][package:]type:name" -or to a theme attribute in the form "?[package:][type:]name".

        -
        -
        See Also:
        -
        Constant Field Values
        -
        -
      • -
      - - - -
        -
      • -

        actionModeWebSearchDrawable

        -
        public static final int actionModeWebSearchDrawable
        -

        Must be a reference to another resource, in the form "@[+][package:]type:name" -or to a theme attribute in the form "?[package:][type:]name".

        -
        -
        See Also:
        -
        Constant Field Values
        -
        -
      • -
      - - - -
        -
      • -

        actionOverflowButtonStyle

        -
        public static final int actionOverflowButtonStyle
        -

        Must be a reference to another resource, in the form "@[+][package:]type:name" -or to a theme attribute in the form "?[package:][type:]name".

        -
        -
        See Also:
        -
        Constant Field Values
        -
        -
      • -
      - - - -
        -
      • -

        actionOverflowMenuStyle

        -
        public static final int actionOverflowMenuStyle
        -

        Must be a reference to another resource, in the form "@[+][package:]type:name" -or to a theme attribute in the form "?[package:][type:]name".

        -
        -
        See Also:
        -
        Constant Field Values
        -
        -
      • -
      - - - -
        -
      • -

        actionProviderClass

        -
        public static final int actionProviderClass
        -

        Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. -

        This may also be a reference to a resource (in the form -"@[package:]type:name") or -theme attribute (in the form -"?[package:][type:]name") -containing a value of this type.

        -
        -
        See Also:
        -
        Constant Field Values
        -
        -
      • -
      - - - -
        -
      • -

        actionViewClass

        -
        public static final int actionViewClass
        -

        Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. -

        This may also be a reference to a resource (in the form -"@[package:]type:name") or -theme attribute (in the form -"?[package:][type:]name") -containing a value of this type.

        -
        -
        See Also:
        -
        Constant Field Values
        -
        -
      • -
      - - - -
        -
      • -

        activityChooserViewStyle

        -
        public static final int activityChooserViewStyle
        -

        Must be a reference to another resource, in the form "@[+][package:]type:name" -or to a theme attribute in the form "?[package:][type:]name".

        -
        -
        See Also:
        -
        Constant Field Values
        -
        -
      • -
      - - - -
        -
      • -

        alertDialogButtonGroupStyle

        -
        public static final int alertDialogButtonGroupStyle
        -

        Must be a reference to another resource, in the form "@[+][package:]type:name" -or to a theme attribute in the form "?[package:][type:]name".

        -
        -
        See Also:
        -
        Constant Field Values
        -
        -
      • -
      - - - -
        -
      • -

        alertDialogCenterButtons

        -
        public static final int alertDialogCenterButtons
        -

        Must be a boolean value, either "true" or "false". -

        This may also be a reference to a resource (in the form -"@[package:]type:name") or -theme attribute (in the form -"?[package:][type:]name") -containing a value of this type.

        -
        -
        See Also:
        -
        Constant Field Values
        -
        -
      • -
      - - - -
        -
      • -

        alertDialogStyle

        -
        public static final int alertDialogStyle
        -

        Must be a reference to another resource, in the form "@[+][package:]type:name" -or to a theme attribute in the form "?[package:][type:]name".

        -
        -
        See Also:
        -
        Constant Field Values
        -
        -
      • -
      - - - -
        -
      • -

        alertDialogTheme

        -
        public static final int alertDialogTheme
        -

        Must be a reference to another resource, in the form "@[+][package:]type:name" -or to a theme attribute in the form "?[package:][type:]name".

        -
        -
        See Also:
        -
        Constant Field Values
        -
        -
      • -
      - - - -
        -
      • -

        allowStacking

        -
        public static final int allowStacking
        -

        Must be a boolean value, either "true" or "false". -

        This may also be a reference to a resource (in the form -"@[package:]type:name") or -theme attribute (in the form -"?[package:][type:]name") -containing a value of this type.

        -
        -
        See Also:
        -
        Constant Field Values
        -
        -
      • -
      - - - -
        -
      • -

        alpha

        -
        public static final int alpha
        -

        Must be a floating point value, such as "1.2". -

        This may also be a reference to a resource (in the form -"@[package:]type:name") or -theme attribute (in the form -"?[package:][type:]name") -containing a value of this type.

        -
        -
        See Also:
        -
        Constant Field Values
        -
        -
      • -
      - - - -
        -
      • -

        arrowHeadLength

        -
        public static final int arrowHeadLength
        -

        Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". -Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), -in (inches), mm (millimeters). -

        This may also be a reference to a resource (in the form -"@[package:]type:name") or -theme attribute (in the form -"?[package:][type:]name") -containing a value of this type.

        -
        -
        See Also:
        -
        Constant Field Values
        -
        -
      • -
      - - - -
        -
      • -

        arrowShaftLength

        -
        public static final int arrowShaftLength
        -

        Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". -Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), -in (inches), mm (millimeters). -

        This may also be a reference to a resource (in the form -"@[package:]type:name") or -theme attribute (in the form -"?[package:][type:]name") -containing a value of this type.

        -
        -
        See Also:
        -
        Constant Field Values
        -
        -
      • -
      - - - -
        -
      • -

        autoCompleteTextViewStyle

        -
        public static final int autoCompleteTextViewStyle
        -

        Must be a reference to another resource, in the form "@[+][package:]type:name" -or to a theme attribute in the form "?[package:][type:]name".

        -
        -
        See Also:
        -
        Constant Field Values
        -
        -
      • -
      - - - -
        -
      • -

        background

        -
        public static final int background
        -

        Must be a reference to another resource, in the form "@[+][package:]type:name" -or to a theme attribute in the form "?[package:][type:]name".

        -
        -
        See Also:
        -
        Constant Field Values
        -
        -
      • -
      - - - -
        -
      • -

        backgroundSplit

        -
        public static final int backgroundSplit
        -

        May be a reference to another resource, in the form "@[+][package:]type:name" -or to a theme attribute in the form "?[package:][type:]name". -

        May be a color value, in the form of "#rgb", "#argb", -"#rrggbb", or "#aarrggbb".

        -
        -
        See Also:
        -
        Constant Field Values
        -
        -
      • -
      - - - -
        -
      • -

        backgroundStacked

        -
        public static final int backgroundStacked
        -

        May be a reference to another resource, in the form "@[+][package:]type:name" -or to a theme attribute in the form "?[package:][type:]name". -

        May be a color value, in the form of "#rgb", "#argb", -"#rrggbb", or "#aarrggbb".

        -
        -
        See Also:
        -
        Constant Field Values
        -
        -
      • -
      - - - -
        -
      • -

        backgroundTint

        -
        public static final int backgroundTint
        -

        Must be a color value, in the form of "#rgb", "#argb", -"#rrggbb", or "#aarrggbb". -

        This may also be a reference to a resource (in the form -"@[package:]type:name") or -theme attribute (in the form -"?[package:][type:]name") -containing a value of this type.

        -
        -
        See Also:
        -
        Constant Field Values
        -
        -
      • -
      - - - -
        -
      • -

        backgroundTintMode

        -
        public static final int backgroundTintMode
        -

        Must be one of the following constant values.

        - ---- - - - - - -
        ConstantValueDescription
        src_over3
        src_in5
        src_atop9
        multiply14
        screen15
        -
        -
        See Also:
        -
        Constant Field Values
        -
        -
      • -
      - - - -
        -
      • -

        barLength

        -
        public static final int barLength
        -

        Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". -Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), -in (inches), mm (millimeters). -

        This may also be a reference to a resource (in the form -"@[package:]type:name") or -theme attribute (in the form -"?[package:][type:]name") -containing a value of this type.

        -
        -
        See Also:
        -
        Constant Field Values
        -
        -
      • -
      - - - -
        -
      • -

        behavior_autoHide

        -
        public static final int behavior_autoHide
        -

        Must be a boolean value, either "true" or "false". -

        This may also be a reference to a resource (in the form -"@[package:]type:name") or -theme attribute (in the form -"?[package:][type:]name") -containing a value of this type.

        -
        -
        See Also:
        -
        Constant Field Values
        -
        -
      • -
      - - - -
        -
      • -

        behavior_hideable

        -
        public static final int behavior_hideable
        -

        Must be a boolean value, either "true" or "false". -

        This may also be a reference to a resource (in the form -"@[package:]type:name") or -theme attribute (in the form -"?[package:][type:]name") -containing a value of this type.

        -
        -
        See Also:
        -
        Constant Field Values
        -
        -
      • -
      - - - -
        -
      • -

        behavior_overlapTop

        -
        public static final int behavior_overlapTop
        -

        Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". -Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), -in (inches), mm (millimeters). -

        This may also be a reference to a resource (in the form -"@[package:]type:name") or -theme attribute (in the form -"?[package:][type:]name") -containing a value of this type.

        -
        -
        See Also:
        -
        Constant Field Values
        -
        -
      • -
      - - - -
        -
      • -

        behavior_peekHeight

        -
        public static final int behavior_peekHeight
        -

        May be a dimension value, which is a floating point number appended with a unit such as "14.5sp". -Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), -in (inches), mm (millimeters). -

        This may also be a reference to a resource (in the form -"@[package:]type:name") or -theme attribute (in the form -"?[package:][type:]name") -containing a value of this type. -

        May be one of the following constant values.

        - ---- - -
        ConstantValueDescription
        auto-1
        -
        -
        See Also:
        -
        Constant Field Values
        -
        -
      • -
      - - - -
        -
      • -

        behavior_skipCollapsed

        -
        public static final int behavior_skipCollapsed
        -

        Must be a boolean value, either "true" or "false". -

        This may also be a reference to a resource (in the form -"@[package:]type:name") or -theme attribute (in the form -"?[package:][type:]name") -containing a value of this type.

        -
        -
        See Also:
        -
        Constant Field Values
        -
        -
      • -
      - - - -
        -
      • -

        borderWidth

        -
        public static final int borderWidth
        -

        Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". -Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), -in (inches), mm (millimeters). -

        This may also be a reference to a resource (in the form -"@[package:]type:name") or -theme attribute (in the form -"?[package:][type:]name") -containing a value of this type.

        -
        -
        See Also:
        -
        Constant Field Values
        -
        -
      • -
      - - - -
        -
      • -

        borderlessButtonStyle

        -
        public static final int borderlessButtonStyle
        -

        Must be a reference to another resource, in the form "@[+][package:]type:name" -or to a theme attribute in the form "?[package:][type:]name".

        -
        -
        See Also:
        -
        Constant Field Values
        -
        -
      • -
      - - - -
        -
      • -

        bottomSheetDialogTheme

        -
        public static final int bottomSheetDialogTheme
        -

        Must be a reference to another resource, in the form "@[+][package:]type:name" -or to a theme attribute in the form "?[package:][type:]name".

        -
        -
        See Also:
        -
        Constant Field Values
        -
        -
      • -
      - - - -
        -
      • -

        bottomSheetStyle

        -
        public static final int bottomSheetStyle
        -

        Must be a reference to another resource, in the form "@[+][package:]type:name" -or to a theme attribute in the form "?[package:][type:]name".

        -
        -
        See Also:
        -
        Constant Field Values
        -
        -
      • -
      - - - -
        -
      • -

        buttonBarButtonStyle

        -
        public static final int buttonBarButtonStyle
        -

        Must be a reference to another resource, in the form "@[+][package:]type:name" -or to a theme attribute in the form "?[package:][type:]name".

        -
        -
        See Also:
        -
        Constant Field Values
        -
        -
      • -
      - - - -
        -
      • -

        buttonBarNegativeButtonStyle

        -
        public static final int buttonBarNegativeButtonStyle
        -

        Must be a reference to another resource, in the form "@[+][package:]type:name" -or to a theme attribute in the form "?[package:][type:]name".

        -
        -
        See Also:
        -
        Constant Field Values
        -
        -
      • -
      - - - -
        -
      • -

        buttonBarNeutralButtonStyle

        -
        public static final int buttonBarNeutralButtonStyle
        -

        Must be a reference to another resource, in the form "@[+][package:]type:name" -or to a theme attribute in the form "?[package:][type:]name".

        -
        -
        See Also:
        -
        Constant Field Values
        -
        -
      • -
      - - - -
        -
      • -

        buttonBarPositiveButtonStyle

        -
        public static final int buttonBarPositiveButtonStyle
        -

        Must be a reference to another resource, in the form "@[+][package:]type:name" -or to a theme attribute in the form "?[package:][type:]name".

        -
        -
        See Also:
        -
        Constant Field Values
        -
        -
      • -
      - - - -
        -
      • -

        buttonBarStyle

        -
        public static final int buttonBarStyle
        -

        Must be a reference to another resource, in the form "@[+][package:]type:name" -or to a theme attribute in the form "?[package:][type:]name".

        -
        -
        See Also:
        -
        Constant Field Values
        -
        -
      • -
      - - - -
        -
      • -

        buttonGravity

        -
        public static final int buttonGravity
        -

        Must be one or more (separated by '|') of the following constant values.

        - ---- - - -
        ConstantValueDescription
        top0x30
        bottom0x50
        -
        -
        See Also:
        -
        Constant Field Values
        -
        -
      • -
      - - - -
        -
      • -

        buttonPanelSideLayout

        -
        public static final int buttonPanelSideLayout
        -

        Must be a reference to another resource, in the form "@[+][package:]type:name" -or to a theme attribute in the form "?[package:][type:]name".

        -
        -
        See Also:
        -
        Constant Field Values
        -
        -
      • -
      - - - -
        -
      • -

        buttonStyle

        -
        public static final int buttonStyle
        -

        Must be a reference to another resource, in the form "@[+][package:]type:name" -or to a theme attribute in the form "?[package:][type:]name".

        -
        -
        See Also:
        -
        Constant Field Values
        -
        -
      • -
      - - - -
        -
      • -

        buttonStyleSmall

        -
        public static final int buttonStyleSmall
        -

        Must be a reference to another resource, in the form "@[+][package:]type:name" -or to a theme attribute in the form "?[package:][type:]name".

        -
        -
        See Also:
        -
        Constant Field Values
        -
        -
      • -
      - - - -
        -
      • -

        buttonTint

        -
        public static final int buttonTint
        -

        Must be a color value, in the form of "#rgb", "#argb", -"#rrggbb", or "#aarrggbb". -

        This may also be a reference to a resource (in the form -"@[package:]type:name") or -theme attribute (in the form -"?[package:][type:]name") -containing a value of this type.

        -
        -
        See Also:
        -
        Constant Field Values
        -
        -
      • -
      - - - -
        -
      • -

        buttonTintMode

        -
        public static final int buttonTintMode
        -

        Must be one of the following constant values.

        - ---- - - - - - -
        ConstantValueDescription
        src_over3
        src_in5
        src_atop9
        multiply14
        screen15
        -
        -
        See Also:
        -
        Constant Field Values
        -
        -
      • -
      - - - -
        -
      • -

        checkboxStyle

        -
        public static final int checkboxStyle
        -

        Must be a reference to another resource, in the form "@[+][package:]type:name" -or to a theme attribute in the form "?[package:][type:]name".

        -
        -
        See Also:
        -
        Constant Field Values
        -
        -
      • -
      - - - -
        -
      • -

        checkedTextViewStyle

        -
        public static final int checkedTextViewStyle
        -

        Must be a reference to another resource, in the form "@[+][package:]type:name" -or to a theme attribute in the form "?[package:][type:]name".

        -
        -
        See Also:
        -
        Constant Field Values
        -
        -
      • -
      - - - -
        -
      • -

        closeIcon

        -
        public static final int closeIcon
        -

        Must be a reference to another resource, in the form "@[+][package:]type:name" -or to a theme attribute in the form "?[package:][type:]name".

        -
        -
        See Also:
        -
        Constant Field Values
        -
        -
      • -
      - - - -
        -
      • -

        closeItemLayout

        -
        public static final int closeItemLayout
        -

        Must be a reference to another resource, in the form "@[+][package:]type:name" -or to a theme attribute in the form "?[package:][type:]name".

        -
        -
        See Also:
        -
        Constant Field Values
        -
        -
      • -
      - - - -
        -
      • -

        collapseContentDescription

        -
        public static final int collapseContentDescription
        -

        Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. -

        This may also be a reference to a resource (in the form -"@[package:]type:name") or -theme attribute (in the form -"?[package:][type:]name") -containing a value of this type.

        -
        -
        See Also:
        -
        Constant Field Values
        -
        -
      • -
      - - - -
        -
      • -

        collapseIcon

        -
        public static final int collapseIcon
        -

        Must be a reference to another resource, in the form "@[+][package:]type:name" -or to a theme attribute in the form "?[package:][type:]name".

        -
        -
        See Also:
        -
        Constant Field Values
        -
        -
      • -
      - - - -
        -
      • -

        collapsedTitleGravity

        -
        public static final int collapsedTitleGravity
        -

        Must be one or more (separated by '|') of the following constant values.

        - ---- - - - - - - - - - - -
        ConstantValueDescription
        top0x30
        bottom0x50
        left0x03
        right0x05
        center_vertical0x10
        fill_vertical0x70
        center_horizontal0x01
        center0x11
        start0x00800003
        end0x00800005
        -
        -
        See Also:
        -
        Constant Field Values
        -
        -
      • -
      - - - -
        -
      • -

        collapsedTitleTextAppearance

        -
        public static final int collapsedTitleTextAppearance
        -

        Must be a reference to another resource, in the form "@[+][package:]type:name" -or to a theme attribute in the form "?[package:][type:]name".

        -
        -
        See Also:
        -
        Constant Field Values
        -
        -
      • -
      - - - -
        -
      • -

        color

        -
        public static final int color
        -

        Must be a color value, in the form of "#rgb", "#argb", -"#rrggbb", or "#aarrggbb". -

        This may also be a reference to a resource (in the form -"@[package:]type:name") or -theme attribute (in the form -"?[package:][type:]name") -containing a value of this type.

        -
        -
        See Also:
        -
        Constant Field Values
        -
        -
      • -
      - - - -
        -
      • -

        colorAccent

        -
        public static final int colorAccent
        -

        Must be a color value, in the form of "#rgb", "#argb", -"#rrggbb", or "#aarrggbb". -

        This may also be a reference to a resource (in the form -"@[package:]type:name") or -theme attribute (in the form -"?[package:][type:]name") -containing a value of this type.

        -
        -
        See Also:
        -
        Constant Field Values
        -
        -
      • -
      - - - -
        -
      • -

        colorBackgroundFloating

        -
        public static final int colorBackgroundFloating
        -

        Must be a color value, in the form of "#rgb", "#argb", -"#rrggbb", or "#aarrggbb". -

        This may also be a reference to a resource (in the form -"@[package:]type:name") or -theme attribute (in the form -"?[package:][type:]name") -containing a value of this type.

        -
        -
        See Also:
        -
        Constant Field Values
        -
        -
      • -
      - - - -
        -
      • -

        colorButtonNormal

        -
        public static final int colorButtonNormal
        -

        Must be a color value, in the form of "#rgb", "#argb", -"#rrggbb", or "#aarrggbb". -

        This may also be a reference to a resource (in the form -"@[package:]type:name") or -theme attribute (in the form -"?[package:][type:]name") -containing a value of this type.

        -
        -
        See Also:
        -
        Constant Field Values
        -
        -
      • -
      - - - -
        -
      • -

        colorControlActivated

        -
        public static final int colorControlActivated
        -

        Must be a color value, in the form of "#rgb", "#argb", -"#rrggbb", or "#aarrggbb". -

        This may also be a reference to a resource (in the form -"@[package:]type:name") or -theme attribute (in the form -"?[package:][type:]name") -containing a value of this type.

        -
        -
        See Also:
        -
        Constant Field Values
        -
        -
      • -
      - - - -
        -
      • -

        colorControlHighlight

        -
        public static final int colorControlHighlight
        -

        Must be a color value, in the form of "#rgb", "#argb", -"#rrggbb", or "#aarrggbb". -

        This may also be a reference to a resource (in the form -"@[package:]type:name") or -theme attribute (in the form -"?[package:][type:]name") -containing a value of this type.

        -
        -
        See Also:
        -
        Constant Field Values
        -
        -
      • -
      - - - -
        -
      • -

        colorControlNormal

        -
        public static final int colorControlNormal
        -

        Must be a color value, in the form of "#rgb", "#argb", -"#rrggbb", or "#aarrggbb". -

        This may also be a reference to a resource (in the form -"@[package:]type:name") or -theme attribute (in the form -"?[package:][type:]name") -containing a value of this type.

        -
        -
        See Also:
        -
        Constant Field Values
        -
        -
      • -
      - - - -
        -
      • -

        colorPrimary

        -
        public static final int colorPrimary
        -

        Must be a color value, in the form of "#rgb", "#argb", -"#rrggbb", or "#aarrggbb". -

        This may also be a reference to a resource (in the form -"@[package:]type:name") or -theme attribute (in the form -"?[package:][type:]name") -containing a value of this type.

        -
        -
        See Also:
        -
        Constant Field Values
        -
        -
      • -
      - - - -
        -
      • -

        colorPrimaryDark

        -
        public static final int colorPrimaryDark
        -

        Must be a color value, in the form of "#rgb", "#argb", -"#rrggbb", or "#aarrggbb". -

        This may also be a reference to a resource (in the form -"@[package:]type:name") or -theme attribute (in the form -"?[package:][type:]name") -containing a value of this type.

        -
        -
        See Also:
        -
        Constant Field Values
        -
        -
      • -
      - - - -
        -
      • -

        colorSwitchThumbNormal

        -
        public static final int colorSwitchThumbNormal
        -

        Must be a color value, in the form of "#rgb", "#argb", -"#rrggbb", or "#aarrggbb". -

        This may also be a reference to a resource (in the form -"@[package:]type:name") or -theme attribute (in the form -"?[package:][type:]name") -containing a value of this type.

        -
        -
        See Also:
        -
        Constant Field Values
        -
        -
      • -
      - - - -
        -
      • -

        commitIcon

        -
        public static final int commitIcon
        -

        Must be a reference to another resource, in the form "@[+][package:]type:name" -or to a theme attribute in the form "?[package:][type:]name".

        -
        -
        See Also:
        -
        Constant Field Values
        -
        -
      • -
      - - - -
        -
      • -

        contentInsetEnd

        -
        public static final int contentInsetEnd
        -

        Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". -Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), -in (inches), mm (millimeters). -

        This may also be a reference to a resource (in the form -"@[package:]type:name") or -theme attribute (in the form -"?[package:][type:]name") -containing a value of this type.

        -
        -
        See Also:
        -
        Constant Field Values
        -
        -
      • -
      - - - -
        -
      • -

        contentInsetEndWithActions

        -
        public static final int contentInsetEndWithActions
        -

        Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". -Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), -in (inches), mm (millimeters). -

        This may also be a reference to a resource (in the form -"@[package:]type:name") or -theme attribute (in the form -"?[package:][type:]name") -containing a value of this type.

        -
        -
        See Also:
        -
        Constant Field Values
        -
        -
      • -
      - - - -
        -
      • -

        contentInsetLeft

        -
        public static final int contentInsetLeft
        -

        Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". -Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), -in (inches), mm (millimeters). -

        This may also be a reference to a resource (in the form -"@[package:]type:name") or -theme attribute (in the form -"?[package:][type:]name") -containing a value of this type.

        -
        -
        See Also:
        -
        Constant Field Values
        -
        -
      • -
      - - - -
        -
      • -

        contentInsetRight

        -
        public static final int contentInsetRight
        -

        Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". -Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), -in (inches), mm (millimeters). -

        This may also be a reference to a resource (in the form -"@[package:]type:name") or -theme attribute (in the form -"?[package:][type:]name") -containing a value of this type.

        -
        -
        See Also:
        -
        Constant Field Values
        -
        -
      • -
      - - - -
        -
      • -

        contentInsetStart

        -
        public static final int contentInsetStart
        -

        Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". -Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), -in (inches), mm (millimeters). -

        This may also be a reference to a resource (in the form -"@[package:]type:name") or -theme attribute (in the form -"?[package:][type:]name") -containing a value of this type.

        -
        -
        See Also:
        -
        Constant Field Values
        -
        -
      • -
      - - - -
        -
      • -

        contentInsetStartWithNavigation

        -
        public static final int contentInsetStartWithNavigation
        -

        Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". -Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), -in (inches), mm (millimeters). -

        This may also be a reference to a resource (in the form -"@[package:]type:name") or -theme attribute (in the form -"?[package:][type:]name") -containing a value of this type.

        -
        -
        See Also:
        -
        Constant Field Values
        -
        -
      • -
      - - - -
        -
      • -

        contentScrim

        -
        public static final int contentScrim
        -

        Must be a color value, in the form of "#rgb", "#argb", -"#rrggbb", or "#aarrggbb". -

        This may also be a reference to a resource (in the form -"@[package:]type:name") or -theme attribute (in the form -"?[package:][type:]name") -containing a value of this type.

        -
        -
        See Also:
        -
        Constant Field Values
        -
        -
      • -
      - - - -
        -
      • -

        controlBackground

        -
        public static final int controlBackground
        -

        Must be a reference to another resource, in the form "@[+][package:]type:name" -or to a theme attribute in the form "?[package:][type:]name".

        -
        -
        See Also:
        -
        Constant Field Values
        -
        -
      • -
      - - - -
        -
      • -

        counterEnabled

        -
        public static final int counterEnabled
        -

        Must be a boolean value, either "true" or "false". -

        This may also be a reference to a resource (in the form -"@[package:]type:name") or -theme attribute (in the form -"?[package:][type:]name") -containing a value of this type.

        -
        -
        See Also:
        -
        Constant Field Values
        -
        -
      • -
      - - - -
        -
      • -

        counterMaxLength

        -
        public static final int counterMaxLength
        -

        Must be an integer value, such as "100". -

        This may also be a reference to a resource (in the form -"@[package:]type:name") or -theme attribute (in the form -"?[package:][type:]name") -containing a value of this type.

        -
        -
        See Also:
        -
        Constant Field Values
        -
        -
      • -
      - - - -
        -
      • -

        counterOverflowTextAppearance

        -
        public static final int counterOverflowTextAppearance
        -

        Must be a reference to another resource, in the form "@[+][package:]type:name" -or to a theme attribute in the form "?[package:][type:]name".

        -
        -
        See Also:
        -
        Constant Field Values
        -
        -
      • -
      - - - -
        -
      • -

        counterTextAppearance

        -
        public static final int counterTextAppearance
        -

        Must be a reference to another resource, in the form "@[+][package:]type:name" -or to a theme attribute in the form "?[package:][type:]name".

        -
        -
        See Also:
        -
        Constant Field Values
        -
        -
      • -
      - - - -
        -
      • -

        customNavigationLayout

        -
        public static final int customNavigationLayout
        -

        Must be a reference to another resource, in the form "@[+][package:]type:name" -or to a theme attribute in the form "?[package:][type:]name".

        -
        -
        See Also:
        -
        Constant Field Values
        -
        -
      • -
      - - - -
        -
      • -

        defaultQueryHint

        -
        public static final int defaultQueryHint
        -

        Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. -

        This may also be a reference to a resource (in the form -"@[package:]type:name") or -theme attribute (in the form -"?[package:][type:]name") -containing a value of this type.

        -
        -
        See Also:
        -
        Constant Field Values
        -
        -
      • -
      - - - -
        -
      • -

        dialogPreferredPadding

        -
        public static final int dialogPreferredPadding
        -

        Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". -Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), -in (inches), mm (millimeters). -

        This may also be a reference to a resource (in the form -"@[package:]type:name") or -theme attribute (in the form -"?[package:][type:]name") -containing a value of this type.

        -
        -
        See Also:
        -
        Constant Field Values
        -
        -
      • -
      - - - -
        -
      • -

        dialogTheme

        -
        public static final int dialogTheme
        -

        Must be a reference to another resource, in the form "@[+][package:]type:name" -or to a theme attribute in the form "?[package:][type:]name".

        -
        -
        See Also:
        -
        Constant Field Values
        -
        -
      • -
      - - - -
        -
      • -

        discreteSeekBarStyle

        -
        public static final int discreteSeekBarStyle
        -

        Must be a reference to another resource, in the form "@[+][package:]type:name" -or to a theme attribute in the form "?[package:][type:]name".

        -
        -
        See Also:
        -
        Constant Field Values
        -
        -
      • -
      - - - -
        -
      • -

        displayOptions

        -
        public static final int displayOptions
        -

        Must be one or more (separated by '|') of the following constant values.

        - ---- - - - - - - - -
        ConstantValueDescription
        none0
        useLogo0x1
        showHome0x2
        homeAsUp0x4
        showTitle0x8
        showCustom0x10
        disableHome0x20
        -
        -
        See Also:
        -
        Constant Field Values
        -
        -
      • -
      - - - -
        -
      • -

        divider

        -
        public static final int divider
        -

        Must be a reference to another resource, in the form "@[+][package:]type:name" -or to a theme attribute in the form "?[package:][type:]name".

        -
        -
        See Also:
        -
        Constant Field Values
        -
        -
      • -
      - - - -
        -
      • -

        dividerHorizontal

        -
        public static final int dividerHorizontal
        -

        Must be a reference to another resource, in the form "@[+][package:]type:name" -or to a theme attribute in the form "?[package:][type:]name".

        -
        -
        See Also:
        -
        Constant Field Values
        -
        -
      • -
      - - - -
        -
      • -

        dividerPadding

        -
        public static final int dividerPadding
        -

        Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". -Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), -in (inches), mm (millimeters). -

        This may also be a reference to a resource (in the form -"@[package:]type:name") or -theme attribute (in the form -"?[package:][type:]name") -containing a value of this type.

        -
        -
        See Also:
        -
        Constant Field Values
        -
        -
      • -
      - - - -
        -
      • -

        dividerVertical

        -
        public static final int dividerVertical
        -

        Must be a reference to another resource, in the form "@[+][package:]type:name" -or to a theme attribute in the form "?[package:][type:]name".

        -
        -
        See Also:
        -
        Constant Field Values
        -
        -
      • -
      - - - -
        -
      • -

        drawableSize

        -
        public static final int drawableSize
        -

        Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". -Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), -in (inches), mm (millimeters). -

        This may also be a reference to a resource (in the form -"@[package:]type:name") or -theme attribute (in the form -"?[package:][type:]name") -containing a value of this type.

        -
        -
        See Also:
        -
        Constant Field Values
        -
        -
      • -
      - - - -
        -
      • -

        drawerArrowStyle

        -
        public static final int drawerArrowStyle
        -

        Must be a reference to another resource, in the form "@[+][package:]type:name" -or to a theme attribute in the form "?[package:][type:]name".

        -
        -
        See Also:
        -
        Constant Field Values
        -
        -
      • -
      - - - -
        -
      • -

        dropDownListViewStyle

        -
        public static final int dropDownListViewStyle
        -

        Must be a reference to another resource, in the form "@[+][package:]type:name" -or to a theme attribute in the form "?[package:][type:]name".

        -
        -
        See Also:
        -
        Constant Field Values
        -
        -
      • -
      - - - -
        -
      • -

        dropdownListPreferredItemHeight

        -
        public static final int dropdownListPreferredItemHeight
        -

        Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". -Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), -in (inches), mm (millimeters). -

        This may also be a reference to a resource (in the form -"@[package:]type:name") or -theme attribute (in the form -"?[package:][type:]name") -containing a value of this type.

        -
        -
        See Also:
        -
        Constant Field Values
        -
        -
      • -
      - - - -
        -
      • -

        dsb_allowTrackClickToDrag

        -
        public static final int dsb_allowTrackClickToDrag
        -

        Must be a boolean value, either "true" or "false". -

        This may also be a reference to a resource (in the form -"@[package:]type:name") or -theme attribute (in the form -"?[package:][type:]name") -containing a value of this type.

        -
        -
        See Also:
        -
        Constant Field Values
        -
        -
      • -
      - - - -
        -
      • -

        dsb_indicatorColor

        -
        public static final int dsb_indicatorColor
        -

        May be a reference to another resource, in the form "@[+][package:]type:name" -or to a theme attribute in the form "?[package:][type:]name". -

        May be a color value, in the form of "#rgb", "#argb", -"#rrggbb", or "#aarrggbb".

        -
        -
        See Also:
        -
        Constant Field Values
        -
        -
      • -
      - - - -
        -
      • -

        dsb_indicatorElevation

        -
        public static final int dsb_indicatorElevation
        -

        Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". -Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), -in (inches), mm (millimeters). -

        This may also be a reference to a resource (in the form -"@[package:]type:name") or -theme attribute (in the form -"?[package:][type:]name") -containing a value of this type.

        -
        -
        See Also:
        -
        Constant Field Values
        -
        -
      • -
      - - - -
        -
      • -

        dsb_indicatorFormatter

        -
        public static final int dsb_indicatorFormatter
        -

        May be a reference to another resource, in the form "@[+][package:]type:name" -or to a theme attribute in the form "?[package:][type:]name". -

        May be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character.

        -
        -
        See Also:
        -
        Constant Field Values
        -
        -
      • -
      - - - -
        -
      • -

        dsb_indicatorPopupEnabled

        -
        public static final int dsb_indicatorPopupEnabled
        -

        Must be a boolean value, either "true" or "false". -

        This may also be a reference to a resource (in the form -"@[package:]type:name") or -theme attribute (in the form -"?[package:][type:]name") -containing a value of this type.

        -
        -
        See Also:
        -
        Constant Field Values
        -
        -
      • -
      - - - -
        -
      • -

        dsb_indicatorSeparation

        -
        public static final int dsb_indicatorSeparation
        -

        May be an integer value, such as "100". -

        May be a dimension value, which is a floating point number appended with a unit such as "14.5sp". -Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), -in (inches), mm (millimeters). -

        This may also be a reference to a resource (in the form -"@[package:]type:name") or -theme attribute (in the form -"?[package:][type:]name") -containing a value of this type.

        -
        -
        See Also:
        -
        Constant Field Values
        -
        -
      • -
      - - - -
        -
      • -

        dsb_indicatorTextAppearance

        -
        public static final int dsb_indicatorTextAppearance
        -

        Must be a reference to another resource, in the form "@[+][package:]type:name" -or to a theme attribute in the form "?[package:][type:]name".

        -
        -
        See Also:
        -
        Constant Field Values
        -
        -
      • -
      - - - -
        -
      • -

        dsb_max

        -
        public static final int dsb_max
        -

        May be an integer value, such as "100". -

        May be a dimension value, which is a floating point number appended with a unit such as "14.5sp". -Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), -in (inches), mm (millimeters). -

        This may also be a reference to a resource (in the form -"@[package:]type:name") or -theme attribute (in the form -"?[package:][type:]name") -containing a value of this type.

        -
        -
        See Also:
        -
        Constant Field Values
        -
        -
      • -
      - - - -
        -
      • -

        dsb_min

        -
        public static final int dsb_min
        -

        May be an integer value, such as "100". -

        May be a dimension value, which is a floating point number appended with a unit such as "14.5sp". -Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), -in (inches), mm (millimeters). -

        This may also be a reference to a resource (in the form -"@[package:]type:name") or -theme attribute (in the form -"?[package:][type:]name") -containing a value of this type.

        -
        -
        See Also:
        -
        Constant Field Values
        -
        -
      • -
      - - - -
        -
      • -

        dsb_mirrorForRtl

        -
        public static final int dsb_mirrorForRtl
        -

        Must be a boolean value, either "true" or "false". -

        This may also be a reference to a resource (in the form -"@[package:]type:name") or -theme attribute (in the form -"?[package:][type:]name") -containing a value of this type.

        -
        -
        See Also:
        -
        Constant Field Values
        -
        -
      • -
      - - - -
        -
      • -

        dsb_progressColor

        -
        public static final int dsb_progressColor
        -

        May be a reference to another resource, in the form "@[+][package:]type:name" -or to a theme attribute in the form "?[package:][type:]name". -

        May be a color value, in the form of "#rgb", "#argb", -"#rrggbb", or "#aarrggbb".

        -
        -
        See Also:
        -
        Constant Field Values
        -
        -
      • -
      - - - -
        -
      • -

        dsb_rippleColor

        -
        public static final int dsb_rippleColor
        -

        May be a reference to another resource, in the form "@[+][package:]type:name" -or to a theme attribute in the form "?[package:][type:]name". -

        May be a color value, in the form of "#rgb", "#argb", -"#rrggbb", or "#aarrggbb".

        -
        -
        See Also:
        -
        Constant Field Values
        -
        -
      • -
      - - - -
        -
      • -

        dsb_scrubberHeight

        -
        public static final int dsb_scrubberHeight
        -

        May be an integer value, such as "100". -

        May be a dimension value, which is a floating point number appended with a unit such as "14.5sp". -Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), -in (inches), mm (millimeters). -

        This may also be a reference to a resource (in the form -"@[package:]type:name") or -theme attribute (in the form -"?[package:][type:]name") -containing a value of this type.

        -
        -
        See Also:
        -
        Constant Field Values
        -
        -
      • -
      - - - -
        -
      • -

        dsb_thumbSize

        -
        public static final int dsb_thumbSize
        -

        May be an integer value, such as "100". -

        May be a dimension value, which is a floating point number appended with a unit such as "14.5sp". -Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), -in (inches), mm (millimeters). -

        This may also be a reference to a resource (in the form -"@[package:]type:name") or -theme attribute (in the form -"?[package:][type:]name") -containing a value of this type.

        -
        -
        See Also:
        -
        Constant Field Values
        -
        -
      • -
      - - - -
        -
      • -

        dsb_trackColor

        -
        public static final int dsb_trackColor
        -

        May be a reference to another resource, in the form "@[+][package:]type:name" -or to a theme attribute in the form "?[package:][type:]name". -

        May be a color value, in the form of "#rgb", "#argb", -"#rrggbb", or "#aarrggbb".

        -
        -
        See Also:
        -
        Constant Field Values
        -
        -
      • -
      - - - -
        -
      • -

        dsb_trackHeight

        -
        public static final int dsb_trackHeight
        -

        May be an integer value, such as "100". -

        May be a dimension value, which is a floating point number appended with a unit such as "14.5sp". -Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), -in (inches), mm (millimeters). -

        This may also be a reference to a resource (in the form -"@[package:]type:name") or -theme attribute (in the form -"?[package:][type:]name") -containing a value of this type.

        -
        -
        See Also:
        -
        Constant Field Values
        -
        -
      • -
      - - - -
        -
      • -

        dsb_value

        -
        public static final int dsb_value
        -

        May be an integer value, such as "100". -

        May be a dimension value, which is a floating point number appended with a unit such as "14.5sp". -Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), -in (inches), mm (millimeters). -

        This may also be a reference to a resource (in the form -"@[package:]type:name") or -theme attribute (in the form -"?[package:][type:]name") -containing a value of this type.

        -
        -
        See Also:
        -
        Constant Field Values
        -
        -
      • -
      - - - -
        -
      • -

        editTextBackground

        -
        public static final int editTextBackground
        -

        Must be a reference to another resource, in the form "@[+][package:]type:name" -or to a theme attribute in the form "?[package:][type:]name".

        -
        -
        See Also:
        -
        Constant Field Values
        -
        -
      • -
      - - - -
        -
      • -

        editTextColor

        -
        public static final int editTextColor
        -

        May be a reference to another resource, in the form "@[+][package:]type:name" -or to a theme attribute in the form "?[package:][type:]name". -

        May be a color value, in the form of "#rgb", "#argb", -"#rrggbb", or "#aarrggbb".

        -
        -
        See Also:
        -
        Constant Field Values
        -
        -
      • -
      - - - -
        -
      • -

        editTextStyle

        -
        public static final int editTextStyle
        -

        Must be a reference to another resource, in the form "@[+][package:]type:name" -or to a theme attribute in the form "?[package:][type:]name".

        -
        -
        See Also:
        -
        Constant Field Values
        -
        -
      • -
      - - - -
        -
      • -

        elevation

        -
        public static final int elevation
        -

        Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". -Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), -in (inches), mm (millimeters). -

        This may also be a reference to a resource (in the form -"@[package:]type:name") or -theme attribute (in the form -"?[package:][type:]name") -containing a value of this type.

        -
        -
        See Also:
        -
        Constant Field Values
        -
        -
      • -
      - - - -
        -
      • -

        errorEnabled

        -
        public static final int errorEnabled
        -

        Must be a boolean value, either "true" or "false". -

        This may also be a reference to a resource (in the form -"@[package:]type:name") or -theme attribute (in the form -"?[package:][type:]name") -containing a value of this type.

        -
        -
        See Also:
        -
        Constant Field Values
        -
        -
      • -
      - - - -
        -
      • -

        errorTextAppearance

        -
        public static final int errorTextAppearance
        -

        Must be a reference to another resource, in the form "@[+][package:]type:name" -or to a theme attribute in the form "?[package:][type:]name".

        -
        -
        See Also:
        -
        Constant Field Values
        -
        -
      • -
      - - - -
        -
      • -

        expandActivityOverflowButtonDrawable

        -
        public static final int expandActivityOverflowButtonDrawable
        -

        Must be a reference to another resource, in the form "@[+][package:]type:name" -or to a theme attribute in the form "?[package:][type:]name".

        -
        -
        See Also:
        -
        Constant Field Values
        -
        -
      • -
      - - - -
        -
      • -

        expanded

        -
        public static final int expanded
        -

        Must be a boolean value, either "true" or "false". -

        This may also be a reference to a resource (in the form -"@[package:]type:name") or -theme attribute (in the form -"?[package:][type:]name") -containing a value of this type.

        -
        -
        See Also:
        -
        Constant Field Values
        -
        -
      • -
      - - - -
        -
      • -

        expandedTitleGravity

        -
        public static final int expandedTitleGravity
        -

        Must be one or more (separated by '|') of the following constant values.

        - ---- - - - - - - - - - - -
        ConstantValueDescription
        top0x30
        bottom0x50
        left0x03
        right0x05
        center_vertical0x10
        fill_vertical0x70
        center_horizontal0x01
        center0x11
        start0x00800003
        end0x00800005
        -
        -
        See Also:
        -
        Constant Field Values
        -
        -
      • -
      - - - -
        -
      • -

        expandedTitleMargin

        -
        public static final int expandedTitleMargin
        -

        Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". -Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), -in (inches), mm (millimeters). -

        This may also be a reference to a resource (in the form -"@[package:]type:name") or -theme attribute (in the form -"?[package:][type:]name") -containing a value of this type.

        -
        -
        See Also:
        -
        Constant Field Values
        -
        -
      • -
      - - - -
        -
      • -

        expandedTitleMarginBottom

        -
        public static final int expandedTitleMarginBottom
        -

        Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". -Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), -in (inches), mm (millimeters). -

        This may also be a reference to a resource (in the form -"@[package:]type:name") or -theme attribute (in the form -"?[package:][type:]name") -containing a value of this type.

        -
        -
        See Also:
        -
        Constant Field Values
        -
        -
      • -
      - - - -
        -
      • -

        expandedTitleMarginEnd

        -
        public static final int expandedTitleMarginEnd
        -

        Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". -Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), -in (inches), mm (millimeters). -

        This may also be a reference to a resource (in the form -"@[package:]type:name") or -theme attribute (in the form -"?[package:][type:]name") -containing a value of this type.

        -
        -
        See Also:
        -
        Constant Field Values
        -
        -
      • -
      - - - -
        -
      • -

        expandedTitleMarginStart

        -
        public static final int expandedTitleMarginStart
        -

        Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". -Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), -in (inches), mm (millimeters). -

        This may also be a reference to a resource (in the form -"@[package:]type:name") or -theme attribute (in the form -"?[package:][type:]name") -containing a value of this type.

        -
        -
        See Also:
        -
        Constant Field Values
        -
        -
      • -
      - - - -
        -
      • -

        expandedTitleMarginTop

        -
        public static final int expandedTitleMarginTop
        -

        Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". -Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), -in (inches), mm (millimeters). -

        This may also be a reference to a resource (in the form -"@[package:]type:name") or -theme attribute (in the form -"?[package:][type:]name") -containing a value of this type.

        -
        -
        See Also:
        -
        Constant Field Values
        -
        -
      • -
      - - - -
        -
      • -

        expandedTitleTextAppearance

        -
        public static final int expandedTitleTextAppearance
        -

        Must be a reference to another resource, in the form "@[+][package:]type:name" -or to a theme attribute in the form "?[package:][type:]name".

        -
        -
        See Also:
        -
        Constant Field Values
        -
        -
      • -
      - - - -
        -
      • -

        fabSize

        -
        public static final int fabSize
        -

        Must be one of the following constant values.

        - ---- - - - -
        ConstantValueDescription
        auto-1
        normal0
        mini1
        -
        -
        See Also:
        -
        Constant Field Values
        -
        -
      • -
      - - - -
        -
      • -

        foregroundInsidePadding

        -
        public static final int foregroundInsidePadding
        -

        Must be a boolean value, either "true" or "false". -

        This may also be a reference to a resource (in the form -"@[package:]type:name") or -theme attribute (in the form -"?[package:][type:]name") -containing a value of this type.

        -
        -
        See Also:
        -
        Constant Field Values
        -
        -
      • -
      - - - -
        -
      • -

        gapBetweenBars

        -
        public static final int gapBetweenBars
        -

        Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". -Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), -in (inches), mm (millimeters). -

        This may also be a reference to a resource (in the form -"@[package:]type:name") or -theme attribute (in the form -"?[package:][type:]name") -containing a value of this type.

        -
        -
        See Also:
        -
        Constant Field Values
        -
        -
      • -
      - - - -
        -
      • -

        goIcon

        -
        public static final int goIcon
        -

        Must be a reference to another resource, in the form "@[+][package:]type:name" -or to a theme attribute in the form "?[package:][type:]name".

        -
        -
        See Also:
        -
        Constant Field Values
        -
        -
      • -
      - - - -
        -
      • -

        headerLayout

        -
        public static final int headerLayout
        -

        Must be a reference to another resource, in the form "@[+][package:]type:name" -or to a theme attribute in the form "?[package:][type:]name".

        -
        -
        See Also:
        -
        Constant Field Values
        -
        -
      • -
      - - - -
        -
      • -

        height

        -
        public static final int height
        -

        Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". -Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), -in (inches), mm (millimeters). -

        This may also be a reference to a resource (in the form -"@[package:]type:name") or -theme attribute (in the form -"?[package:][type:]name") -containing a value of this type.

        -
        -
        See Also:
        -
        Constant Field Values
        -
        -
      • -
      - - - -
        -
      • -

        hideOnContentScroll

        -
        public static final int hideOnContentScroll
        -

        Must be a boolean value, either "true" or "false". -

        This may also be a reference to a resource (in the form -"@[package:]type:name") or -theme attribute (in the form -"?[package:][type:]name") -containing a value of this type.

        -
        -
        See Also:
        -
        Constant Field Values
        -
        -
      • -
      - - - -
        -
      • -

        hintAnimationEnabled

        -
        public static final int hintAnimationEnabled
        -

        Must be a boolean value, either "true" or "false". -

        This may also be a reference to a resource (in the form -"@[package:]type:name") or -theme attribute (in the form -"?[package:][type:]name") -containing a value of this type.

        -
        -
        See Also:
        -
        Constant Field Values
        -
        -
      • -
      - - - -
        -
      • -

        hintEnabled

        -
        public static final int hintEnabled
        -

        Must be a boolean value, either "true" or "false". -

        This may also be a reference to a resource (in the form -"@[package:]type:name") or -theme attribute (in the form -"?[package:][type:]name") -containing a value of this type.

        -
        -
        See Also:
        -
        Constant Field Values
        -
        -
      • -
      - - - -
        -
      • -

        hintTextAppearance

        -
        public static final int hintTextAppearance
        -

        Must be a reference to another resource, in the form "@[+][package:]type:name" -or to a theme attribute in the form "?[package:][type:]name".

        -
        -
        See Also:
        -
        Constant Field Values
        -
        -
      • -
      - - - -
        -
      • -

        homeAsUpIndicator

        -
        public static final int homeAsUpIndicator
        -

        Must be a reference to another resource, in the form "@[+][package:]type:name" -or to a theme attribute in the form "?[package:][type:]name".

        -
        -
        See Also:
        -
        Constant Field Values
        -
        -
      • -
      - - - -
        -
      • -

        homeLayout

        -
        public static final int homeLayout
        -

        Must be a reference to another resource, in the form "@[+][package:]type:name" -or to a theme attribute in the form "?[package:][type:]name".

        -
        -
        See Also:
        -
        Constant Field Values
        -
        -
      • -
      - - - -
        -
      • -

        icon

        -
        public static final int icon
        -

        Must be a reference to another resource, in the form "@[+][package:]type:name" -or to a theme attribute in the form "?[package:][type:]name".

        -
        -
        See Also:
        -
        Constant Field Values
        -
        -
      • -
      - - - -
        -
      • -

        iconifiedByDefault

        -
        public static final int iconifiedByDefault
        -

        Must be a boolean value, either "true" or "false". -

        This may also be a reference to a resource (in the form -"@[package:]type:name") or -theme attribute (in the form -"?[package:][type:]name") -containing a value of this type.

        -
        -
        See Also:
        -
        Constant Field Values
        -
        -
      • -
      - - - -
        -
      • -

        imageButtonStyle

        -
        public static final int imageButtonStyle
        -

        Must be a reference to another resource, in the form "@[+][package:]type:name" -or to a theme attribute in the form "?[package:][type:]name".

        -
        -
        See Also:
        -
        Constant Field Values
        -
        -
      • -
      - - - -
        -
      • -

        indeterminateProgressStyle

        -
        public static final int indeterminateProgressStyle
        -

        Must be a reference to another resource, in the form "@[+][package:]type:name" -or to a theme attribute in the form "?[package:][type:]name".

        -
        -
        See Also:
        -
        Constant Field Values
        -
        -
      • -
      - - - -
        -
      • -

        initialActivityCount

        -
        public static final int initialActivityCount
        -

        Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. -

        This may also be a reference to a resource (in the form -"@[package:]type:name") or -theme attribute (in the form -"?[package:][type:]name") -containing a value of this type.

        -
        -
        See Also:
        -
        Constant Field Values
        -
        -
      • -
      - - - -
        -
      • -

        insetForeground

        -
        public static final int insetForeground
        -

        May be a reference to another resource, in the form "@[+][package:]type:name" -or to a theme attribute in the form "?[package:][type:]name". -

        May be a color value, in the form of "#rgb", "#argb", -"#rrggbb", or "#aarrggbb".

        -
        -
        See Also:
        -
        Constant Field Values
        -
        -
      • -
      - - - -
        -
      • -

        isLightTheme

        -
        public static final int isLightTheme
        -

        Must be a boolean value, either "true" or "false". -

        This may also be a reference to a resource (in the form -"@[package:]type:name") or -theme attribute (in the form -"?[package:][type:]name") -containing a value of this type.

        -
        -
        See Also:
        -
        Constant Field Values
        -
        -
      • -
      - - - -
        -
      • -

        itemBackground

        -
        public static final int itemBackground
        -

        Must be a reference to another resource, in the form "@[+][package:]type:name" -or to a theme attribute in the form "?[package:][type:]name".

        -
        -
        See Also:
        -
        Constant Field Values
        -
        -
      • -
      - - - -
        -
      • -

        itemIconTint

        -
        public static final int itemIconTint
        -

        Must be a color value, in the form of "#rgb", "#argb", -"#rrggbb", or "#aarrggbb". -

        This may also be a reference to a resource (in the form -"@[package:]type:name") or -theme attribute (in the form -"?[package:][type:]name") -containing a value of this type.

        -
        -
        See Also:
        -
        Constant Field Values
        -
        -
      • -
      - - - -
        -
      • -

        itemPadding

        -
        public static final int itemPadding
        -

        Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". -Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), -in (inches), mm (millimeters). -

        This may also be a reference to a resource (in the form -"@[package:]type:name") or -theme attribute (in the form -"?[package:][type:]name") -containing a value of this type.

        -
        -
        See Also:
        -
        Constant Field Values
        -
        -
      • -
      - - - -
        -
      • -

        itemTextAppearance

        -
        public static final int itemTextAppearance
        -

        Must be a reference to another resource, in the form "@[+][package:]type:name" -or to a theme attribute in the form "?[package:][type:]name".

        -
        -
        See Also:
        -
        Constant Field Values
        -
        -
      • -
      - - - -
        -
      • -

        itemTextColor

        -
        public static final int itemTextColor
        -

        Must be a color value, in the form of "#rgb", "#argb", -"#rrggbb", or "#aarrggbb". -

        This may also be a reference to a resource (in the form -"@[package:]type:name") or -theme attribute (in the form -"?[package:][type:]name") -containing a value of this type.

        -
        -
        See Also:
        -
        Constant Field Values
        -
        -
      • -
      - - - -
        -
      • -

        keylines

        -
        public static final int keylines
        -

        Must be a reference to another resource, in the form "@[+][package:]type:name" -or to a theme attribute in the form "?[package:][type:]name".

        -
        -
        See Also:
        -
        Constant Field Values
        -
        -
      • -
      - - - -
        -
      • -

        layout

        -
        public static final int layout
        -

        Must be a reference to another resource, in the form "@[+][package:]type:name" -or to a theme attribute in the form "?[package:][type:]name".

        -
        -
        See Also:
        -
        Constant Field Values
        -
        -
      • -
      - - - -
        -
      • -

        layoutManager

        -
        public static final int layoutManager
        -

        Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. -

        This may also be a reference to a resource (in the form -"@[package:]type:name") or -theme attribute (in the form -"?[package:][type:]name") -containing a value of this type.

        -
        -
        See Also:
        -
        Constant Field Values
        -
        -
      • -
      - - - -
        -
      • -

        layout_anchor

        -
        public static final int layout_anchor
        -

        Must be a reference to another resource, in the form "@[+][package:]type:name" -or to a theme attribute in the form "?[package:][type:]name".

        -
        -
        See Also:
        -
        Constant Field Values
        -
        -
      • -
      - - - -
        -
      • -

        layout_anchorGravity

        -
        public static final int layout_anchorGravity
        -

        Must be one or more (separated by '|') of the following constant values.

        - ---- - - - - - - - - - - - - - - -
        ConstantValueDescription
        top0x30
        bottom0x50
        left0x03
        right0x05
        center_vertical0x10
        fill_vertical0x70
        center_horizontal0x01
        fill_horizontal0x07
        center0x11
        fill0x77
        clip_vertical0x80
        clip_horizontal0x08
        start0x00800003
        end0x00800005
        -
        -
        See Also:
        -
        Constant Field Values
        -
        -
      • -
      - - - -
        -
      • -

        layout_behavior

        -
        public static final int layout_behavior
        -

        Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. -

        This may also be a reference to a resource (in the form -"@[package:]type:name") or -theme attribute (in the form -"?[package:][type:]name") -containing a value of this type.

        -
        -
        See Also:
        -
        Constant Field Values
        -
        -
      • -
      - - - -
        -
      • -

        layout_collapseMode

        -
        public static final int layout_collapseMode
        -

        Must be one of the following constant values.

        - ---- - - - -
        ConstantValueDescription
        none0
        pin1
        parallax2
        -
        -
        See Also:
        -
        Constant Field Values
        -
        -
      • -
      - - - -
        -
      • -

        layout_collapseParallaxMultiplier

        -
        public static final int layout_collapseParallaxMultiplier
        -

        Must be a floating point value, such as "1.2". -

        This may also be a reference to a resource (in the form -"@[package:]type:name") or -theme attribute (in the form -"?[package:][type:]name") -containing a value of this type.

        -
        -
        See Also:
        -
        Constant Field Values
        -
        -
      • -
      - - - -
        -
      • -

        layout_dodgeInsetEdges

        -
        public static final int layout_dodgeInsetEdges
        -

        Must be one or more (separated by '|') of the following constant values.

        - ---- - - - - - - - - -
        ConstantValueDescription
        none0x0
        top0x30
        bottom0x50
        left0x03
        right0x03
        start0x00800003
        end0x00800005
        all0x77
        -
        -
        See Also:
        -
        Constant Field Values
        -
        -
      • -
      - - - -
        -
      • -

        layout_insetEdge

        -
        public static final int layout_insetEdge
        -

        Must be one of the following constant values.

        - ---- - - - - - - - -
        ConstantValueDescription
        none0x0
        top0x30
        bottom0x50
        left0x03
        right0x03
        start0x00800003
        end0x00800005
        -
        -
        See Also:
        -
        Constant Field Values
        -
        -
      • -
      - - - -
        -
      • -

        layout_keyline

        -
        public static final int layout_keyline
        -

        Must be an integer value, such as "100". -

        This may also be a reference to a resource (in the form -"@[package:]type:name") or -theme attribute (in the form -"?[package:][type:]name") -containing a value of this type.

        -
        -
        See Also:
        -
        Constant Field Values
        -
        -
      • -
      - - - -
        -
      • -

        layout_scrollFlags

        -
        public static final int layout_scrollFlags
        -

        Must be one or more (separated by '|') of the following constant values.

        - ---- - - - - - -
        ConstantValueDescription
        scroll0x1
        exitUntilCollapsed0x2
        enterAlways0x4
        enterAlwaysCollapsed0x8
        snap0x10
        -
        -
        See Also:
        -
        Constant Field Values
        -
        -
      • -
      - - - -
        -
      • -

        layout_scrollInterpolator

        -
        public static final int layout_scrollInterpolator
        -

        Must be a reference to another resource, in the form "@[+][package:]type:name" -or to a theme attribute in the form "?[package:][type:]name".

        -
        -
        See Also:
        -
        Constant Field Values
        -
        -
      • -
      - - - -
        -
      • -

        listChoiceBackgroundIndicator

        -
        public static final int listChoiceBackgroundIndicator
        -

        Must be a reference to another resource, in the form "@[+][package:]type:name" -or to a theme attribute in the form "?[package:][type:]name".

        -
        -
        See Also:
        -
        Constant Field Values
        -
        -
      • -
      - - - -
        -
      • -

        listDividerAlertDialog

        -
        public static final int listDividerAlertDialog
        -

        Must be a reference to another resource, in the form "@[+][package:]type:name" -or to a theme attribute in the form "?[package:][type:]name".

        -
        -
        See Also:
        -
        Constant Field Values
        -
        -
      • -
      - - - -
        -
      • -

        listItemLayout

        -
        public static final int listItemLayout
        -

        Must be a reference to another resource, in the form "@[+][package:]type:name" -or to a theme attribute in the form "?[package:][type:]name".

        -
        -
        See Also:
        -
        Constant Field Values
        -
        -
      • -
      - - - -
        -
      • -

        listLayout

        -
        public static final int listLayout
        -

        Must be a reference to another resource, in the form "@[+][package:]type:name" -or to a theme attribute in the form "?[package:][type:]name".

        -
        -
        See Also:
        -
        Constant Field Values
        -
        -
      • -
      - - - -
        -
      • -

        listMenuViewStyle

        -
        public static final int listMenuViewStyle
        -

        Must be a reference to another resource, in the form "@[+][package:]type:name" -or to a theme attribute in the form "?[package:][type:]name".

        -
        -
        See Also:
        -
        Constant Field Values
        -
        -
      • -
      - - - -
        -
      • -

        listPopupWindowStyle

        -
        public static final int listPopupWindowStyle
        -

        Must be a reference to another resource, in the form "@[+][package:]type:name" -or to a theme attribute in the form "?[package:][type:]name".

        -
        -
        See Also:
        -
        Constant Field Values
        -
        -
      • -
      - - - -
        -
      • -

        listPreferredItemHeight

        -
        public static final int listPreferredItemHeight
        -

        Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". -Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), -in (inches), mm (millimeters). -

        This may also be a reference to a resource (in the form -"@[package:]type:name") or -theme attribute (in the form -"?[package:][type:]name") -containing a value of this type.

        -
        -
        See Also:
        -
        Constant Field Values
        -
        -
      • -
      - - - -
        -
      • -

        listPreferredItemHeightLarge

        -
        public static final int listPreferredItemHeightLarge
        -

        Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". -Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), -in (inches), mm (millimeters). -

        This may also be a reference to a resource (in the form -"@[package:]type:name") or -theme attribute (in the form -"?[package:][type:]name") -containing a value of this type.

        -
        -
        See Also:
        -
        Constant Field Values
        -
        -
      • -
      - - - -
        -
      • -

        listPreferredItemHeightSmall

        -
        public static final int listPreferredItemHeightSmall
        -

        Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". -Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), -in (inches), mm (millimeters). -

        This may also be a reference to a resource (in the form -"@[package:]type:name") or -theme attribute (in the form -"?[package:][type:]name") -containing a value of this type.

        -
        -
        See Also:
        -
        Constant Field Values
        -
        -
      • -
      - - - -
        -
      • -

        listPreferredItemPaddingLeft

        -
        public static final int listPreferredItemPaddingLeft
        -

        Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". -Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), -in (inches), mm (millimeters). -

        This may also be a reference to a resource (in the form -"@[package:]type:name") or -theme attribute (in the form -"?[package:][type:]name") -containing a value of this type.

        -
        -
        See Also:
        -
        Constant Field Values
        -
        -
      • -
      - - - -
        -
      • -

        listPreferredItemPaddingRight

        -
        public static final int listPreferredItemPaddingRight
        -

        Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". -Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), -in (inches), mm (millimeters). -

        This may also be a reference to a resource (in the form -"@[package:]type:name") or -theme attribute (in the form -"?[package:][type:]name") -containing a value of this type.

        -
        -
        See Also:
        -
        Constant Field Values
        -
        -
      • -
      - - - -
        -
      • -

        logo

        -
        public static final int logo
        -

        Must be a reference to another resource, in the form "@[+][package:]type:name" -or to a theme attribute in the form "?[package:][type:]name".

        -
        -
        See Also:
        -
        Constant Field Values
        -
        -
      • -
      - - - -
        -
      • -

        logoDescription

        -
        public static final int logoDescription
        -

        Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. -

        This may also be a reference to a resource (in the form -"@[package:]type:name") or -theme attribute (in the form -"?[package:][type:]name") -containing a value of this type.

        -
        -
        See Also:
        -
        Constant Field Values
        -
        -
      • -
      - - - -
        -
      • -

        maxActionInlineWidth

        -
        public static final int maxActionInlineWidth
        -

        Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". -Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), -in (inches), mm (millimeters). -

        This may also be a reference to a resource (in the form -"@[package:]type:name") or -theme attribute (in the form -"?[package:][type:]name") -containing a value of this type.

        -
        -
        See Also:
        -
        Constant Field Values
        -
        -
      • -
      - - - -
        -
      • -

        maxButtonHeight

        -
        public static final int maxButtonHeight
        -

        Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". -Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), -in (inches), mm (millimeters). -

        This may also be a reference to a resource (in the form -"@[package:]type:name") or -theme attribute (in the form -"?[package:][type:]name") -containing a value of this type.

        -
        -
        See Also:
        -
        Constant Field Values
        -
        -
      • -
      - - - -
        -
      • -

        measureWithLargestChild

        -
        public static final int measureWithLargestChild
        -

        Must be a boolean value, either "true" or "false". -

        This may also be a reference to a resource (in the form -"@[package:]type:name") or -theme attribute (in the form -"?[package:][type:]name") -containing a value of this type.

        -
        -
        See Also:
        -
        Constant Field Values
        -
        -
      • -
      - - - -
        -
      • -

        menu

        -
        public static final int menu
        -

        Must be a reference to another resource, in the form "@[+][package:]type:name" -or to a theme attribute in the form "?[package:][type:]name".

        -
        -
        See Also:
        -
        Constant Field Values
        -
        -
      • -
      - - - -
        -
      • -

        multiChoiceItemLayout

        -
        public static final int multiChoiceItemLayout
        -

        Must be a reference to another resource, in the form "@[+][package:]type:name" -or to a theme attribute in the form "?[package:][type:]name".

        -
        -
        See Also:
        -
        Constant Field Values
        -
        -
      • -
      - - - -
        -
      • -

        navigationContentDescription

        -
        public static final int navigationContentDescription
        -

        Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. -

        This may also be a reference to a resource (in the form -"@[package:]type:name") or -theme attribute (in the form -"?[package:][type:]name") -containing a value of this type.

        -
        -
        See Also:
        -
        Constant Field Values
        -
        -
      • -
      - - - -
        -
      • -

        navigationIcon

        -
        public static final int navigationIcon
        -

        Must be a reference to another resource, in the form "@[+][package:]type:name" -or to a theme attribute in the form "?[package:][type:]name".

        -
        -
        See Also:
        -
        Constant Field Values
        -
        -
      • -
      - - - -
        -
      • -

        navigationMode

        -
        public static final int navigationMode
        -

        Must be one of the following constant values.

        - ---- - - - -
        ConstantValueDescription
        normal0
        listMode1
        tabMode2
        -
        -
        See Also:
        -
        Constant Field Values
        -
        -
      • -
      - - - -
        -
      • -

        overlapAnchor

        -
        public static final int overlapAnchor
        -

        Must be a boolean value, either "true" or "false". -

        This may also be a reference to a resource (in the form -"@[package:]type:name") or -theme attribute (in the form -"?[package:][type:]name") -containing a value of this type.

        -
        -
        See Also:
        -
        Constant Field Values
        -
        -
      • -
      - - - -
        -
      • -

        paddingBottomNoButtons

        -
        public static final int paddingBottomNoButtons
        -

        Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". -Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), -in (inches), mm (millimeters). -

        This may also be a reference to a resource (in the form -"@[package:]type:name") or -theme attribute (in the form -"?[package:][type:]name") -containing a value of this type.

        -
        -
        See Also:
        -
        Constant Field Values
        -
        -
      • -
      - - - -
        -
      • -

        paddingEnd

        -
        public static final int paddingEnd
        -

        Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". -Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), -in (inches), mm (millimeters). -

        This may also be a reference to a resource (in the form -"@[package:]type:name") or -theme attribute (in the form -"?[package:][type:]name") -containing a value of this type.

        -
        -
        See Also:
        -
        Constant Field Values
        -
        -
      • -
      - - - -
        -
      • -

        paddingStart

        -
        public static final int paddingStart
        -

        Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". -Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), -in (inches), mm (millimeters). -

        This may also be a reference to a resource (in the form -"@[package:]type:name") or -theme attribute (in the form -"?[package:][type:]name") -containing a value of this type.

        -
        -
        See Also:
        -
        Constant Field Values
        -
        -
      • -
      - - - -
        -
      • -

        paddingTopNoTitle

        -
        public static final int paddingTopNoTitle
        -

        Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". -Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), -in (inches), mm (millimeters). -

        This may also be a reference to a resource (in the form -"@[package:]type:name") or -theme attribute (in the form -"?[package:][type:]name") -containing a value of this type.

        -
        -
        See Also:
        -
        Constant Field Values
        -
        -
      • -
      - - - -
        -
      • -

        panelBackground

        -
        public static final int panelBackground
        -

        Must be a reference to another resource, in the form "@[+][package:]type:name" -or to a theme attribute in the form "?[package:][type:]name".

        -
        -
        See Also:
        -
        Constant Field Values
        -
        -
      • -
      - - - -
        -
      • -

        panelMenuListTheme

        -
        public static final int panelMenuListTheme
        -

        Must be a reference to another resource, in the form "@[+][package:]type:name" -or to a theme attribute in the form "?[package:][type:]name".

        -
        -
        See Also:
        -
        Constant Field Values
        -
        -
      • -
      - - - -
        -
      • -

        panelMenuListWidth

        -
        public static final int panelMenuListWidth
        -

        Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". -Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), -in (inches), mm (millimeters). -

        This may also be a reference to a resource (in the form -"@[package:]type:name") or -theme attribute (in the form -"?[package:][type:]name") -containing a value of this type.

        -
        -
        See Also:
        -
        Constant Field Values
        -
        -
      • -
      - - - -
        -
      • -

        passwordToggleContentDescription

        -
        public static final int passwordToggleContentDescription
        -

        Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. -

        This may also be a reference to a resource (in the form -"@[package:]type:name") or -theme attribute (in the form -"?[package:][type:]name") -containing a value of this type.

        -
        -
        See Also:
        -
        Constant Field Values
        -
        -
      • -
      - - - -
        -
      • -

        passwordToggleDrawable

        -
        public static final int passwordToggleDrawable
        -

        Must be a reference to another resource, in the form "@[+][package:]type:name" -or to a theme attribute in the form "?[package:][type:]name".

        -
        -
        See Also:
        -
        Constant Field Values
        -
        -
      • -
      - - - -
        -
      • -

        passwordToggleEnabled

        -
        public static final int passwordToggleEnabled
        -

        Must be a boolean value, either "true" or "false". -

        This may also be a reference to a resource (in the form -"@[package:]type:name") or -theme attribute (in the form -"?[package:][type:]name") -containing a value of this type.

        -
        -
        See Also:
        -
        Constant Field Values
        -
        -
      • -
      - - - -
        -
      • -

        passwordToggleTint

        -
        public static final int passwordToggleTint
        -

        Must be a color value, in the form of "#rgb", "#argb", -"#rrggbb", or "#aarrggbb". -

        This may also be a reference to a resource (in the form -"@[package:]type:name") or -theme attribute (in the form -"?[package:][type:]name") -containing a value of this type.

        -
        -
        See Also:
        -
        Constant Field Values
        -
        -
      • -
      - - - -
        -
      • -

        passwordToggleTintMode

        -
        public static final int passwordToggleTintMode
        -

        Must be one of the following constant values.

        - ---- - - - - - -
        ConstantValueDescription
        src_over3
        src_in5
        src_atop9
        multiply14
        screen15
        -
        -
        See Also:
        -
        Constant Field Values
        -
        -
      • -
      - - - -
        -
      • -

        popupMenuStyle

        -
        public static final int popupMenuStyle
        -

        Must be a reference to another resource, in the form "@[+][package:]type:name" -or to a theme attribute in the form "?[package:][type:]name".

        -
        -
        See Also:
        -
        Constant Field Values
        -
        -
      • -
      - - - -
        -
      • -

        popupTheme

        -
        public static final int popupTheme
        -

        Must be a reference to another resource, in the form "@[+][package:]type:name" -or to a theme attribute in the form "?[package:][type:]name".

        -
        -
        See Also:
        -
        Constant Field Values
        -
        -
      • -
      - - - -
        -
      • -

        popupWindowStyle

        -
        public static final int popupWindowStyle
        -

        Must be a reference to another resource, in the form "@[+][package:]type:name" -or to a theme attribute in the form "?[package:][type:]name".

        -
        -
        See Also:
        -
        Constant Field Values
        -
        -
      • -
      - - - -
        -
      • -

        preserveIconSpacing

        -
        public static final int preserveIconSpacing
        -

        Must be a boolean value, either "true" or "false". -

        This may also be a reference to a resource (in the form -"@[package:]type:name") or -theme attribute (in the form -"?[package:][type:]name") -containing a value of this type.

        -
        -
        See Also:
        -
        Constant Field Values
        -
        -
      • -
      - - - -
        -
      • -

        pressedTranslationZ

        -
        public static final int pressedTranslationZ
        -

        Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". -Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), -in (inches), mm (millimeters). -

        This may also be a reference to a resource (in the form -"@[package:]type:name") or -theme attribute (in the form -"?[package:][type:]name") -containing a value of this type.

        -
        -
        See Also:
        -
        Constant Field Values
        -
        -
      • -
      - - - -
        -
      • -

        progressBarPadding

        -
        public static final int progressBarPadding
        -

        Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". -Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), -in (inches), mm (millimeters). -

        This may also be a reference to a resource (in the form -"@[package:]type:name") or -theme attribute (in the form -"?[package:][type:]name") -containing a value of this type.

        -
        -
        See Also:
        -
        Constant Field Values
        -
        -
      • -
      - - - -
        -
      • -

        progressBarStyle

        -
        public static final int progressBarStyle
        -

        Must be a reference to another resource, in the form "@[+][package:]type:name" -or to a theme attribute in the form "?[package:][type:]name".

        -
        -
        See Also:
        -
        Constant Field Values
        -
        -
      • -
      - - - -
        -
      • -

        queryBackground

        -
        public static final int queryBackground
        -

        Must be a reference to another resource, in the form "@[+][package:]type:name" -or to a theme attribute in the form "?[package:][type:]name".

        -
        -
        See Also:
        -
        Constant Field Values
        -
        -
      • -
      - - - -
        -
      • -

        queryHint

        -
        public static final int queryHint
        -

        Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. -

        This may also be a reference to a resource (in the form -"@[package:]type:name") or -theme attribute (in the form -"?[package:][type:]name") -containing a value of this type.

        -
        -
        See Also:
        -
        Constant Field Values
        -
        -
      • -
      - - - -
        -
      • -

        radioButtonStyle

        -
        public static final int radioButtonStyle
        -

        Must be a reference to another resource, in the form "@[+][package:]type:name" -or to a theme attribute in the form "?[package:][type:]name".

        -
        -
        See Also:
        -
        Constant Field Values
        -
        -
      • -
      - - - -
        -
      • -

        ratingBarStyle

        -
        public static final int ratingBarStyle
        -

        Must be a reference to another resource, in the form "@[+][package:]type:name" -or to a theme attribute in the form "?[package:][type:]name".

        -
        -
        See Also:
        -
        Constant Field Values
        -
        -
      • -
      - - - -
        -
      • -

        ratingBarStyleIndicator

        -
        public static final int ratingBarStyleIndicator
        -

        Must be a reference to another resource, in the form "@[+][package:]type:name" -or to a theme attribute in the form "?[package:][type:]name".

        -
        -
        See Also:
        -
        Constant Field Values
        -
        -
      • -
      - - - -
        -
      • -

        ratingBarStyleSmall

        -
        public static final int ratingBarStyleSmall
        -

        Must be a reference to another resource, in the form "@[+][package:]type:name" -or to a theme attribute in the form "?[package:][type:]name".

        -
        -
        See Also:
        -
        Constant Field Values
        -
        -
      • -
      - - - -
        -
      • -

        reverseLayout

        -
        public static final int reverseLayout
        -

        Must be a boolean value, either "true" or "false". -

        This may also be a reference to a resource (in the form -"@[package:]type:name") or -theme attribute (in the form -"?[package:][type:]name") -containing a value of this type.

        -
        -
        See Also:
        -
        Constant Field Values
        -
        -
      • -
      - - - -
        -
      • -

        rippleColor

        -
        public static final int rippleColor
        -

        Must be a color value, in the form of "#rgb", "#argb", -"#rrggbb", or "#aarrggbb". -

        This may also be a reference to a resource (in the form -"@[package:]type:name") or -theme attribute (in the form -"?[package:][type:]name") -containing a value of this type.

        -
        -
        See Also:
        -
        Constant Field Values
        -
        -
      • -
      - - - -
        -
      • -

        scrimAnimationDuration

        -
        public static final int scrimAnimationDuration
        -

        Must be an integer value, such as "100". -

        This may also be a reference to a resource (in the form -"@[package:]type:name") or -theme attribute (in the form -"?[package:][type:]name") -containing a value of this type.

        -
        -
        See Also:
        -
        Constant Field Values
        -
        -
      • -
      - - - -
        -
      • -

        scrimVisibleHeightTrigger

        -
        public static final int scrimVisibleHeightTrigger
        -

        Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". -Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), -in (inches), mm (millimeters). -

        This may also be a reference to a resource (in the form -"@[package:]type:name") or -theme attribute (in the form -"?[package:][type:]name") -containing a value of this type.

        -
        -
        See Also:
        -
        Constant Field Values
        -
        -
      • -
      - - - -
        -
      • -

        searchHintIcon

        -
        public static final int searchHintIcon
        -

        Must be a reference to another resource, in the form "@[+][package:]type:name" -or to a theme attribute in the form "?[package:][type:]name".

        -
        -
        See Also:
        -
        Constant Field Values
        -
        -
      • -
      - - - -
        -
      • -

        searchIcon

        -
        public static final int searchIcon
        -

        Must be a reference to another resource, in the form "@[+][package:]type:name" -or to a theme attribute in the form "?[package:][type:]name".

        -
        -
        See Also:
        -
        Constant Field Values
        -
        -
      • -
      - - - -
        -
      • -

        searchViewStyle

        -
        public static final int searchViewStyle
        -

        Must be a reference to another resource, in the form "@[+][package:]type:name" -or to a theme attribute in the form "?[package:][type:]name".

        -
        -
        See Also:
        -
        Constant Field Values
        -
        -
      • -
      - - - -
        -
      • -

        seekBarStyle

        -
        public static final int seekBarStyle
        -

        Must be a reference to another resource, in the form "@[+][package:]type:name" -or to a theme attribute in the form "?[package:][type:]name".

        -
        -
        See Also:
        -
        Constant Field Values
        -
        -
      • -
      - - - -
        -
      • -

        selectableItemBackground

        -
        public static final int selectableItemBackground
        -

        Must be a reference to another resource, in the form "@[+][package:]type:name" -or to a theme attribute in the form "?[package:][type:]name".

        -
        -
        See Also:
        -
        Constant Field Values
        -
        -
      • -
      - - - -
        -
      • -

        selectableItemBackgroundBorderless

        -
        public static final int selectableItemBackgroundBorderless
        -

        Must be a reference to another resource, in the form "@[+][package:]type:name" -or to a theme attribute in the form "?[package:][type:]name".

        -
        -
        See Also:
        -
        Constant Field Values
        -
        -
      • -
      - - - -
        -
      • -

        showAsAction

        -
        public static final int showAsAction
        -

        Must be one or more (separated by '|') of the following constant values.

        - ---- - - - - - -
        ConstantValueDescription
        never0
        ifRoom1
        always2
        withText4
        collapseActionView8
        -
        -
        See Also:
        -
        Constant Field Values
        -
        -
      • -
      - - - -
        -
      • -

        showDividers

        -
        public static final int showDividers
        -

        Must be one or more (separated by '|') of the following constant values.

        - ---- - - - - -
        ConstantValueDescription
        none0
        beginning1
        middle2
        end4
        -
        -
        See Also:
        -
        Constant Field Values
        -
        -
      • -
      - - - -
        -
      • -

        showText

        -
        public static final int showText
        -

        Must be a boolean value, either "true" or "false". -

        This may also be a reference to a resource (in the form -"@[package:]type:name") or -theme attribute (in the form -"?[package:][type:]name") -containing a value of this type.

        -
        -
        See Also:
        -
        Constant Field Values
        -
        -
      • -
      - - - -
        -
      • -

        showTitle

        -
        public static final int showTitle
        -

        Must be a boolean value, either "true" or "false". -

        This may also be a reference to a resource (in the form -"@[package:]type:name") or -theme attribute (in the form -"?[package:][type:]name") -containing a value of this type.

        -
        -
        See Also:
        -
        Constant Field Values
        -
        -
      • -
      - - - -
        -
      • -

        singleChoiceItemLayout

        -
        public static final int singleChoiceItemLayout
        -

        Must be a reference to another resource, in the form "@[+][package:]type:name" -or to a theme attribute in the form "?[package:][type:]name".

        -
        -
        See Also:
        -
        Constant Field Values
        -
        -
      • -
      - - - -
        -
      • -

        spanCount

        -
        public static final int spanCount
        -

        Must be an integer value, such as "100". -

        This may also be a reference to a resource (in the form -"@[package:]type:name") or -theme attribute (in the form -"?[package:][type:]name") -containing a value of this type.

        -
        -
        See Also:
        -
        Constant Field Values
        -
        -
      • -
      - - - -
        -
      • -

        spinBars

        -
        public static final int spinBars
        -

        Must be a boolean value, either "true" or "false". -

        This may also be a reference to a resource (in the form -"@[package:]type:name") or -theme attribute (in the form -"?[package:][type:]name") -containing a value of this type.

        -
        -
        See Also:
        -
        Constant Field Values
        -
        -
      • -
      - - - -
        -
      • -

        spinnerDropDownItemStyle

        -
        public static final int spinnerDropDownItemStyle
        -

        Must be a reference to another resource, in the form "@[+][package:]type:name" -or to a theme attribute in the form "?[package:][type:]name".

        -
        -
        See Also:
        -
        Constant Field Values
        -
        -
      • -
      - - - -
        -
      • -

        spinnerStyle

        -
        public static final int spinnerStyle
        -

        Must be a reference to another resource, in the form "@[+][package:]type:name" -or to a theme attribute in the form "?[package:][type:]name".

        -
        -
        See Also:
        -
        Constant Field Values
        -
        -
      • -
      - - - -
        -
      • -

        splitTrack

        -
        public static final int splitTrack
        -

        Must be a boolean value, either "true" or "false". -

        This may also be a reference to a resource (in the form -"@[package:]type:name") or -theme attribute (in the form -"?[package:][type:]name") -containing a value of this type.

        -
        -
        See Also:
        -
        Constant Field Values
        -
        -
      • -
      - - - -
        -
      • -

        srcCompat

        -
        public static final int srcCompat
        -

        Must be a reference to another resource, in the form "@[+][package:]type:name" -or to a theme attribute in the form "?[package:][type:]name".

        -
        -
        See Also:
        -
        Constant Field Values
        -
        -
      • -
      - - - -
        -
      • -

        stackFromEnd

        -
        public static final int stackFromEnd
        -

        Must be a boolean value, either "true" or "false". -

        This may also be a reference to a resource (in the form -"@[package:]type:name") or -theme attribute (in the form -"?[package:][type:]name") -containing a value of this type.

        -
        -
        See Also:
        -
        Constant Field Values
        -
        -
      • -
      - - - -
        -
      • -

        state_above_anchor

        -
        public static final int state_above_anchor
        -

        Must be a boolean value, either "true" or "false". -

        This may also be a reference to a resource (in the form -"@[package:]type:name") or -theme attribute (in the form -"?[package:][type:]name") -containing a value of this type.

        -
        -
        See Also:
        -
        Constant Field Values
        -
        -
      • -
      - - - -
        -
      • -

        state_collapsed

        -
        public static final int state_collapsed
        -

        Must be a boolean value, either "true" or "false". -

        This may also be a reference to a resource (in the form -"@[package:]type:name") or -theme attribute (in the form -"?[package:][type:]name") -containing a value of this type.

        -
        -
        See Also:
        -
        Constant Field Values
        -
        -
      • -
      - - - -
        -
      • -

        state_collapsible

        -
        public static final int state_collapsible
        -

        Must be a boolean value, either "true" or "false". -

        This may also be a reference to a resource (in the form -"@[package:]type:name") or -theme attribute (in the form -"?[package:][type:]name") -containing a value of this type.

        -
        -
        See Also:
        -
        Constant Field Values
        -
        -
      • -
      - - - -
        -
      • -

        statusBarBackground

        -
        public static final int statusBarBackground
        -

        Must be a reference to another resource, in the form "@[+][package:]type:name" -or to a theme attribute in the form "?[package:][type:]name".

        -
        -
        See Also:
        -
        Constant Field Values
        -
        -
      • -
      - - - -
        -
      • -

        statusBarScrim

        -
        public static final int statusBarScrim
        -

        Must be a color value, in the form of "#rgb", "#argb", -"#rrggbb", or "#aarrggbb". -

        This may also be a reference to a resource (in the form -"@[package:]type:name") or -theme attribute (in the form -"?[package:][type:]name") -containing a value of this type.

        -
        -
        See Also:
        -
        Constant Field Values
        -
        -
      • -
      - - - -
        -
      • -

        subMenuArrow

        -
        public static final int subMenuArrow
        -

        Must be a reference to another resource, in the form "@[+][package:]type:name" -or to a theme attribute in the form "?[package:][type:]name".

        -
        -
        See Also:
        -
        Constant Field Values
        -
        -
      • -
      - - - -
        -
      • -

        submitBackground

        -
        public static final int submitBackground
        -

        Must be a reference to another resource, in the form "@[+][package:]type:name" -or to a theme attribute in the form "?[package:][type:]name".

        -
        -
        See Also:
        -
        Constant Field Values
        -
        -
      • -
      - - - -
        -
      • -

        subtitle

        -
        public static final int subtitle
        -

        Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. -

        This may also be a reference to a resource (in the form -"@[package:]type:name") or -theme attribute (in the form -"?[package:][type:]name") -containing a value of this type.

        -
        -
        See Also:
        -
        Constant Field Values
        -
        -
      • -
      - - - -
        -
      • -

        subtitleTextAppearance

        -
        public static final int subtitleTextAppearance
        -

        Must be a reference to another resource, in the form "@[+][package:]type:name" -or to a theme attribute in the form "?[package:][type:]name".

        -
        -
        See Also:
        -
        Constant Field Values
        -
        -
      • -
      - - - -
        -
      • -

        subtitleTextColor

        -
        public static final int subtitleTextColor
        -

        Must be a color value, in the form of "#rgb", "#argb", -"#rrggbb", or "#aarrggbb". -

        This may also be a reference to a resource (in the form -"@[package:]type:name") or -theme attribute (in the form -"?[package:][type:]name") -containing a value of this type.

        -
        -
        See Also:
        -
        Constant Field Values
        -
        -
      • -
      - - - -
        -
      • -

        subtitleTextStyle

        -
        public static final int subtitleTextStyle
        -

        Must be a reference to another resource, in the form "@[+][package:]type:name" -or to a theme attribute in the form "?[package:][type:]name".

        -
        -
        See Also:
        -
        Constant Field Values
        -
        -
      • -
      - - - -
        -
      • -

        suggestionRowLayout

        -
        public static final int suggestionRowLayout
        -

        Must be a reference to another resource, in the form "@[+][package:]type:name" -or to a theme attribute in the form "?[package:][type:]name".

        -
        -
        See Also:
        -
        Constant Field Values
        -
        -
      • -
      - - - -
        -
      • -

        switchMinWidth

        -
        public static final int switchMinWidth
        -

        Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". -Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), -in (inches), mm (millimeters). -

        This may also be a reference to a resource (in the form -"@[package:]type:name") or -theme attribute (in the form -"?[package:][type:]name") -containing a value of this type.

        -
        -
        See Also:
        -
        Constant Field Values
        -
        -
      • -
      - - - -
        -
      • -

        switchPadding

        -
        public static final int switchPadding
        -

        Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". -Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), -in (inches), mm (millimeters). -

        This may also be a reference to a resource (in the form -"@[package:]type:name") or -theme attribute (in the form -"?[package:][type:]name") -containing a value of this type.

        -
        -
        See Also:
        -
        Constant Field Values
        -
        -
      • -
      - - - -
        -
      • -

        switchStyle

        -
        public static final int switchStyle
        -

        Must be a reference to another resource, in the form "@[+][package:]type:name" -or to a theme attribute in the form "?[package:][type:]name".

        -
        -
        See Also:
        -
        Constant Field Values
        -
        -
      • -
      - - - -
        -
      • -

        switchTextAppearance

        -
        public static final int switchTextAppearance
        -

        Must be a reference to another resource, in the form "@[+][package:]type:name" -or to a theme attribute in the form "?[package:][type:]name".

        -
        -
        See Also:
        -
        Constant Field Values
        -
        -
      • -
      - - - -
        -
      • -

        tabBackground

        -
        public static final int tabBackground
        -

        Must be a reference to another resource, in the form "@[+][package:]type:name" -or to a theme attribute in the form "?[package:][type:]name".

        -
        -
        See Also:
        -
        Constant Field Values
        -
        -
      • -
      - - - -
        -
      • -

        tabContentStart

        -
        public static final int tabContentStart
        -

        Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". -Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), -in (inches), mm (millimeters). -

        This may also be a reference to a resource (in the form -"@[package:]type:name") or -theme attribute (in the form -"?[package:][type:]name") -containing a value of this type.

        -
        -
        See Also:
        -
        Constant Field Values
        -
        -
      • -
      - - - -
        -
      • -

        tabGravity

        -
        public static final int tabGravity
        -

        Must be one of the following constant values.

        - ---- - - -
        ConstantValueDescription
        fill0
        center1
        -
        -
        See Also:
        -
        Constant Field Values
        -
        -
      • -
      - - - -
        -
      • -

        tabIndicatorColor

        -
        public static final int tabIndicatorColor
        -

        Must be a color value, in the form of "#rgb", "#argb", -"#rrggbb", or "#aarrggbb". -

        This may also be a reference to a resource (in the form -"@[package:]type:name") or -theme attribute (in the form -"?[package:][type:]name") -containing a value of this type.

        -
        -
        See Also:
        -
        Constant Field Values
        -
        -
      • -
      - - - -
        -
      • -

        tabIndicatorHeight

        -
        public static final int tabIndicatorHeight
        -

        Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". -Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), -in (inches), mm (millimeters). -

        This may also be a reference to a resource (in the form -"@[package:]type:name") or -theme attribute (in the form -"?[package:][type:]name") -containing a value of this type.

        -
        -
        See Also:
        -
        Constant Field Values
        -
        -
      • -
      - - - -
        -
      • -

        tabMaxWidth

        -
        public static final int tabMaxWidth
        -

        Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". -Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), -in (inches), mm (millimeters). -

        This may also be a reference to a resource (in the form -"@[package:]type:name") or -theme attribute (in the form -"?[package:][type:]name") -containing a value of this type.

        -
        -
        See Also:
        -
        Constant Field Values
        -
        -
      • -
      - - - -
        -
      • -

        tabMinWidth

        -
        public static final int tabMinWidth
        -

        Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". -Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), -in (inches), mm (millimeters). -

        This may also be a reference to a resource (in the form -"@[package:]type:name") or -theme attribute (in the form -"?[package:][type:]name") -containing a value of this type.

        -
        -
        See Also:
        -
        Constant Field Values
        -
        -
      • -
      - - - -
        -
      • -

        tabMode

        -
        public static final int tabMode
        -

        Must be one of the following constant values.

        - ---- - - -
        ConstantValueDescription
        scrollable0
        fixed1
        -
        -
        See Also:
        -
        Constant Field Values
        -
        -
      • -
      - - - -
        -
      • -

        tabPadding

        -
        public static final int tabPadding
        -

        Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". -Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), -in (inches), mm (millimeters). -

        This may also be a reference to a resource (in the form -"@[package:]type:name") or -theme attribute (in the form -"?[package:][type:]name") -containing a value of this type.

        -
        -
        See Also:
        -
        Constant Field Values
        -
        -
      • -
      - - - -
        -
      • -

        tabPaddingBottom

        -
        public static final int tabPaddingBottom
        -

        Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". -Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), -in (inches), mm (millimeters). -

        This may also be a reference to a resource (in the form -"@[package:]type:name") or -theme attribute (in the form -"?[package:][type:]name") -containing a value of this type.

        -
        -
        See Also:
        -
        Constant Field Values
        -
        -
      • -
      - - - -
        -
      • -

        tabPaddingEnd

        -
        public static final int tabPaddingEnd
        -

        Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". -Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), -in (inches), mm (millimeters). -

        This may also be a reference to a resource (in the form -"@[package:]type:name") or -theme attribute (in the form -"?[package:][type:]name") -containing a value of this type.

        -
        -
        See Also:
        -
        Constant Field Values
        -
        -
      • -
      - - - -
        -
      • -

        tabPaddingStart

        -
        public static final int tabPaddingStart
        -

        Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". -Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), -in (inches), mm (millimeters). -

        This may also be a reference to a resource (in the form -"@[package:]type:name") or -theme attribute (in the form -"?[package:][type:]name") -containing a value of this type.

        -
        -
        See Also:
        -
        Constant Field Values
        -
        -
      • -
      - - - -
        -
      • -

        tabPaddingTop

        -
        public static final int tabPaddingTop
        -

        Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". -Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), -in (inches), mm (millimeters). -

        This may also be a reference to a resource (in the form -"@[package:]type:name") or -theme attribute (in the form -"?[package:][type:]name") -containing a value of this type.

        -
        -
        See Also:
        -
        Constant Field Values
        -
        -
      • -
      - - - -
        -
      • -

        tabSelectedTextColor

        -
        public static final int tabSelectedTextColor
        -

        Must be a color value, in the form of "#rgb", "#argb", -"#rrggbb", or "#aarrggbb". -

        This may also be a reference to a resource (in the form -"@[package:]type:name") or -theme attribute (in the form -"?[package:][type:]name") -containing a value of this type.

        -
        -
        See Also:
        -
        Constant Field Values
        -
        -
      • -
      - - - -
        -
      • -

        tabTextAppearance

        -
        public static final int tabTextAppearance
        -

        Must be a reference to another resource, in the form "@[+][package:]type:name" -or to a theme attribute in the form "?[package:][type:]name".

        -
        -
        See Also:
        -
        Constant Field Values
        -
        -
      • -
      - - - -
        -
      • -

        tabTextColor

        -
        public static final int tabTextColor
        -

        Must be a color value, in the form of "#rgb", "#argb", -"#rrggbb", or "#aarrggbb". -

        This may also be a reference to a resource (in the form -"@[package:]type:name") or -theme attribute (in the form -"?[package:][type:]name") -containing a value of this type.

        -
        -
        See Also:
        -
        Constant Field Values
        -
        -
      • -
      - - - -
        -
      • -

        textAllCaps

        -
        public static final int textAllCaps
        -

        May be a reference to another resource, in the form "@[+][package:]type:name" -or to a theme attribute in the form "?[package:][type:]name". -

        May be a boolean value, either "true" or "false".

        -
        -
        See Also:
        -
        Constant Field Values
        -
        -
      • -
      - - - -
        -
      • -

        textAppearanceLargePopupMenu

        -
        public static final int textAppearanceLargePopupMenu
        -

        Must be a reference to another resource, in the form "@[+][package:]type:name" -or to a theme attribute in the form "?[package:][type:]name".

        -
        -
        See Also:
        -
        Constant Field Values
        -
        -
      • -
      - - - -
        -
      • -

        textAppearanceListItem

        -
        public static final int textAppearanceListItem
        -

        Must be a reference to another resource, in the form "@[+][package:]type:name" -or to a theme attribute in the form "?[package:][type:]name".

        -
        -
        See Also:
        -
        Constant Field Values
        -
        -
      • -
      - - - -
        -
      • -

        textAppearanceListItemSecondary

        -
        public static final int textAppearanceListItemSecondary
        -

        Must be a reference to another resource, in the form "@[+][package:]type:name" -or to a theme attribute in the form "?[package:][type:]name".

        -
        -
        See Also:
        -
        Constant Field Values
        -
        -
      • -
      - - - -
        -
      • -

        textAppearanceListItemSmall

        -
        public static final int textAppearanceListItemSmall
        -

        Must be a reference to another resource, in the form "@[+][package:]type:name" -or to a theme attribute in the form "?[package:][type:]name".

        -
        -
        See Also:
        -
        Constant Field Values
        -
        -
      • -
      - - - -
        -
      • -

        textAppearancePopupMenuHeader

        -
        public static final int textAppearancePopupMenuHeader
        -

        Must be a reference to another resource, in the form "@[+][package:]type:name" -or to a theme attribute in the form "?[package:][type:]name".

        -
        -
        See Also:
        -
        Constant Field Values
        -
        -
      • -
      - - - -
        -
      • -

        textAppearanceSearchResultSubtitle

        -
        public static final int textAppearanceSearchResultSubtitle
        -

        Must be a reference to another resource, in the form "@[+][package:]type:name" -or to a theme attribute in the form "?[package:][type:]name".

        -
        -
        See Also:
        -
        Constant Field Values
        -
        -
      • -
      - - - -
        -
      • -

        textAppearanceSearchResultTitle

        -
        public static final int textAppearanceSearchResultTitle
        -

        Must be a reference to another resource, in the form "@[+][package:]type:name" -or to a theme attribute in the form "?[package:][type:]name".

        -
        -
        See Also:
        -
        Constant Field Values
        -
        -
      • -
      - - - -
        -
      • -

        textAppearanceSmallPopupMenu

        -
        public static final int textAppearanceSmallPopupMenu
        -

        Must be a reference to another resource, in the form "@[+][package:]type:name" -or to a theme attribute in the form "?[package:][type:]name".

        -
        -
        See Also:
        -
        Constant Field Values
        -
        -
      • -
      - - - -
        -
      • -

        textColorAlertDialogListItem

        -
        public static final int textColorAlertDialogListItem
        -

        May be a reference to another resource, in the form "@[+][package:]type:name" -or to a theme attribute in the form "?[package:][type:]name". -

        May be a color value, in the form of "#rgb", "#argb", -"#rrggbb", or "#aarrggbb".

        -
        -
        See Also:
        -
        Constant Field Values
        -
        -
      • -
      - - - -
        -
      • -

        textColorError

        -
        public static final int textColorError
        -

        Must be a color value, in the form of "#rgb", "#argb", -"#rrggbb", or "#aarrggbb". -

        This may also be a reference to a resource (in the form -"@[package:]type:name") or -theme attribute (in the form -"?[package:][type:]name") -containing a value of this type.

        -
        -
        See Also:
        -
        Constant Field Values
        -
        -
      • -
      - - - -
        -
      • -

        textColorSearchUrl

        -
        public static final int textColorSearchUrl
        -

        May be a reference to another resource, in the form "@[+][package:]type:name" -or to a theme attribute in the form "?[package:][type:]name". -

        May be a color value, in the form of "#rgb", "#argb", -"#rrggbb", or "#aarrggbb".

        -
        -
        See Also:
        -
        Constant Field Values
        -
        -
      • -
      - - - -
        -
      • -

        texts

        -
        public static final int texts
        -

        Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. -

        This may also be a reference to a resource (in the form -"@[package:]type:name") or -theme attribute (in the form -"?[package:][type:]name") -containing a value of this type.

        -
        -
        See Also:
        -
        Constant Field Values
        -
        -
      • -
      - - - -
        -
      • -

        theme

        -
        public static final int theme
        -

        Must be a reference to another resource, in the form "@[+][package:]type:name" -or to a theme attribute in the form "?[package:][type:]name".

        -
        -
        See Also:
        -
        Constant Field Values
        -
        -
      • -
      - - - -
        -
      • -

        thickness

        -
        public static final int thickness
        -

        Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". -Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), -in (inches), mm (millimeters). -

        This may also be a reference to a resource (in the form -"@[package:]type:name") or -theme attribute (in the form -"?[package:][type:]name") -containing a value of this type.

        -
        -
        See Also:
        -
        Constant Field Values
        -
        -
      • -
      - - - -
        -
      • -

        thumbTextPadding

        -
        public static final int thumbTextPadding
        -

        Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". -Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), -in (inches), mm (millimeters). -

        This may also be a reference to a resource (in the form -"@[package:]type:name") or -theme attribute (in the form -"?[package:][type:]name") -containing a value of this type.

        -
        -
        See Also:
        -
        Constant Field Values
        -
        -
      • -
      - - - -
        -
      • -

        thumbTint

        -
        public static final int thumbTint
        -

        Must be a color value, in the form of "#rgb", "#argb", -"#rrggbb", or "#aarrggbb". -

        This may also be a reference to a resource (in the form -"@[package:]type:name") or -theme attribute (in the form -"?[package:][type:]name") -containing a value of this type.

        -
        -
        See Also:
        -
        Constant Field Values
        -
        -
      • -
      - - - -
        -
      • -

        thumbTintMode

        -
        public static final int thumbTintMode
        -

        Must be one of the following constant values.

        - ---- - - - - - - -
        ConstantValueDescription
        src_over3
        src_in5
        src_atop9
        multiply14
        screen15
        add16
        -
        -
        See Also:
        -
        Constant Field Values
        -
        -
      • -
      - - - -
        -
      • -

        tickMark

        -
        public static final int tickMark
        -

        Must be a reference to another resource, in the form "@[+][package:]type:name" -or to a theme attribute in the form "?[package:][type:]name".

        -
        -
        See Also:
        -
        Constant Field Values
        -
        -
      • -
      - - - -
        -
      • -

        tickMarkTint

        -
        public static final int tickMarkTint
        -

        Must be a color value, in the form of "#rgb", "#argb", -"#rrggbb", or "#aarrggbb". -

        This may also be a reference to a resource (in the form -"@[package:]type:name") or -theme attribute (in the form -"?[package:][type:]name") -containing a value of this type.

        -
        -
        See Also:
        -
        Constant Field Values
        -
        -
      • -
      - - - -
        -
      • -

        tickMarkTintMode

        -
        public static final int tickMarkTintMode
        -

        Must be one of the following constant values.

        - ---- - - - - - - -
        ConstantValueDescription
        src_over3
        src_in5
        src_atop9
        multiply14
        screen15
        add16
        -
        -
        See Also:
        -
        Constant Field Values
        -
        -
      • -
      - - - -
        -
      • -

        timeout

        -
        public static final int timeout
        -

        Must be an integer value, such as "100". -

        This may also be a reference to a resource (in the form -"@[package:]type:name") or -theme attribute (in the form -"?[package:][type:]name") -containing a value of this type.

        -
        -
        See Also:
        -
        Constant Field Values
        -
        -
      • -
      - - - -
        -
      • -

        tint

        -
        public static final int tint
        -

        Must be a color value, in the form of "#rgb", "#argb", -"#rrggbb", or "#aarrggbb". -

        This may also be a reference to a resource (in the form -"@[package:]type:name") or -theme attribute (in the form -"?[package:][type:]name") -containing a value of this type.

        -
        -
        See Also:
        -
        Constant Field Values
        -
        -
      • -
      - - - -
        -
      • -

        tintMode

        -
        public static final int tintMode
        -

        Must be one of the following constant values.

        - ---- - - - - - -
        ConstantValueDescription
        src_over3
        src_in5
        src_atop9
        multiply14
        screen15
        -
        -
        See Also:
        -
        Constant Field Values
        -
        -
      • -
      - - - -
        -
      • -

        title

        -
        public static final int title
        -

        Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. -

        This may also be a reference to a resource (in the form -"@[package:]type:name") or -theme attribute (in the form -"?[package:][type:]name") -containing a value of this type.

        -
        -
        See Also:
        -
        Constant Field Values
        -
        -
      • -
      - - - -
        -
      • -

        titleEnabled

        -
        public static final int titleEnabled
        -

        Must be a boolean value, either "true" or "false". -

        This may also be a reference to a resource (in the form -"@[package:]type:name") or -theme attribute (in the form -"?[package:][type:]name") -containing a value of this type.

        -
        -
        See Also:
        -
        Constant Field Values
        -
        -
      • -
      - - - -
        -
      • -

        titleMargin

        -
        public static final int titleMargin
        -

        Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". -Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), -in (inches), mm (millimeters). -

        This may also be a reference to a resource (in the form -"@[package:]type:name") or -theme attribute (in the form -"?[package:][type:]name") -containing a value of this type.

        -
        -
        See Also:
        -
        Constant Field Values
        -
        -
      • -
      - - - -
        -
      • -

        titleMarginBottom

        -
        public static final int titleMarginBottom
        -

        Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". -Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), -in (inches), mm (millimeters). -

        This may also be a reference to a resource (in the form -"@[package:]type:name") or -theme attribute (in the form -"?[package:][type:]name") -containing a value of this type.

        -
        -
        See Also:
        -
        Constant Field Values
        -
        -
      • -
      - - - -
        -
      • -

        titleMarginEnd

        -
        public static final int titleMarginEnd
        -

        Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". -Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), -in (inches), mm (millimeters). -

        This may also be a reference to a resource (in the form -"@[package:]type:name") or -theme attribute (in the form -"?[package:][type:]name") -containing a value of this type.

        -
        -
        See Also:
        -
        Constant Field Values
        -
        -
      • -
      - - - -
        -
      • -

        titleMarginStart

        -
        public static final int titleMarginStart
        -

        Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". -Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), -in (inches), mm (millimeters). -

        This may also be a reference to a resource (in the form -"@[package:]type:name") or -theme attribute (in the form -"?[package:][type:]name") -containing a value of this type.

        -
        -
        See Also:
        -
        Constant Field Values
        -
        -
      • -
      - - - -
        -
      • -

        titleMarginTop

        -
        public static final int titleMarginTop
        -

        Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". -Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), -in (inches), mm (millimeters). -

        This may also be a reference to a resource (in the form -"@[package:]type:name") or -theme attribute (in the form -"?[package:][type:]name") -containing a value of this type.

        -
        -
        See Also:
        -
        Constant Field Values
        -
        -
      • -
      - - - -
        -
      • -

        titleMargins

        -
        public static final int titleMargins
        -

        Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". -Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), -in (inches), mm (millimeters). -

        This may also be a reference to a resource (in the form -"@[package:]type:name") or -theme attribute (in the form -"?[package:][type:]name") -containing a value of this type.

        -
        -
        See Also:
        -
        Constant Field Values
        -
        -
      • -
      - - - -
        -
      • -

        titleTextAppearance

        -
        public static final int titleTextAppearance
        -

        Must be a reference to another resource, in the form "@[+][package:]type:name" -or to a theme attribute in the form "?[package:][type:]name".

        -
        -
        See Also:
        -
        Constant Field Values
        -
        -
      • -
      - - - -
        -
      • -

        titleTextColor

        -
        public static final int titleTextColor
        -

        Must be a color value, in the form of "#rgb", "#argb", -"#rrggbb", or "#aarrggbb". -

        This may also be a reference to a resource (in the form -"@[package:]type:name") or -theme attribute (in the form -"?[package:][type:]name") -containing a value of this type.

        -
        -
        See Also:
        -
        Constant Field Values
        -
        -
      • -
      - - - -
        -
      • -

        titleTextStyle

        -
        public static final int titleTextStyle
        -

        Must be a reference to another resource, in the form "@[+][package:]type:name" -or to a theme attribute in the form "?[package:][type:]name".

        -
        -
        See Also:
        -
        Constant Field Values
        -
        -
      • -
      - - - -
        -
      • -

        toolbarId

        -
        public static final int toolbarId
        -

        Must be a reference to another resource, in the form "@[+][package:]type:name" -or to a theme attribute in the form "?[package:][type:]name".

        -
        -
        See Also:
        -
        Constant Field Values
        -
        -
      • -
      - - - -
        -
      • -

        toolbarNavigationButtonStyle

        -
        public static final int toolbarNavigationButtonStyle
        -

        Must be a reference to another resource, in the form "@[+][package:]type:name" -or to a theme attribute in the form "?[package:][type:]name".

        -
        -
        See Also:
        -
        Constant Field Values
        -
        -
      • -
      - - - -
        -
      • -

        toolbarStyle

        -
        public static final int toolbarStyle
        -

        Must be a reference to another resource, in the form "@[+][package:]type:name" -or to a theme attribute in the form "?[package:][type:]name".

        -
        -
        See Also:
        -
        Constant Field Values
        -
        -
      • -
      - - - -
        -
      • -

        track

        -
        public static final int track
        -

        Must be a reference to another resource, in the form "@[+][package:]type:name" -or to a theme attribute in the form "?[package:][type:]name".

        -
        -
        See Also:
        -
        Constant Field Values
        -
        -
      • -
      - - - -
        -
      • -

        trackTint

        -
        public static final int trackTint
        -

        Must be a color value, in the form of "#rgb", "#argb", -"#rrggbb", or "#aarrggbb". -

        This may also be a reference to a resource (in the form -"@[package:]type:name") or -theme attribute (in the form -"?[package:][type:]name") -containing a value of this type.

        -
        -
        See Also:
        -
        Constant Field Values
        -
        -
      • -
      - - - -
        -
      • -

        trackTintMode

        -
        public static final int trackTintMode
        -

        Must be one of the following constant values.

        - ---- - - - - - - -
        ConstantValueDescription
        src_over3
        src_in5
        src_atop9
        multiply14
        screen15
        add16
        -
        -
        See Also:
        -
        Constant Field Values
        -
        -
      • -
      - - - -
        -
      • -

        useCompatPadding

        -
        public static final int useCompatPadding
        -

        Must be a boolean value, either "true" or "false". -

        This may also be a reference to a resource (in the form -"@[package:]type:name") or -theme attribute (in the form -"?[package:][type:]name") -containing a value of this type.

        -
        -
        See Also:
        -
        Constant Field Values
        -
        -
      • -
      - - - -
        -
      • -

        voiceIcon

        -
        public static final int voiceIcon
        -

        Must be a reference to another resource, in the form "@[+][package:]type:name" -or to a theme attribute in the form "?[package:][type:]name".

        -
        -
        See Also:
        -
        Constant Field Values
        -
        -
      • -
      - - - -
        -
      • -

        windowActionBar

        -
        public static final int windowActionBar
        -

        Must be a boolean value, either "true" or "false". -

        This may also be a reference to a resource (in the form -"@[package:]type:name") or -theme attribute (in the form -"?[package:][type:]name") -containing a value of this type.

        -
        -
        See Also:
        -
        Constant Field Values
        -
        -
      • -
      - - - -
        -
      • -

        windowActionBarOverlay

        -
        public static final int windowActionBarOverlay
        -

        Must be a boolean value, either "true" or "false". -

        This may also be a reference to a resource (in the form -"@[package:]type:name") or -theme attribute (in the form -"?[package:][type:]name") -containing a value of this type.

        -
        -
        See Also:
        -
        Constant Field Values
        -
        -
      • -
      - - - -
        -
      • -

        windowActionModeOverlay

        -
        public static final int windowActionModeOverlay
        -

        Must be a boolean value, either "true" or "false". -

        This may also be a reference to a resource (in the form -"@[package:]type:name") or -theme attribute (in the form -"?[package:][type:]name") -containing a value of this type.

        -
        -
        See Also:
        -
        Constant Field Values
        -
        -
      • -
      - - - -
        -
      • -

        windowFixedHeightMajor

        -
        public static final int windowFixedHeightMajor
        -

        May be a dimension value, which is a floating point number appended with a unit such as "14.5sp". -Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), -in (inches), mm (millimeters). -

        May be a fractional value, which is a floating point number appended with either % or %p, such as "14.5%". -The % suffix always means a percentage of the base size; the optional %p suffix provides a size relative to -some parent container. -

        This may also be a reference to a resource (in the form -"@[package:]type:name") or -theme attribute (in the form -"?[package:][type:]name") -containing a value of this type.

        -
        -
        See Also:
        -
        Constant Field Values
        -
        -
      • -
      - - - -
        -
      • -

        windowFixedHeightMinor

        -
        public static final int windowFixedHeightMinor
        -

        May be a dimension value, which is a floating point number appended with a unit such as "14.5sp". -Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), -in (inches), mm (millimeters). -

        May be a fractional value, which is a floating point number appended with either % or %p, such as "14.5%". -The % suffix always means a percentage of the base size; the optional %p suffix provides a size relative to -some parent container. -

        This may also be a reference to a resource (in the form -"@[package:]type:name") or -theme attribute (in the form -"?[package:][type:]name") -containing a value of this type.

        -
        -
        See Also:
        -
        Constant Field Values
        -
        -
      • -
      - - - -
        -
      • -

        windowFixedWidthMajor

        -
        public static final int windowFixedWidthMajor
        -

        May be a dimension value, which is a floating point number appended with a unit such as "14.5sp". -Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), -in (inches), mm (millimeters). -

        May be a fractional value, which is a floating point number appended with either % or %p, such as "14.5%". -The % suffix always means a percentage of the base size; the optional %p suffix provides a size relative to -some parent container. -

        This may also be a reference to a resource (in the form -"@[package:]type:name") or -theme attribute (in the form -"?[package:][type:]name") -containing a value of this type.

        -
        -
        See Also:
        -
        Constant Field Values
        -
        -
      • -
      - - - -
        -
      • -

        windowFixedWidthMinor

        -
        public static final int windowFixedWidthMinor
        -

        May be a dimension value, which is a floating point number appended with a unit such as "14.5sp". -Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), -in (inches), mm (millimeters). -

        May be a fractional value, which is a floating point number appended with either % or %p, such as "14.5%". -The % suffix always means a percentage of the base size; the optional %p suffix provides a size relative to -some parent container. -

        This may also be a reference to a resource (in the form -"@[package:]type:name") or -theme attribute (in the form -"?[package:][type:]name") -containing a value of this type.

        -
        -
        See Also:
        -
        Constant Field Values
        -
        -
      • -
      - - - -
        -
      • -

        windowMinWidthMajor

        -
        public static final int windowMinWidthMajor
        -

        May be a dimension value, which is a floating point number appended with a unit such as "14.5sp". -Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), -in (inches), mm (millimeters). -

        May be a fractional value, which is a floating point number appended with either % or %p, such as "14.5%". -The % suffix always means a percentage of the base size; the optional %p suffix provides a size relative to -some parent container. -

        This may also be a reference to a resource (in the form -"@[package:]type:name") or -theme attribute (in the form -"?[package:][type:]name") -containing a value of this type.

        -
        -
        See Also:
        -
        Constant Field Values
        -
        -
      • -
      - - - -
        -
      • -

        windowMinWidthMinor

        -
        public static final int windowMinWidthMinor
        -

        May be a dimension value, which is a floating point number appended with a unit such as "14.5sp". -Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), -in (inches), mm (millimeters). -

        May be a fractional value, which is a floating point number appended with either % or %p, such as "14.5%". -The % suffix always means a percentage of the base size; the optional %p suffix provides a size relative to -some parent container. -

        This may also be a reference to a resource (in the form -"@[package:]type:name") or -theme attribute (in the form -"?[package:][type:]name") -containing a value of this type.

        -
        -
        See Also:
        -
        Constant Field Values
        -
        -
      • -
      - - - -
        -
      • -

        windowNoTitle

        -
        public static final int windowNoTitle
        -

        Must be a boolean value, either "true" or "false". -

        This may also be a reference to a resource (in the form -"@[package:]type:name") or -theme attribute (in the form -"?[package:][type:]name") -containing a value of this type.

        -
        -
        See Also:
        -
        Constant Field Values
        -
        -
      • -
      -
    • -
    - -
      -
    • - - -

      Constructor Detail

      - - - -
        -
      • -

        attr

        -
        public attr()
        -
      • -
      -
    • -
    -
  • -
-
-
- - - - - - - diff --git a/docs/com/tomerrosenfeld/fadingtextview/R.bool.html b/docs/com/tomerrosenfeld/fadingtextview/R.bool.html deleted file mode 100644 index 49beb27..0000000 --- a/docs/com/tomerrosenfeld/fadingtextview/R.bool.html +++ /dev/null @@ -1,349 +0,0 @@ - - - - - -R.bool - - - - - - - - - - - - -
-
com.tomerrosenfeld.fadingtextview
-

Class R.bool

-
-
-
    -
  • java.lang.Object
  • -
  • -
      -
    • com.tomerrosenfeld.fadingtextview.R.bool
    • -
    -
  • -
-
-
    -
  • -
    -
    Enclosing class:
    -
    R
    -
    -
    -
    -
    public static final class R.bool
    -extends java.lang.Object
    -
  • -
-
-
- -
-
-
    -
  • - -
      -
    • - - -

      Field Detail

      - - - -
        -
      • -

        abc_action_bar_embed_tabs

        -
        public static final int abc_action_bar_embed_tabs
        -
        -
        See Also:
        -
        Constant Field Values
        -
        -
      • -
      - - - -
        -
      • -

        abc_allow_stacked_button_bar

        -
        public static final int abc_allow_stacked_button_bar
        -
        -
        See Also:
        -
        Constant Field Values
        -
        -
      • -
      - - - -
        -
      • -

        abc_config_actionMenuItemAllCaps

        -
        public static final int abc_config_actionMenuItemAllCaps
        -
        -
        See Also:
        -
        Constant Field Values
        -
        -
      • -
      - - - -
        -
      • -

        abc_config_closeDialogWhenTouchOutside

        -
        public static final int abc_config_closeDialogWhenTouchOutside
        -
        -
        See Also:
        -
        Constant Field Values
        -
        -
      • -
      - - - -
        -
      • -

        abc_config_showMenuShortcutsWhenKeyboardPresent

        -
        public static final int abc_config_showMenuShortcutsWhenKeyboardPresent
        -
        -
        See Also:
        -
        Constant Field Values
        -
        -
      • -
      -
    • -
    - -
      -
    • - - -

      Constructor Detail

      - - - -
        -
      • -

        bool

        -
        public bool()
        -
      • -
      -
    • -
    -
  • -
-
-
- - - - - - - diff --git a/docs/com/tomerrosenfeld/fadingtextview/R.color.html b/docs/com/tomerrosenfeld/fadingtextview/R.color.html deleted file mode 100644 index 401c33d..0000000 --- a/docs/com/tomerrosenfeld/fadingtextview/R.color.html +++ /dev/null @@ -1,2066 +0,0 @@ - - - - - -R.color - - - - - - - - - - - - -
-
com.tomerrosenfeld.fadingtextview
-

Class R.color

-
-
-
    -
  • java.lang.Object
  • -
  • -
      -
    • com.tomerrosenfeld.fadingtextview.R.color
    • -
    -
  • -
-
-
    -
  • -
    -
    Enclosing class:
    -
    R
    -
    -
    -
    -
    public static final class R.color
    -extends java.lang.Object
    -
  • -
-
-
- -
-
-
    -
  • - -
      -
    • - - -

      Field Detail

      - - - -
        -
      • -

        abc_background_cache_hint_selector_material_dark

        -
        public static final int abc_background_cache_hint_selector_material_dark
        -
        -
        See Also:
        -
        Constant Field Values
        -
        -
      • -
      - - - -
        -
      • -

        abc_background_cache_hint_selector_material_light

        -
        public static final int abc_background_cache_hint_selector_material_light
        -
        -
        See Also:
        -
        Constant Field Values
        -
        -
      • -
      - - - -
        -
      • -

        abc_btn_colored_borderless_text_material

        -
        public static final int abc_btn_colored_borderless_text_material
        -
        -
        See Also:
        -
        Constant Field Values
        -
        -
      • -
      - - - -
        -
      • -

        abc_btn_colored_text_material

        -
        public static final int abc_btn_colored_text_material
        -
        -
        See Also:
        -
        Constant Field Values
        -
        -
      • -
      - - - -
        -
      • -

        abc_color_highlight_material

        -
        public static final int abc_color_highlight_material
        -
        -
        See Also:
        -
        Constant Field Values
        -
        -
      • -
      - - - -
        -
      • -

        abc_hint_foreground_material_dark

        -
        public static final int abc_hint_foreground_material_dark
        -
        -
        See Also:
        -
        Constant Field Values
        -
        -
      • -
      - - - -
        -
      • -

        abc_hint_foreground_material_light

        -
        public static final int abc_hint_foreground_material_light
        -
        -
        See Also:
        -
        Constant Field Values
        -
        -
      • -
      - - - -
        -
      • -

        abc_input_method_navigation_guard

        -
        public static final int abc_input_method_navigation_guard
        -
        -
        See Also:
        -
        Constant Field Values
        -
        -
      • -
      - - - -
        -
      • -

        abc_primary_text_disable_only_material_dark

        -
        public static final int abc_primary_text_disable_only_material_dark
        -
        -
        See Also:
        -
        Constant Field Values
        -
        -
      • -
      - - - -
        -
      • -

        abc_primary_text_disable_only_material_light

        -
        public static final int abc_primary_text_disable_only_material_light
        -
        -
        See Also:
        -
        Constant Field Values
        -
        -
      • -
      - - - -
        -
      • -

        abc_primary_text_material_dark

        -
        public static final int abc_primary_text_material_dark
        -
        -
        See Also:
        -
        Constant Field Values
        -
        -
      • -
      - - - -
        -
      • -

        abc_primary_text_material_light

        -
        public static final int abc_primary_text_material_light
        -
        -
        See Also:
        -
        Constant Field Values
        -
        -
      • -
      - - - -
        -
      • -

        abc_search_url_text

        -
        public static final int abc_search_url_text
        -
        -
        See Also:
        -
        Constant Field Values
        -
        -
      • -
      - - - -
        -
      • -

        abc_search_url_text_normal

        -
        public static final int abc_search_url_text_normal
        -
        -
        See Also:
        -
        Constant Field Values
        -
        -
      • -
      - - - -
        -
      • -

        abc_search_url_text_pressed

        -
        public static final int abc_search_url_text_pressed
        -
        -
        See Also:
        -
        Constant Field Values
        -
        -
      • -
      - - - -
        -
      • -

        abc_search_url_text_selected

        -
        public static final int abc_search_url_text_selected
        -
        -
        See Also:
        -
        Constant Field Values
        -
        -
      • -
      - - - -
        -
      • -

        abc_secondary_text_material_dark

        -
        public static final int abc_secondary_text_material_dark
        -
        -
        See Also:
        -
        Constant Field Values
        -
        -
      • -
      - - - -
        -
      • -

        abc_secondary_text_material_light

        -
        public static final int abc_secondary_text_material_light
        -
        -
        See Also:
        -
        Constant Field Values
        -
        -
      • -
      - - - -
        -
      • -

        abc_tint_btn_checkable

        -
        public static final int abc_tint_btn_checkable
        -
        -
        See Also:
        -
        Constant Field Values
        -
        -
      • -
      - - - -
        -
      • -

        abc_tint_default

        -
        public static final int abc_tint_default
        -
        -
        See Also:
        -
        Constant Field Values
        -
        -
      • -
      - - - -
        -
      • -

        abc_tint_edittext

        -
        public static final int abc_tint_edittext
        -
        -
        See Also:
        -
        Constant Field Values
        -
        -
      • -
      - - - -
        -
      • -

        abc_tint_seek_thumb

        -
        public static final int abc_tint_seek_thumb
        -
        -
        See Also:
        -
        Constant Field Values
        -
        -
      • -
      - - - -
        -
      • -

        abc_tint_spinner

        -
        public static final int abc_tint_spinner
        -
        -
        See Also:
        -
        Constant Field Values
        -
        -
      • -
      - - - -
        -
      • -

        abc_tint_switch_thumb

        -
        public static final int abc_tint_switch_thumb
        -
        -
        See Also:
        -
        Constant Field Values
        -
        -
      • -
      - - - -
        -
      • -

        abc_tint_switch_track

        -
        public static final int abc_tint_switch_track
        -
        -
        See Also:
        -
        Constant Field Values
        -
        -
      • -
      - - - -
        -
      • -

        accent_material_dark

        -
        public static final int accent_material_dark
        -
        -
        See Also:
        -
        Constant Field Values
        -
        -
      • -
      - - - -
        -
      • -

        accent_material_light

        -
        public static final int accent_material_light
        -
        -
        See Also:
        -
        Constant Field Values
        -
        -
      • -
      - - - -
        -
      • -

        background_floating_material_dark

        -
        public static final int background_floating_material_dark
        -
        -
        See Also:
        -
        Constant Field Values
        -
        -
      • -
      - - - -
        -
      • -

        background_floating_material_light

        -
        public static final int background_floating_material_light
        -
        -
        See Also:
        -
        Constant Field Values
        -
        -
      • -
      - - - -
        -
      • -

        background_material_dark

        -
        public static final int background_material_dark
        -
        -
        See Also:
        -
        Constant Field Values
        -
        -
      • -
      - - - -
        -
      • -

        background_material_light

        -
        public static final int background_material_light
        -
        -
        See Also:
        -
        Constant Field Values
        -
        -
      • -
      - - - -
        -
      • -

        bright_foreground_disabled_material_dark

        -
        public static final int bright_foreground_disabled_material_dark
        -
        -
        See Also:
        -
        Constant Field Values
        -
        -
      • -
      - - - -
        -
      • -

        bright_foreground_disabled_material_light

        -
        public static final int bright_foreground_disabled_material_light
        -
        -
        See Also:
        -
        Constant Field Values
        -
        -
      • -
      - - - -
        -
      • -

        bright_foreground_inverse_material_dark

        -
        public static final int bright_foreground_inverse_material_dark
        -
        -
        See Also:
        -
        Constant Field Values
        -
        -
      • -
      - - - -
        -
      • -

        bright_foreground_inverse_material_light

        -
        public static final int bright_foreground_inverse_material_light
        -
        -
        See Also:
        -
        Constant Field Values
        -
        -
      • -
      - - - -
        -
      • -

        bright_foreground_material_dark

        -
        public static final int bright_foreground_material_dark
        -
        -
        See Also:
        -
        Constant Field Values
        -
        -
      • -
      - - - -
        -
      • -

        bright_foreground_material_light

        -
        public static final int bright_foreground_material_light
        -
        -
        See Also:
        -
        Constant Field Values
        -
        -
      • -
      - - - -
        -
      • -

        button_material_dark

        -
        public static final int button_material_dark
        -
        -
        See Also:
        -
        Constant Field Values
        -
        -
      • -
      - - - -
        -
      • -

        button_material_light

        -
        public static final int button_material_light
        -
        -
        See Also:
        -
        Constant Field Values
        -
        -
      • -
      - - - - - - - - - - - -
        -
      • -

        colorPrimaryDark

        -
        public static final int colorPrimaryDark
        -
        -
        See Also:
        -
        Constant Field Values
        -
        -
      • -
      - - - -
        -
      • -

        design_bottom_navigation_shadow_color

        -
        public static final int design_bottom_navigation_shadow_color
        -
        -
        See Also:
        -
        Constant Field Values
        -
        -
      • -
      - - - - - - - -
        -
      • -

        design_fab_shadow_end_color

        -
        public static final int design_fab_shadow_end_color
        -
        -
        See Also:
        -
        Constant Field Values
        -
        -
      • -
      - - - -
        -
      • -

        design_fab_shadow_mid_color

        -
        public static final int design_fab_shadow_mid_color
        -
        -
        See Also:
        -
        Constant Field Values
        -
        -
      • -
      - - - -
        -
      • -

        design_fab_shadow_start_color

        -
        public static final int design_fab_shadow_start_color
        -
        -
        See Also:
        -
        Constant Field Values
        -
        -
      • -
      - - - -
        -
      • -

        design_fab_stroke_end_inner_color

        -
        public static final int design_fab_stroke_end_inner_color
        -
        -
        See Also:
        -
        Constant Field Values
        -
        -
      • -
      - - - -
        -
      • -

        design_fab_stroke_end_outer_color

        -
        public static final int design_fab_stroke_end_outer_color
        -
        -
        See Also:
        -
        Constant Field Values
        -
        -
      • -
      - - - -
        -
      • -

        design_fab_stroke_top_inner_color

        -
        public static final int design_fab_stroke_top_inner_color
        -
        -
        See Also:
        -
        Constant Field Values
        -
        -
      • -
      - - - -
        -
      • -

        design_fab_stroke_top_outer_color

        -
        public static final int design_fab_stroke_top_outer_color
        -
        -
        See Also:
        -
        Constant Field Values
        -
        -
      • -
      - - - -
        -
      • -

        design_snackbar_background_color

        -
        public static final int design_snackbar_background_color
        -
        -
        See Also:
        -
        Constant Field Values
        -
        -
      • -
      - - - -
        -
      • -

        design_textinput_error_color_dark

        -
        public static final int design_textinput_error_color_dark
        -
        -
        See Also:
        -
        Constant Field Values
        -
        -
      • -
      - - - -
        -
      • -

        design_textinput_error_color_light

        -
        public static final int design_textinput_error_color_light
        -
        -
        See Also:
        -
        Constant Field Values
        -
        -
      • -
      - - - -
        -
      • -

        design_tint_password_toggle

        -
        public static final int design_tint_password_toggle
        -
        -
        See Also:
        -
        Constant Field Values
        -
        -
      • -
      - - - -
        -
      • -

        dim_foreground_disabled_material_dark

        -
        public static final int dim_foreground_disabled_material_dark
        -
        -
        See Also:
        -
        Constant Field Values
        -
        -
      • -
      - - - -
        -
      • -

        dim_foreground_disabled_material_light

        -
        public static final int dim_foreground_disabled_material_light
        -
        -
        See Also:
        -
        Constant Field Values
        -
        -
      • -
      - - - -
        -
      • -

        dim_foreground_material_dark

        -
        public static final int dim_foreground_material_dark
        -
        -
        See Also:
        -
        Constant Field Values
        -
        -
      • -
      - - - -
        -
      • -

        dim_foreground_material_light

        -
        public static final int dim_foreground_material_light
        -
        -
        See Also:
        -
        Constant Field Values
        -
        -
      • -
      - - - -
        -
      • -

        dsb_disabled_color

        -
        public static final int dsb_disabled_color
        -
        -
        See Also:
        -
        Constant Field Values
        -
        -
      • -
      - - - -
        -
      • -

        dsb_progress_color

        -
        public static final int dsb_progress_color
        -
        -
        See Also:
        -
        Constant Field Values
        -
        -
      • -
      - - - -
        -
      • -

        dsb_progress_color_list

        -
        public static final int dsb_progress_color_list
        -
        -
        See Also:
        -
        Constant Field Values
        -
        -
      • -
      - - - -
        -
      • -

        dsb_ripple_color_focused

        -
        public static final int dsb_ripple_color_focused
        -
        -
        See Also:
        -
        Constant Field Values
        -
        -
      • -
      - - - -
        -
      • -

        dsb_ripple_color_list

        -
        public static final int dsb_ripple_color_list
        -
        -
        See Also:
        -
        Constant Field Values
        -
        -
      • -
      - - - -
        -
      • -

        dsb_ripple_color_pressed

        -
        public static final int dsb_ripple_color_pressed
        -
        -
        See Also:
        -
        Constant Field Values
        -
        -
      • -
      - - - - - - - -
        -
      • -

        dsb_track_color_list

        -
        public static final int dsb_track_color_list
        -
        -
        See Also:
        -
        Constant Field Values
        -
        -
      • -
      - - - -
        -
      • -

        foreground_material_dark

        -
        public static final int foreground_material_dark
        -
        -
        See Also:
        -
        Constant Field Values
        -
        -
      • -
      - - - -
        -
      • -

        foreground_material_light

        -
        public static final int foreground_material_light
        -
        -
        See Also:
        -
        Constant Field Values
        -
        -
      • -
      - - - -
        -
      • -

        highlighted_text_material_dark

        -
        public static final int highlighted_text_material_dark
        -
        -
        See Also:
        -
        Constant Field Values
        -
        -
      • -
      - - - -
        -
      • -

        highlighted_text_material_light

        -
        public static final int highlighted_text_material_light
        -
        -
        See Also:
        -
        Constant Field Values
        -
        -
      • -
      - - - -
        -
      • -

        material_blue_grey_800

        -
        public static final int material_blue_grey_800
        -
        -
        See Also:
        -
        Constant Field Values
        -
        -
      • -
      - - - -
        -
      • -

        material_blue_grey_900

        -
        public static final int material_blue_grey_900
        -
        -
        See Also:
        -
        Constant Field Values
        -
        -
      • -
      - - - -
        -
      • -

        material_blue_grey_950

        -
        public static final int material_blue_grey_950
        -
        -
        See Also:
        -
        Constant Field Values
        -
        -
      • -
      - - - -
        -
      • -

        material_deep_teal_200

        -
        public static final int material_deep_teal_200
        -
        -
        See Also:
        -
        Constant Field Values
        -
        -
      • -
      - - - -
        -
      • -

        material_deep_teal_500

        -
        public static final int material_deep_teal_500
        -
        -
        See Also:
        -
        Constant Field Values
        -
        -
      • -
      - - - -
        -
      • -

        material_grey_100

        -
        public static final int material_grey_100
        -
        -
        See Also:
        -
        Constant Field Values
        -
        -
      • -
      - - - -
        -
      • -

        material_grey_300

        -
        public static final int material_grey_300
        -
        -
        See Also:
        -
        Constant Field Values
        -
        -
      • -
      - - - -
        -
      • -

        material_grey_50

        -
        public static final int material_grey_50
        -
        -
        See Also:
        -
        Constant Field Values
        -
        -
      • -
      - - - -
        -
      • -

        material_grey_600

        -
        public static final int material_grey_600
        -
        -
        See Also:
        -
        Constant Field Values
        -
        -
      • -
      - - - -
        -
      • -

        material_grey_800

        -
        public static final int material_grey_800
        -
        -
        See Also:
        -
        Constant Field Values
        -
        -
      • -
      - - - -
        -
      • -

        material_grey_850

        -
        public static final int material_grey_850
        -
        -
        See Also:
        -
        Constant Field Values
        -
        -
      • -
      - - - -
        -
      • -

        material_grey_900

        -
        public static final int material_grey_900
        -
        -
        See Also:
        -
        Constant Field Values
        -
        -
      • -
      - - - -
        -
      • -

        notification_action_color_filter

        -
        public static final int notification_action_color_filter
        -
        -
        See Also:
        -
        Constant Field Values
        -
        -
      • -
      - - - -
        -
      • -

        notification_icon_bg_color

        -
        public static final int notification_icon_bg_color
        -
        -
        See Also:
        -
        Constant Field Values
        -
        -
      • -
      - - - -
        -
      • -

        notification_material_background_media_default_color

        -
        public static final int notification_material_background_media_default_color
        -
        -
        See Also:
        -
        Constant Field Values
        -
        -
      • -
      - - - -
        -
      • -

        primary_dark_material_dark

        -
        public static final int primary_dark_material_dark
        -
        -
        See Also:
        -
        Constant Field Values
        -
        -
      • -
      - - - -
        -
      • -

        primary_dark_material_light

        -
        public static final int primary_dark_material_light
        -
        -
        See Also:
        -
        Constant Field Values
        -
        -
      • -
      - - - -
        -
      • -

        primary_material_dark

        -
        public static final int primary_material_dark
        -
        -
        See Also:
        -
        Constant Field Values
        -
        -
      • -
      - - - -
        -
      • -

        primary_material_light

        -
        public static final int primary_material_light
        -
        -
        See Also:
        -
        Constant Field Values
        -
        -
      • -
      - - - -
        -
      • -

        primary_text_default_material_dark

        -
        public static final int primary_text_default_material_dark
        -
        -
        See Also:
        -
        Constant Field Values
        -
        -
      • -
      - - - -
        -
      • -

        primary_text_default_material_light

        -
        public static final int primary_text_default_material_light
        -
        -
        See Also:
        -
        Constant Field Values
        -
        -
      • -
      - - - -
        -
      • -

        primary_text_disabled_material_dark

        -
        public static final int primary_text_disabled_material_dark
        -
        -
        See Also:
        -
        Constant Field Values
        -
        -
      • -
      - - - -
        -
      • -

        primary_text_disabled_material_light

        -
        public static final int primary_text_disabled_material_light
        -
        -
        See Also:
        -
        Constant Field Values
        -
        -
      • -
      - - - -
        -
      • -

        ripple_material_dark

        -
        public static final int ripple_material_dark
        -
        -
        See Also:
        -
        Constant Field Values
        -
        -
      • -
      - - - -
        -
      • -

        ripple_material_light

        -
        public static final int ripple_material_light
        -
        -
        See Also:
        -
        Constant Field Values
        -
        -
      • -
      - - - -
        -
      • -

        secondary_text_default_material_dark

        -
        public static final int secondary_text_default_material_dark
        -
        -
        See Also:
        -
        Constant Field Values
        -
        -
      • -
      - - - -
        -
      • -

        secondary_text_default_material_light

        -
        public static final int secondary_text_default_material_light
        -
        -
        See Also:
        -
        Constant Field Values
        -
        -
      • -
      - - - -
        -
      • -

        secondary_text_disabled_material_dark

        -
        public static final int secondary_text_disabled_material_dark
        -
        -
        See Also:
        -
        Constant Field Values
        -
        -
      • -
      - - - -
        -
      • -

        secondary_text_disabled_material_light

        -
        public static final int secondary_text_disabled_material_light
        -
        -
        See Also:
        -
        Constant Field Values
        -
        -
      • -
      - - - -
        -
      • -

        switch_thumb_disabled_material_dark

        -
        public static final int switch_thumb_disabled_material_dark
        -
        -
        See Also:
        -
        Constant Field Values
        -
        -
      • -
      - - - -
        -
      • -

        switch_thumb_disabled_material_light

        -
        public static final int switch_thumb_disabled_material_light
        -
        -
        See Also:
        -
        Constant Field Values
        -
        -
      • -
      - - - -
        -
      • -

        switch_thumb_material_dark

        -
        public static final int switch_thumb_material_dark
        -
        -
        See Also:
        -
        Constant Field Values
        -
        -
      • -
      - - - -
        -
      • -

        switch_thumb_material_light

        -
        public static final int switch_thumb_material_light
        -
        -
        See Also:
        -
        Constant Field Values
        -
        -
      • -
      - - - -
        -
      • -

        switch_thumb_normal_material_dark

        -
        public static final int switch_thumb_normal_material_dark
        -
        -
        See Also:
        -
        Constant Field Values
        -
        -
      • -
      - - - -
        -
      • -

        switch_thumb_normal_material_light

        -
        public static final int switch_thumb_normal_material_light
        -
        -
        See Also:
        -
        Constant Field Values
        -
        -
      • -
      -
    • -
    - -
      -
    • - - -

      Constructor Detail

      - - - -
        -
      • -

        color

        -
        public color()
        -
      • -
      -
    • -
    -
  • -
-
-
- - - - - - - diff --git a/docs/com/tomerrosenfeld/fadingtextview/R.dimen.html b/docs/com/tomerrosenfeld/fadingtextview/R.dimen.html deleted file mode 100644 index 3006bf9..0000000 --- a/docs/com/tomerrosenfeld/fadingtextview/R.dimen.html +++ /dev/null @@ -1,2678 +0,0 @@ - - - - - -R.dimen - - - - - - - - - - - - -
-
com.tomerrosenfeld.fadingtextview
-

Class R.dimen

-
-
-
    -
  • java.lang.Object
  • -
  • -
      -
    • com.tomerrosenfeld.fadingtextview.R.dimen
    • -
    -
  • -
-
-
    -
  • -
    -
    Enclosing class:
    -
    R
    -
    -
    -
    -
    public static final class R.dimen
    -extends java.lang.Object
    -
  • -
-
-
- -
-
-
    -
  • - -
      -
    • - - -

      Field Detail

      - - - -
        -
      • -

        abc_action_bar_content_inset_material

        -
        public static final int abc_action_bar_content_inset_material
        -
        -
        See Also:
        -
        Constant Field Values
        -
        -
      • -
      - - - -
        -
      • -

        abc_action_bar_content_inset_with_nav

        -
        public static final int abc_action_bar_content_inset_with_nav
        -
        -
        See Also:
        -
        Constant Field Values
        -
        -
      • -
      - - - -
        -
      • -

        abc_action_bar_default_height_material

        -
        public static final int abc_action_bar_default_height_material
        -
        -
        See Also:
        -
        Constant Field Values
        -
        -
      • -
      - - - -
        -
      • -

        abc_action_bar_default_padding_end_material

        -
        public static final int abc_action_bar_default_padding_end_material
        -
        -
        See Also:
        -
        Constant Field Values
        -
        -
      • -
      - - - -
        -
      • -

        abc_action_bar_default_padding_start_material

        -
        public static final int abc_action_bar_default_padding_start_material
        -
        -
        See Also:
        -
        Constant Field Values
        -
        -
      • -
      - - - -
        -
      • -

        abc_action_bar_elevation_material

        -
        public static final int abc_action_bar_elevation_material
        -
        -
        See Also:
        -
        Constant Field Values
        -
        -
      • -
      - - - -
        -
      • -

        abc_action_bar_icon_vertical_padding_material

        -
        public static final int abc_action_bar_icon_vertical_padding_material
        -
        -
        See Also:
        -
        Constant Field Values
        -
        -
      • -
      - - - -
        -
      • -

        abc_action_bar_overflow_padding_end_material

        -
        public static final int abc_action_bar_overflow_padding_end_material
        -
        -
        See Also:
        -
        Constant Field Values
        -
        -
      • -
      - - - -
        -
      • -

        abc_action_bar_overflow_padding_start_material

        -
        public static final int abc_action_bar_overflow_padding_start_material
        -
        -
        See Also:
        -
        Constant Field Values
        -
        -
      • -
      - - - -
        -
      • -

        abc_action_bar_progress_bar_size

        -
        public static final int abc_action_bar_progress_bar_size
        -
        -
        See Also:
        -
        Constant Field Values
        -
        -
      • -
      - - - -
        -
      • -

        abc_action_bar_stacked_max_height

        -
        public static final int abc_action_bar_stacked_max_height
        -
        -
        See Also:
        -
        Constant Field Values
        -
        -
      • -
      - - - -
        -
      • -

        abc_action_bar_stacked_tab_max_width

        -
        public static final int abc_action_bar_stacked_tab_max_width
        -
        -
        See Also:
        -
        Constant Field Values
        -
        -
      • -
      - - - -
        -
      • -

        abc_action_bar_subtitle_bottom_margin_material

        -
        public static final int abc_action_bar_subtitle_bottom_margin_material
        -
        -
        See Also:
        -
        Constant Field Values
        -
        -
      • -
      - - - -
        -
      • -

        abc_action_bar_subtitle_top_margin_material

        -
        public static final int abc_action_bar_subtitle_top_margin_material
        -
        -
        See Also:
        -
        Constant Field Values
        -
        -
      • -
      - - - -
        -
      • -

        abc_action_button_min_height_material

        -
        public static final int abc_action_button_min_height_material
        -
        -
        See Also:
        -
        Constant Field Values
        -
        -
      • -
      - - - -
        -
      • -

        abc_action_button_min_width_material

        -
        public static final int abc_action_button_min_width_material
        -
        -
        See Also:
        -
        Constant Field Values
        -
        -
      • -
      - - - -
        -
      • -

        abc_action_button_min_width_overflow_material

        -
        public static final int abc_action_button_min_width_overflow_material
        -
        -
        See Also:
        -
        Constant Field Values
        -
        -
      • -
      - - - -
        -
      • -

        abc_alert_dialog_button_bar_height

        -
        public static final int abc_alert_dialog_button_bar_height
        -
        -
        See Also:
        -
        Constant Field Values
        -
        -
      • -
      - - - -
        -
      • -

        abc_button_inset_horizontal_material

        -
        public static final int abc_button_inset_horizontal_material
        -
        -
        See Also:
        -
        Constant Field Values
        -
        -
      • -
      - - - -
        -
      • -

        abc_button_inset_vertical_material

        -
        public static final int abc_button_inset_vertical_material
        -
        -
        See Also:
        -
        Constant Field Values
        -
        -
      • -
      - - - -
        -
      • -

        abc_button_padding_horizontal_material

        -
        public static final int abc_button_padding_horizontal_material
        -
        -
        See Also:
        -
        Constant Field Values
        -
        -
      • -
      - - - -
        -
      • -

        abc_button_padding_vertical_material

        -
        public static final int abc_button_padding_vertical_material
        -
        -
        See Also:
        -
        Constant Field Values
        -
        -
      • -
      - - - -
        -
      • -

        abc_cascading_menus_min_smallest_width

        -
        public static final int abc_cascading_menus_min_smallest_width
        -
        -
        See Also:
        -
        Constant Field Values
        -
        -
      • -
      - - - -
        -
      • -

        abc_config_prefDialogWidth

        -
        public static final int abc_config_prefDialogWidth
        -
        -
        See Also:
        -
        Constant Field Values
        -
        -
      • -
      - - - -
        -
      • -

        abc_control_corner_material

        -
        public static final int abc_control_corner_material
        -
        -
        See Also:
        -
        Constant Field Values
        -
        -
      • -
      - - - -
        -
      • -

        abc_control_inset_material

        -
        public static final int abc_control_inset_material
        -
        -
        See Also:
        -
        Constant Field Values
        -
        -
      • -
      - - - -
        -
      • -

        abc_control_padding_material

        -
        public static final int abc_control_padding_material
        -
        -
        See Also:
        -
        Constant Field Values
        -
        -
      • -
      - - - -
        -
      • -

        abc_dialog_fixed_height_major

        -
        public static final int abc_dialog_fixed_height_major
        -
        -
        See Also:
        -
        Constant Field Values
        -
        -
      • -
      - - - -
        -
      • -

        abc_dialog_fixed_height_minor

        -
        public static final int abc_dialog_fixed_height_minor
        -
        -
        See Also:
        -
        Constant Field Values
        -
        -
      • -
      - - - -
        -
      • -

        abc_dialog_fixed_width_major

        -
        public static final int abc_dialog_fixed_width_major
        -
        -
        See Also:
        -
        Constant Field Values
        -
        -
      • -
      - - - -
        -
      • -

        abc_dialog_fixed_width_minor

        -
        public static final int abc_dialog_fixed_width_minor
        -
        -
        See Also:
        -
        Constant Field Values
        -
        -
      • -
      - - - -
        -
      • -

        abc_dialog_list_padding_bottom_no_buttons

        -
        public static final int abc_dialog_list_padding_bottom_no_buttons
        -
        -
        See Also:
        -
        Constant Field Values
        -
        -
      • -
      - - - -
        -
      • -

        abc_dialog_list_padding_top_no_title

        -
        public static final int abc_dialog_list_padding_top_no_title
        -
        -
        See Also:
        -
        Constant Field Values
        -
        -
      • -
      - - - -
        -
      • -

        abc_dialog_min_width_major

        -
        public static final int abc_dialog_min_width_major
        -
        -
        See Also:
        -
        Constant Field Values
        -
        -
      • -
      - - - -
        -
      • -

        abc_dialog_min_width_minor

        -
        public static final int abc_dialog_min_width_minor
        -
        -
        See Also:
        -
        Constant Field Values
        -
        -
      • -
      - - - -
        -
      • -

        abc_dialog_padding_material

        -
        public static final int abc_dialog_padding_material
        -
        -
        See Also:
        -
        Constant Field Values
        -
        -
      • -
      - - - -
        -
      • -

        abc_dialog_padding_top_material

        -
        public static final int abc_dialog_padding_top_material
        -
        -
        See Also:
        -
        Constant Field Values
        -
        -
      • -
      - - - -
        -
      • -

        abc_dialog_title_divider_material

        -
        public static final int abc_dialog_title_divider_material
        -
        -
        See Also:
        -
        Constant Field Values
        -
        -
      • -
      - - - -
        -
      • -

        abc_disabled_alpha_material_dark

        -
        public static final int abc_disabled_alpha_material_dark
        -
        -
        See Also:
        -
        Constant Field Values
        -
        -
      • -
      - - - -
        -
      • -

        abc_disabled_alpha_material_light

        -
        public static final int abc_disabled_alpha_material_light
        -
        -
        See Also:
        -
        Constant Field Values
        -
        -
      • -
      - - - -
        -
      • -

        abc_dropdownitem_icon_width

        -
        public static final int abc_dropdownitem_icon_width
        -
        -
        See Also:
        -
        Constant Field Values
        -
        -
      • -
      - - - -
        -
      • -

        abc_dropdownitem_text_padding_left

        -
        public static final int abc_dropdownitem_text_padding_left
        -
        -
        See Also:
        -
        Constant Field Values
        -
        -
      • -
      - - - -
        -
      • -

        abc_dropdownitem_text_padding_right

        -
        public static final int abc_dropdownitem_text_padding_right
        -
        -
        See Also:
        -
        Constant Field Values
        -
        -
      • -
      - - - -
        -
      • -

        abc_edit_text_inset_bottom_material

        -
        public static final int abc_edit_text_inset_bottom_material
        -
        -
        See Also:
        -
        Constant Field Values
        -
        -
      • -
      - - - -
        -
      • -

        abc_edit_text_inset_horizontal_material

        -
        public static final int abc_edit_text_inset_horizontal_material
        -
        -
        See Also:
        -
        Constant Field Values
        -
        -
      • -
      - - - -
        -
      • -

        abc_edit_text_inset_top_material

        -
        public static final int abc_edit_text_inset_top_material
        -
        -
        See Also:
        -
        Constant Field Values
        -
        -
      • -
      - - - -
        -
      • -

        abc_floating_window_z

        -
        public static final int abc_floating_window_z
        -
        -
        See Also:
        -
        Constant Field Values
        -
        -
      • -
      - - - -
        -
      • -

        abc_list_item_padding_horizontal_material

        -
        public static final int abc_list_item_padding_horizontal_material
        -
        -
        See Also:
        -
        Constant Field Values
        -
        -
      • -
      - - - -
        -
      • -

        abc_panel_menu_list_width

        -
        public static final int abc_panel_menu_list_width
        -
        -
        See Also:
        -
        Constant Field Values
        -
        -
      • -
      - - - -
        -
      • -

        abc_progress_bar_height_material

        -
        public static final int abc_progress_bar_height_material
        -
        -
        See Also:
        -
        Constant Field Values
        -
        -
      • -
      - - - -
        -
      • -

        abc_search_view_preferred_height

        -
        public static final int abc_search_view_preferred_height
        -
        -
        See Also:
        -
        Constant Field Values
        -
        -
      • -
      - - - -
        -
      • -

        abc_search_view_preferred_width

        -
        public static final int abc_search_view_preferred_width
        -
        -
        See Also:
        -
        Constant Field Values
        -
        -
      • -
      - - - -
        -
      • -

        abc_seekbar_track_background_height_material

        -
        public static final int abc_seekbar_track_background_height_material
        -
        -
        See Also:
        -
        Constant Field Values
        -
        -
      • -
      - - - -
        -
      • -

        abc_seekbar_track_progress_height_material

        -
        public static final int abc_seekbar_track_progress_height_material
        -
        -
        See Also:
        -
        Constant Field Values
        -
        -
      • -
      - - - -
        -
      • -

        abc_select_dialog_padding_start_material

        -
        public static final int abc_select_dialog_padding_start_material
        -
        -
        See Also:
        -
        Constant Field Values
        -
        -
      • -
      - - - -
        -
      • -

        abc_switch_padding

        -
        public static final int abc_switch_padding
        -
        -
        See Also:
        -
        Constant Field Values
        -
        -
      • -
      - - - -
        -
      • -

        abc_text_size_body_1_material

        -
        public static final int abc_text_size_body_1_material
        -
        -
        See Also:
        -
        Constant Field Values
        -
        -
      • -
      - - - -
        -
      • -

        abc_text_size_body_2_material

        -
        public static final int abc_text_size_body_2_material
        -
        -
        See Also:
        -
        Constant Field Values
        -
        -
      • -
      - - - -
        -
      • -

        abc_text_size_button_material

        -
        public static final int abc_text_size_button_material
        -
        -
        See Also:
        -
        Constant Field Values
        -
        -
      • -
      - - - -
        -
      • -

        abc_text_size_caption_material

        -
        public static final int abc_text_size_caption_material
        -
        -
        See Also:
        -
        Constant Field Values
        -
        -
      • -
      - - - -
        -
      • -

        abc_text_size_display_1_material

        -
        public static final int abc_text_size_display_1_material
        -
        -
        See Also:
        -
        Constant Field Values
        -
        -
      • -
      - - - -
        -
      • -

        abc_text_size_display_2_material

        -
        public static final int abc_text_size_display_2_material
        -
        -
        See Also:
        -
        Constant Field Values
        -
        -
      • -
      - - - -
        -
      • -

        abc_text_size_display_3_material

        -
        public static final int abc_text_size_display_3_material
        -
        -
        See Also:
        -
        Constant Field Values
        -
        -
      • -
      - - - -
        -
      • -

        abc_text_size_display_4_material

        -
        public static final int abc_text_size_display_4_material
        -
        -
        See Also:
        -
        Constant Field Values
        -
        -
      • -
      - - - -
        -
      • -

        abc_text_size_headline_material

        -
        public static final int abc_text_size_headline_material
        -
        -
        See Also:
        -
        Constant Field Values
        -
        -
      • -
      - - - -
        -
      • -

        abc_text_size_large_material

        -
        public static final int abc_text_size_large_material
        -
        -
        See Also:
        -
        Constant Field Values
        -
        -
      • -
      - - - -
        -
      • -

        abc_text_size_medium_material

        -
        public static final int abc_text_size_medium_material
        -
        -
        See Also:
        -
        Constant Field Values
        -
        -
      • -
      - - - -
        -
      • -

        abc_text_size_menu_header_material

        -
        public static final int abc_text_size_menu_header_material
        -
        -
        See Also:
        -
        Constant Field Values
        -
        -
      • -
      - - - -
        -
      • -

        abc_text_size_menu_material

        -
        public static final int abc_text_size_menu_material
        -
        -
        See Also:
        -
        Constant Field Values
        -
        -
      • -
      - - - -
        -
      • -

        abc_text_size_small_material

        -
        public static final int abc_text_size_small_material
        -
        -
        See Also:
        -
        Constant Field Values
        -
        -
      • -
      - - - -
        -
      • -

        abc_text_size_subhead_material

        -
        public static final int abc_text_size_subhead_material
        -
        -
        See Also:
        -
        Constant Field Values
        -
        -
      • -
      - - - -
        -
      • -

        abc_text_size_subtitle_material_toolbar

        -
        public static final int abc_text_size_subtitle_material_toolbar
        -
        -
        See Also:
        -
        Constant Field Values
        -
        -
      • -
      - - - -
        -
      • -

        abc_text_size_title_material

        -
        public static final int abc_text_size_title_material
        -
        -
        See Also:
        -
        Constant Field Values
        -
        -
      • -
      - - - -
        -
      • -

        abc_text_size_title_material_toolbar

        -
        public static final int abc_text_size_title_material_toolbar
        -
        -
        See Also:
        -
        Constant Field Values
        -
        -
      • -
      - - - -
        -
      • -

        activity_horizontal_margin

        -
        public static final int activity_horizontal_margin
        -
        -
        See Also:
        -
        Constant Field Values
        -
        -
      • -
      - - - -
        -
      • -

        activity_vertical_margin

        -
        public static final int activity_vertical_margin
        -
        -
        See Also:
        -
        Constant Field Values
        -
        -
      • -
      - - - -
        -
      • -

        design_appbar_elevation

        -
        public static final int design_appbar_elevation
        -
        -
        See Also:
        -
        Constant Field Values
        -
        -
      • -
      - - - -
        -
      • -

        design_bottom_navigation_active_item_max_width

        -
        public static final int design_bottom_navigation_active_item_max_width
        -
        -
        See Also:
        -
        Constant Field Values
        -
        -
      • -
      - - - -
        -
      • -

        design_bottom_navigation_active_text_size

        -
        public static final int design_bottom_navigation_active_text_size
        -
        -
        See Also:
        -
        Constant Field Values
        -
        -
      • -
      - - - -
        -
      • -

        design_bottom_navigation_elevation

        -
        public static final int design_bottom_navigation_elevation
        -
        -
        See Also:
        -
        Constant Field Values
        -
        -
      • -
      - - - -
        -
      • -

        design_bottom_navigation_height

        -
        public static final int design_bottom_navigation_height
        -
        -
        See Also:
        -
        Constant Field Values
        -
        -
      • -
      - - - -
        -
      • -

        design_bottom_navigation_item_max_width

        -
        public static final int design_bottom_navigation_item_max_width
        -
        -
        See Also:
        -
        Constant Field Values
        -
        -
      • -
      - - - -
        -
      • -

        design_bottom_navigation_item_min_width

        -
        public static final int design_bottom_navigation_item_min_width
        -
        -
        See Also:
        -
        Constant Field Values
        -
        -
      • -
      - - - -
        -
      • -

        design_bottom_navigation_margin

        -
        public static final int design_bottom_navigation_margin
        -
        -
        See Also:
        -
        Constant Field Values
        -
        -
      • -
      - - - -
        -
      • -

        design_bottom_navigation_shadow_height

        -
        public static final int design_bottom_navigation_shadow_height
        -
        -
        See Also:
        -
        Constant Field Values
        -
        -
      • -
      - - - -
        -
      • -

        design_bottom_navigation_text_size

        -
        public static final int design_bottom_navigation_text_size
        -
        -
        See Also:
        -
        Constant Field Values
        -
        -
      • -
      - - - -
        -
      • -

        design_bottom_sheet_modal_elevation

        -
        public static final int design_bottom_sheet_modal_elevation
        -
        -
        See Also:
        -
        Constant Field Values
        -
        -
      • -
      - - - -
        -
      • -

        design_bottom_sheet_peek_height_min

        -
        public static final int design_bottom_sheet_peek_height_min
        -
        -
        See Also:
        -
        Constant Field Values
        -
        -
      • -
      - - - -
        -
      • -

        design_fab_border_width

        -
        public static final int design_fab_border_width
        -
        -
        See Also:
        -
        Constant Field Values
        -
        -
      • -
      - - - -
        -
      • -

        design_fab_elevation

        -
        public static final int design_fab_elevation
        -
        -
        See Also:
        -
        Constant Field Values
        -
        -
      • -
      - - - -
        -
      • -

        design_fab_image_size

        -
        public static final int design_fab_image_size
        -
        -
        See Also:
        -
        Constant Field Values
        -
        -
      • -
      - - - -
        -
      • -

        design_fab_size_mini

        -
        public static final int design_fab_size_mini
        -
        -
        See Also:
        -
        Constant Field Values
        -
        -
      • -
      - - - -
        -
      • -

        design_fab_size_normal

        -
        public static final int design_fab_size_normal
        -
        -
        See Also:
        -
        Constant Field Values
        -
        -
      • -
      - - - -
        -
      • -

        design_fab_translation_z_pressed

        -
        public static final int design_fab_translation_z_pressed
        -
        -
        See Also:
        -
        Constant Field Values
        -
        -
      • -
      - - - -
        -
      • -

        design_navigation_elevation

        -
        public static final int design_navigation_elevation
        -
        -
        See Also:
        -
        Constant Field Values
        -
        -
      • -
      - - - -
        -
      • -

        design_navigation_icon_padding

        -
        public static final int design_navigation_icon_padding
        -
        -
        See Also:
        -
        Constant Field Values
        -
        -
      • -
      - - - -
        -
      • -

        design_navigation_icon_size

        -
        public static final int design_navigation_icon_size
        -
        -
        See Also:
        -
        Constant Field Values
        -
        -
      • -
      - - - -
        -
      • -

        design_navigation_max_width

        -
        public static final int design_navigation_max_width
        -
        -
        See Also:
        -
        Constant Field Values
        -
        -
      • -
      - - - -
        -
      • -

        design_navigation_padding_bottom

        -
        public static final int design_navigation_padding_bottom
        -
        -
        See Also:
        -
        Constant Field Values
        -
        -
      • -
      - - - -
        -
      • -

        design_navigation_separator_vertical_padding

        -
        public static final int design_navigation_separator_vertical_padding
        -
        -
        See Also:
        -
        Constant Field Values
        -
        -
      • -
      - - - -
        -
      • -

        design_snackbar_action_inline_max_width

        -
        public static final int design_snackbar_action_inline_max_width
        -
        -
        See Also:
        -
        Constant Field Values
        -
        -
      • -
      - - - -
        -
      • -

        design_snackbar_background_corner_radius

        -
        public static final int design_snackbar_background_corner_radius
        -
        -
        See Also:
        -
        Constant Field Values
        -
        -
      • -
      - - - -
        -
      • -

        design_snackbar_elevation

        -
        public static final int design_snackbar_elevation
        -
        -
        See Also:
        -
        Constant Field Values
        -
        -
      • -
      - - - -
        -
      • -

        design_snackbar_extra_spacing_horizontal

        -
        public static final int design_snackbar_extra_spacing_horizontal
        -
        -
        See Also:
        -
        Constant Field Values
        -
        -
      • -
      - - - -
        -
      • -

        design_snackbar_max_width

        -
        public static final int design_snackbar_max_width
        -
        -
        See Also:
        -
        Constant Field Values
        -
        -
      • -
      - - - -
        -
      • -

        design_snackbar_min_width

        -
        public static final int design_snackbar_min_width
        -
        -
        See Also:
        -
        Constant Field Values
        -
        -
      • -
      - - - -
        -
      • -

        design_snackbar_padding_horizontal

        -
        public static final int design_snackbar_padding_horizontal
        -
        -
        See Also:
        -
        Constant Field Values
        -
        -
      • -
      - - - -
        -
      • -

        design_snackbar_padding_vertical

        -
        public static final int design_snackbar_padding_vertical
        -
        -
        See Also:
        -
        Constant Field Values
        -
        -
      • -
      - - - -
        -
      • -

        design_snackbar_padding_vertical_2lines

        -
        public static final int design_snackbar_padding_vertical_2lines
        -
        -
        See Also:
        -
        Constant Field Values
        -
        -
      • -
      - - - -
        -
      • -

        design_snackbar_text_size

        -
        public static final int design_snackbar_text_size
        -
        -
        See Also:
        -
        Constant Field Values
        -
        -
      • -
      - - - -
        -
      • -

        design_tab_max_width

        -
        public static final int design_tab_max_width
        -
        -
        See Also:
        -
        Constant Field Values
        -
        -
      • -
      - - - -
        -
      • -

        design_tab_scrollable_min_width

        -
        public static final int design_tab_scrollable_min_width
        -
        -
        See Also:
        -
        Constant Field Values
        -
        -
      • -
      - - - -
        -
      • -

        design_tab_text_size

        -
        public static final int design_tab_text_size
        -
        -
        See Also:
        -
        Constant Field Values
        -
        -
      • -
      - - - -
        -
      • -

        design_tab_text_size_2line

        -
        public static final int design_tab_text_size_2line
        -
        -
        See Also:
        -
        Constant Field Values
        -
        -
      • -
      - - - -
        -
      • -

        disabled_alpha_material_dark

        -
        public static final int disabled_alpha_material_dark
        -
        -
        See Also:
        -
        Constant Field Values
        -
        -
      • -
      - - - -
        -
      • -

        disabled_alpha_material_light

        -
        public static final int disabled_alpha_material_light
        -
        -
        See Also:
        -
        Constant Field Values
        -
        -
      • -
      - - - - - - - -
        -
      • -

        highlight_alpha_material_colored

        -
        public static final int highlight_alpha_material_colored
        -
        -
        See Also:
        -
        Constant Field Values
        -
        -
      • -
      - - - -
        -
      • -

        highlight_alpha_material_dark

        -
        public static final int highlight_alpha_material_dark
        -
        -
        See Also:
        -
        Constant Field Values
        -
        -
      • -
      - - - -
        -
      • -

        highlight_alpha_material_light

        -
        public static final int highlight_alpha_material_light
        -
        -
        See Also:
        -
        Constant Field Values
        -
        -
      • -
      - - - -
        -
      • -

        hint_alpha_material_dark

        -
        public static final int hint_alpha_material_dark
        -
        -
        See Also:
        -
        Constant Field Values
        -
        -
      • -
      - - - -
        -
      • -

        hint_alpha_material_light

        -
        public static final int hint_alpha_material_light
        -
        -
        See Also:
        -
        Constant Field Values
        -
        -
      • -
      - - - -
        -
      • -

        hint_pressed_alpha_material_dark

        -
        public static final int hint_pressed_alpha_material_dark
        -
        -
        See Also:
        -
        Constant Field Values
        -
        -
      • -
      - - - -
        -
      • -

        hint_pressed_alpha_material_light

        -
        public static final int hint_pressed_alpha_material_light
        -
        -
        See Also:
        -
        Constant Field Values
        -
        -
      • -
      - - - -
        -
      • -

        item_touch_helper_max_drag_scroll_per_frame

        -
        public static final int item_touch_helper_max_drag_scroll_per_frame
        -
        -
        See Also:
        -
        Constant Field Values
        -
        -
      • -
      - - - -
        -
      • -

        item_touch_helper_swipe_escape_max_velocity

        -
        public static final int item_touch_helper_swipe_escape_max_velocity
        -
        -
        See Also:
        -
        Constant Field Values
        -
        -
      • -
      - - - -
        -
      • -

        item_touch_helper_swipe_escape_velocity

        -
        public static final int item_touch_helper_swipe_escape_velocity
        -
        -
        See Also:
        -
        Constant Field Values
        -
        -
      • -
      - - - -
        -
      • -

        notification_action_icon_size

        -
        public static final int notification_action_icon_size
        -
        -
        See Also:
        -
        Constant Field Values
        -
        -
      • -
      - - - -
        -
      • -

        notification_action_text_size

        -
        public static final int notification_action_text_size
        -
        -
        See Also:
        -
        Constant Field Values
        -
        -
      • -
      - - - -
        -
      • -

        notification_big_circle_margin

        -
        public static final int notification_big_circle_margin
        -
        -
        See Also:
        -
        Constant Field Values
        -
        -
      • -
      - - - -
        -
      • -

        notification_content_margin_start

        -
        public static final int notification_content_margin_start
        -
        -
        See Also:
        -
        Constant Field Values
        -
        -
      • -
      - - - -
        -
      • -

        notification_large_icon_height

        -
        public static final int notification_large_icon_height
        -
        -
        See Also:
        -
        Constant Field Values
        -
        -
      • -
      - - - -
        -
      • -

        notification_large_icon_width

        -
        public static final int notification_large_icon_width
        -
        -
        See Also:
        -
        Constant Field Values
        -
        -
      • -
      - - - -
        -
      • -

        notification_main_column_padding_top

        -
        public static final int notification_main_column_padding_top
        -
        -
        See Also:
        -
        Constant Field Values
        -
        -
      • -
      - - - -
        -
      • -

        notification_media_narrow_margin

        -
        public static final int notification_media_narrow_margin
        -
        -
        See Also:
        -
        Constant Field Values
        -
        -
      • -
      - - - -
        -
      • -

        notification_right_icon_size

        -
        public static final int notification_right_icon_size
        -
        -
        See Also:
        -
        Constant Field Values
        -
        -
      • -
      - - - -
        -
      • -

        notification_right_side_padding_top

        -
        public static final int notification_right_side_padding_top
        -
        -
        See Also:
        -
        Constant Field Values
        -
        -
      • -
      - - - -
        -
      • -

        notification_small_icon_background_padding

        -
        public static final int notification_small_icon_background_padding
        -
        -
        See Also:
        -
        Constant Field Values
        -
        -
      • -
      - - - -
        -
      • -

        notification_small_icon_size_as_large

        -
        public static final int notification_small_icon_size_as_large
        -
        -
        See Also:
        -
        Constant Field Values
        -
        -
      • -
      - - - -
        -
      • -

        notification_subtext_size

        -
        public static final int notification_subtext_size
        -
        -
        See Also:
        -
        Constant Field Values
        -
        -
      • -
      - - - -
        -
      • -

        notification_top_pad

        -
        public static final int notification_top_pad
        -
        -
        See Also:
        -
        Constant Field Values
        -
        -
      • -
      - - - -
        -
      • -

        notification_top_pad_large_text

        -
        public static final int notification_top_pad_large_text
        -
        -
        See Also:
        -
        Constant Field Values
        -
        -
      • -
      -
    • -
    - -
      -
    • - - -

      Constructor Detail

      - - - -
        -
      • -

        dimen

        -
        public dimen()
        -
      • -
      -
    • -
    -
  • -
-
-
- - - - - - - diff --git a/docs/com/tomerrosenfeld/fadingtextview/R.drawable.html b/docs/com/tomerrosenfeld/fadingtextview/R.drawable.html deleted file mode 100644 index d7fb1a3..0000000 --- a/docs/com/tomerrosenfeld/fadingtextview/R.drawable.html +++ /dev/null @@ -1,2151 +0,0 @@ - - - - - -R.drawable - - - - - - - - - - - - -
-
com.tomerrosenfeld.fadingtextview
-

Class R.drawable

-
-
-
    -
  • java.lang.Object
  • -
  • -
      -
    • com.tomerrosenfeld.fadingtextview.R.drawable
    • -
    -
  • -
-
-
    -
  • -
    -
    Enclosing class:
    -
    R
    -
    -
    -
    -
    public static final class R.drawable
    -extends java.lang.Object
    -
  • -
-
-
- -
-
-
    -
  • - -
      -
    • - - -

      Field Detail

      - - - -
        -
      • -

        abc_ab_share_pack_mtrl_alpha

        -
        public static final int abc_ab_share_pack_mtrl_alpha
        -
        -
        See Also:
        -
        Constant Field Values
        -
        -
      • -
      - - - -
        -
      • -

        abc_action_bar_item_background_material

        -
        public static final int abc_action_bar_item_background_material
        -
        -
        See Also:
        -
        Constant Field Values
        -
        -
      • -
      - - - -
        -
      • -

        abc_btn_borderless_material

        -
        public static final int abc_btn_borderless_material
        -
        -
        See Also:
        -
        Constant Field Values
        -
        -
      • -
      - - - -
        -
      • -

        abc_btn_check_material

        -
        public static final int abc_btn_check_material
        -
        -
        See Also:
        -
        Constant Field Values
        -
        -
      • -
      - - - -
        -
      • -

        abc_btn_check_to_on_mtrl_000

        -
        public static final int abc_btn_check_to_on_mtrl_000
        -
        -
        See Also:
        -
        Constant Field Values
        -
        -
      • -
      - - - -
        -
      • -

        abc_btn_check_to_on_mtrl_015

        -
        public static final int abc_btn_check_to_on_mtrl_015
        -
        -
        See Also:
        -
        Constant Field Values
        -
        -
      • -
      - - - -
        -
      • -

        abc_btn_colored_material

        -
        public static final int abc_btn_colored_material
        -
        -
        See Also:
        -
        Constant Field Values
        -
        -
      • -
      - - - -
        -
      • -

        abc_btn_default_mtrl_shape

        -
        public static final int abc_btn_default_mtrl_shape
        -
        -
        See Also:
        -
        Constant Field Values
        -
        -
      • -
      - - - -
        -
      • -

        abc_btn_radio_material

        -
        public static final int abc_btn_radio_material
        -
        -
        See Also:
        -
        Constant Field Values
        -
        -
      • -
      - - - -
        -
      • -

        abc_btn_radio_to_on_mtrl_000

        -
        public static final int abc_btn_radio_to_on_mtrl_000
        -
        -
        See Also:
        -
        Constant Field Values
        -
        -
      • -
      - - - -
        -
      • -

        abc_btn_radio_to_on_mtrl_015

        -
        public static final int abc_btn_radio_to_on_mtrl_015
        -
        -
        See Also:
        -
        Constant Field Values
        -
        -
      • -
      - - - -
        -
      • -

        abc_btn_switch_to_on_mtrl_00001

        -
        public static final int abc_btn_switch_to_on_mtrl_00001
        -
        -
        See Also:
        -
        Constant Field Values
        -
        -
      • -
      - - - -
        -
      • -

        abc_btn_switch_to_on_mtrl_00012

        -
        public static final int abc_btn_switch_to_on_mtrl_00012
        -
        -
        See Also:
        -
        Constant Field Values
        -
        -
      • -
      - - - -
        -
      • -

        abc_cab_background_internal_bg

        -
        public static final int abc_cab_background_internal_bg
        -
        -
        See Also:
        -
        Constant Field Values
        -
        -
      • -
      - - - -
        -
      • -

        abc_cab_background_top_material

        -
        public static final int abc_cab_background_top_material
        -
        -
        See Also:
        -
        Constant Field Values
        -
        -
      • -
      - - - -
        -
      • -

        abc_cab_background_top_mtrl_alpha

        -
        public static final int abc_cab_background_top_mtrl_alpha
        -
        -
        See Also:
        -
        Constant Field Values
        -
        -
      • -
      - - - -
        -
      • -

        abc_control_background_material

        -
        public static final int abc_control_background_material
        -
        -
        See Also:
        -
        Constant Field Values
        -
        -
      • -
      - - - -
        -
      • -

        abc_dialog_material_background

        -
        public static final int abc_dialog_material_background
        -
        -
        See Also:
        -
        Constant Field Values
        -
        -
      • -
      - - - -
        -
      • -

        abc_edit_text_material

        -
        public static final int abc_edit_text_material
        -
        -
        See Also:
        -
        Constant Field Values
        -
        -
      • -
      - - - -
        -
      • -

        abc_ic_ab_back_material

        -
        public static final int abc_ic_ab_back_material
        -
        -
        See Also:
        -
        Constant Field Values
        -
        -
      • -
      - - - -
        -
      • -

        abc_ic_arrow_drop_right_black_24dp

        -
        public static final int abc_ic_arrow_drop_right_black_24dp
        -
        -
        See Also:
        -
        Constant Field Values
        -
        -
      • -
      - - - -
        -
      • -

        abc_ic_clear_material

        -
        public static final int abc_ic_clear_material
        -
        -
        See Also:
        -
        Constant Field Values
        -
        -
      • -
      - - - -
        -
      • -

        abc_ic_commit_search_api_mtrl_alpha

        -
        public static final int abc_ic_commit_search_api_mtrl_alpha
        -
        -
        See Also:
        -
        Constant Field Values
        -
        -
      • -
      - - - -
        -
      • -

        abc_ic_go_search_api_material

        -
        public static final int abc_ic_go_search_api_material
        -
        -
        See Also:
        -
        Constant Field Values
        -
        -
      • -
      - - - -
        -
      • -

        abc_ic_menu_copy_mtrl_am_alpha

        -
        public static final int abc_ic_menu_copy_mtrl_am_alpha
        -
        -
        See Also:
        -
        Constant Field Values
        -
        -
      • -
      - - - -
        -
      • -

        abc_ic_menu_cut_mtrl_alpha

        -
        public static final int abc_ic_menu_cut_mtrl_alpha
        -
        -
        See Also:
        -
        Constant Field Values
        -
        -
      • -
      - - - -
        -
      • -

        abc_ic_menu_overflow_material

        -
        public static final int abc_ic_menu_overflow_material
        -
        -
        See Also:
        -
        Constant Field Values
        -
        -
      • -
      - - - -
        -
      • -

        abc_ic_menu_paste_mtrl_am_alpha

        -
        public static final int abc_ic_menu_paste_mtrl_am_alpha
        -
        -
        See Also:
        -
        Constant Field Values
        -
        -
      • -
      - - - -
        -
      • -

        abc_ic_menu_selectall_mtrl_alpha

        -
        public static final int abc_ic_menu_selectall_mtrl_alpha
        -
        -
        See Also:
        -
        Constant Field Values
        -
        -
      • -
      - - - -
        -
      • -

        abc_ic_menu_share_mtrl_alpha

        -
        public static final int abc_ic_menu_share_mtrl_alpha
        -
        -
        See Also:
        -
        Constant Field Values
        -
        -
      • -
      - - - -
        -
      • -

        abc_ic_search_api_material

        -
        public static final int abc_ic_search_api_material
        -
        -
        See Also:
        -
        Constant Field Values
        -
        -
      • -
      - - - -
        -
      • -

        abc_ic_star_black_16dp

        -
        public static final int abc_ic_star_black_16dp
        -
        -
        See Also:
        -
        Constant Field Values
        -
        -
      • -
      - - - -
        -
      • -

        abc_ic_star_black_36dp

        -
        public static final int abc_ic_star_black_36dp
        -
        -
        See Also:
        -
        Constant Field Values
        -
        -
      • -
      - - - -
        -
      • -

        abc_ic_star_black_48dp

        -
        public static final int abc_ic_star_black_48dp
        -
        -
        See Also:
        -
        Constant Field Values
        -
        -
      • -
      - - - -
        -
      • -

        abc_ic_star_half_black_16dp

        -
        public static final int abc_ic_star_half_black_16dp
        -
        -
        See Also:
        -
        Constant Field Values
        -
        -
      • -
      - - - -
        -
      • -

        abc_ic_star_half_black_36dp

        -
        public static final int abc_ic_star_half_black_36dp
        -
        -
        See Also:
        -
        Constant Field Values
        -
        -
      • -
      - - - -
        -
      • -

        abc_ic_star_half_black_48dp

        -
        public static final int abc_ic_star_half_black_48dp
        -
        -
        See Also:
        -
        Constant Field Values
        -
        -
      • -
      - - - -
        -
      • -

        abc_ic_voice_search_api_material

        -
        public static final int abc_ic_voice_search_api_material
        -
        -
        See Also:
        -
        Constant Field Values
        -
        -
      • -
      - - - -
        -
      • -

        abc_item_background_holo_dark

        -
        public static final int abc_item_background_holo_dark
        -
        -
        See Also:
        -
        Constant Field Values
        -
        -
      • -
      - - - -
        -
      • -

        abc_item_background_holo_light

        -
        public static final int abc_item_background_holo_light
        -
        -
        See Also:
        -
        Constant Field Values
        -
        -
      • -
      - - - -
        -
      • -

        abc_list_divider_mtrl_alpha

        -
        public static final int abc_list_divider_mtrl_alpha
        -
        -
        See Also:
        -
        Constant Field Values
        -
        -
      • -
      - - - -
        -
      • -

        abc_list_focused_holo

        -
        public static final int abc_list_focused_holo
        -
        -
        See Also:
        -
        Constant Field Values
        -
        -
      • -
      - - - -
        -
      • -

        abc_list_longpressed_holo

        -
        public static final int abc_list_longpressed_holo
        -
        -
        See Also:
        -
        Constant Field Values
        -
        -
      • -
      - - - -
        -
      • -

        abc_list_pressed_holo_dark

        -
        public static final int abc_list_pressed_holo_dark
        -
        -
        See Also:
        -
        Constant Field Values
        -
        -
      • -
      - - - -
        -
      • -

        abc_list_pressed_holo_light

        -
        public static final int abc_list_pressed_holo_light
        -
        -
        See Also:
        -
        Constant Field Values
        -
        -
      • -
      - - - -
        -
      • -

        abc_list_selector_background_transition_holo_dark

        -
        public static final int abc_list_selector_background_transition_holo_dark
        -
        -
        See Also:
        -
        Constant Field Values
        -
        -
      • -
      - - - -
        -
      • -

        abc_list_selector_background_transition_holo_light

        -
        public static final int abc_list_selector_background_transition_holo_light
        -
        -
        See Also:
        -
        Constant Field Values
        -
        -
      • -
      - - - -
        -
      • -

        abc_list_selector_disabled_holo_dark

        -
        public static final int abc_list_selector_disabled_holo_dark
        -
        -
        See Also:
        -
        Constant Field Values
        -
        -
      • -
      - - - -
        -
      • -

        abc_list_selector_disabled_holo_light

        -
        public static final int abc_list_selector_disabled_holo_light
        -
        -
        See Also:
        -
        Constant Field Values
        -
        -
      • -
      - - - -
        -
      • -

        abc_list_selector_holo_dark

        -
        public static final int abc_list_selector_holo_dark
        -
        -
        See Also:
        -
        Constant Field Values
        -
        -
      • -
      - - - -
        -
      • -

        abc_list_selector_holo_light

        -
        public static final int abc_list_selector_holo_light
        -
        -
        See Also:
        -
        Constant Field Values
        -
        -
      • -
      - - - -
        -
      • -

        abc_menu_hardkey_panel_mtrl_mult

        -
        public static final int abc_menu_hardkey_panel_mtrl_mult
        -
        -
        See Also:
        -
        Constant Field Values
        -
        -
      • -
      - - - -
        -
      • -

        abc_popup_background_mtrl_mult

        -
        public static final int abc_popup_background_mtrl_mult
        -
        -
        See Also:
        -
        Constant Field Values
        -
        -
      • -
      - - - -
        -
      • -

        abc_ratingbar_indicator_material

        -
        public static final int abc_ratingbar_indicator_material
        -
        -
        See Also:
        -
        Constant Field Values
        -
        -
      • -
      - - - -
        -
      • -

        abc_ratingbar_material

        -
        public static final int abc_ratingbar_material
        -
        -
        See Also:
        -
        Constant Field Values
        -
        -
      • -
      - - - -
        -
      • -

        abc_ratingbar_small_material

        -
        public static final int abc_ratingbar_small_material
        -
        -
        See Also:
        -
        Constant Field Values
        -
        -
      • -
      - - - -
        -
      • -

        abc_scrubber_control_off_mtrl_alpha

        -
        public static final int abc_scrubber_control_off_mtrl_alpha
        -
        -
        See Also:
        -
        Constant Field Values
        -
        -
      • -
      - - - -
        -
      • -

        abc_scrubber_control_to_pressed_mtrl_000

        -
        public static final int abc_scrubber_control_to_pressed_mtrl_000
        -
        -
        See Also:
        -
        Constant Field Values
        -
        -
      • -
      - - - -
        -
      • -

        abc_scrubber_control_to_pressed_mtrl_005

        -
        public static final int abc_scrubber_control_to_pressed_mtrl_005
        -
        -
        See Also:
        -
        Constant Field Values
        -
        -
      • -
      - - - -
        -
      • -

        abc_scrubber_primary_mtrl_alpha

        -
        public static final int abc_scrubber_primary_mtrl_alpha
        -
        -
        See Also:
        -
        Constant Field Values
        -
        -
      • -
      - - - -
        -
      • -

        abc_scrubber_track_mtrl_alpha

        -
        public static final int abc_scrubber_track_mtrl_alpha
        -
        -
        See Also:
        -
        Constant Field Values
        -
        -
      • -
      - - - -
        -
      • -

        abc_seekbar_thumb_material

        -
        public static final int abc_seekbar_thumb_material
        -
        -
        See Also:
        -
        Constant Field Values
        -
        -
      • -
      - - - -
        -
      • -

        abc_seekbar_tick_mark_material

        -
        public static final int abc_seekbar_tick_mark_material
        -
        -
        See Also:
        -
        Constant Field Values
        -
        -
      • -
      - - - -
        -
      • -

        abc_seekbar_track_material

        -
        public static final int abc_seekbar_track_material
        -
        -
        See Also:
        -
        Constant Field Values
        -
        -
      • -
      - - - -
        -
      • -

        abc_spinner_mtrl_am_alpha

        -
        public static final int abc_spinner_mtrl_am_alpha
        -
        -
        See Also:
        -
        Constant Field Values
        -
        -
      • -
      - - - -
        -
      • -

        abc_spinner_textfield_background_material

        -
        public static final int abc_spinner_textfield_background_material
        -
        -
        See Also:
        -
        Constant Field Values
        -
        -
      • -
      - - - -
        -
      • -

        abc_switch_thumb_material

        -
        public static final int abc_switch_thumb_material
        -
        -
        See Also:
        -
        Constant Field Values
        -
        -
      • -
      - - - -
        -
      • -

        abc_switch_track_mtrl_alpha

        -
        public static final int abc_switch_track_mtrl_alpha
        -
        -
        See Also:
        -
        Constant Field Values
        -
        -
      • -
      - - - -
        -
      • -

        abc_tab_indicator_material

        -
        public static final int abc_tab_indicator_material
        -
        -
        See Also:
        -
        Constant Field Values
        -
        -
      • -
      - - - -
        -
      • -

        abc_tab_indicator_mtrl_alpha

        -
        public static final int abc_tab_indicator_mtrl_alpha
        -
        -
        See Also:
        -
        Constant Field Values
        -
        -
      • -
      - - - -
        -
      • -

        abc_text_cursor_material

        -
        public static final int abc_text_cursor_material
        -
        -
        See Also:
        -
        Constant Field Values
        -
        -
      • -
      - - - -
        -
      • -

        abc_text_select_handle_left_mtrl_dark

        -
        public static final int abc_text_select_handle_left_mtrl_dark
        -
        -
        See Also:
        -
        Constant Field Values
        -
        -
      • -
      - - - -
        -
      • -

        abc_text_select_handle_left_mtrl_light

        -
        public static final int abc_text_select_handle_left_mtrl_light
        -
        -
        See Also:
        -
        Constant Field Values
        -
        -
      • -
      - - - -
        -
      • -

        abc_text_select_handle_middle_mtrl_dark

        -
        public static final int abc_text_select_handle_middle_mtrl_dark
        -
        -
        See Also:
        -
        Constant Field Values
        -
        -
      • -
      - - - -
        -
      • -

        abc_text_select_handle_middle_mtrl_light

        -
        public static final int abc_text_select_handle_middle_mtrl_light
        -
        -
        See Also:
        -
        Constant Field Values
        -
        -
      • -
      - - - -
        -
      • -

        abc_text_select_handle_right_mtrl_dark

        -
        public static final int abc_text_select_handle_right_mtrl_dark
        -
        -
        See Also:
        -
        Constant Field Values
        -
        -
      • -
      - - - -
        -
      • -

        abc_text_select_handle_right_mtrl_light

        -
        public static final int abc_text_select_handle_right_mtrl_light
        -
        -
        See Also:
        -
        Constant Field Values
        -
        -
      • -
      - - - -
        -
      • -

        abc_textfield_activated_mtrl_alpha

        -
        public static final int abc_textfield_activated_mtrl_alpha
        -
        -
        See Also:
        -
        Constant Field Values
        -
        -
      • -
      - - - -
        -
      • -

        abc_textfield_default_mtrl_alpha

        -
        public static final int abc_textfield_default_mtrl_alpha
        -
        -
        See Also:
        -
        Constant Field Values
        -
        -
      • -
      - - - -
        -
      • -

        abc_textfield_search_activated_mtrl_alpha

        -
        public static final int abc_textfield_search_activated_mtrl_alpha
        -
        -
        See Also:
        -
        Constant Field Values
        -
        -
      • -
      - - - -
        -
      • -

        abc_textfield_search_default_mtrl_alpha

        -
        public static final int abc_textfield_search_default_mtrl_alpha
        -
        -
        See Also:
        -
        Constant Field Values
        -
        -
      • -
      - - - -
        -
      • -

        abc_textfield_search_material

        -
        public static final int abc_textfield_search_material
        -
        -
        See Also:
        -
        Constant Field Values
        -
        -
      • -
      - - - - - - - -
        -
      • -

        avd_hide_password

        -
        public static final int avd_hide_password
        -
        -
        See Also:
        -
        Constant Field Values
        -
        -
      • -
      - - - -
        -
      • -

        avd_hide_password_1

        -
        public static final int avd_hide_password_1
        -
        -
        See Also:
        -
        Constant Field Values
        -
        -
      • -
      - - - -
        -
      • -

        avd_hide_password_2

        -
        public static final int avd_hide_password_2
        -
        -
        See Also:
        -
        Constant Field Values
        -
        -
      • -
      - - - -
        -
      • -

        avd_hide_password_3

        -
        public static final int avd_hide_password_3
        -
        -
        See Also:
        -
        Constant Field Values
        -
        -
      • -
      - - - -
        -
      • -

        avd_show_password

        -
        public static final int avd_show_password
        -
        -
        See Also:
        -
        Constant Field Values
        -
        -
      • -
      - - - -
        -
      • -

        avd_show_password_1

        -
        public static final int avd_show_password_1
        -
        -
        See Also:
        -
        Constant Field Values
        -
        -
      • -
      - - - -
        -
      • -

        avd_show_password_2

        -
        public static final int avd_show_password_2
        -
        -
        See Also:
        -
        Constant Field Values
        -
        -
      • -
      - - - -
        -
      • -

        avd_show_password_3

        -
        public static final int avd_show_password_3
        -
        -
        See Also:
        -
        Constant Field Values
        -
        -
      • -
      - - - -
        -
      • -

        design_bottom_navigation_item_background

        -
        public static final int design_bottom_navigation_item_background
        -
        -
        See Also:
        -
        Constant Field Values
        -
        -
      • -
      - - - -
        -
      • -

        design_fab_background

        -
        public static final int design_fab_background
        -
        -
        See Also:
        -
        Constant Field Values
        -
        -
      • -
      - - - -
        -
      • -

        design_ic_visibility

        -
        public static final int design_ic_visibility
        -
        -
        See Also:
        -
        Constant Field Values
        -
        -
      • -
      - - - -
        -
      • -

        design_ic_visibility_off

        -
        public static final int design_ic_visibility_off
        -
        -
        See Also:
        -
        Constant Field Values
        -
        -
      • -
      - - - -
        -
      • -

        design_password_eye

        -
        public static final int design_password_eye
        -
        -
        See Also:
        -
        Constant Field Values
        -
        -
      • -
      - - - -
        -
      • -

        design_snackbar_background

        -
        public static final int design_snackbar_background
        -
        -
        See Also:
        -
        Constant Field Values
        -
        -
      • -
      - - - - - - - -
        -
      • -

        navigation_empty_icon

        -
        public static final int navigation_empty_icon
        -
        -
        See Also:
        -
        Constant Field Values
        -
        -
      • -
      - - - -
        -
      • -

        notification_action_background

        -
        public static final int notification_action_background
        -
        -
        See Also:
        -
        Constant Field Values
        -
        -
      • -
      - - - - - - - -
        -
      • -

        notification_bg_low

        -
        public static final int notification_bg_low
        -
        -
        See Also:
        -
        Constant Field Values
        -
        -
      • -
      - - - -
        -
      • -

        notification_bg_low_normal

        -
        public static final int notification_bg_low_normal
        -
        -
        See Also:
        -
        Constant Field Values
        -
        -
      • -
      - - - -
        -
      • -

        notification_bg_low_pressed

        -
        public static final int notification_bg_low_pressed
        -
        -
        See Also:
        -
        Constant Field Values
        -
        -
      • -
      - - - -
        -
      • -

        notification_bg_normal

        -
        public static final int notification_bg_normal
        -
        -
        See Also:
        -
        Constant Field Values
        -
        -
      • -
      - - - -
        -
      • -

        notification_bg_normal_pressed

        -
        public static final int notification_bg_normal_pressed
        -
        -
        See Also:
        -
        Constant Field Values
        -
        -
      • -
      - - - -
        -
      • -

        notification_icon_background

        -
        public static final int notification_icon_background
        -
        -
        See Also:
        -
        Constant Field Values
        -
        -
      • -
      - - - -
        -
      • -

        notification_template_icon_bg

        -
        public static final int notification_template_icon_bg
        -
        -
        See Also:
        -
        Constant Field Values
        -
        -
      • -
      - - - -
        -
      • -

        notification_template_icon_low_bg

        -
        public static final int notification_template_icon_low_bg
        -
        -
        See Also:
        -
        Constant Field Values
        -
        -
      • -
      - - - -
        -
      • -

        notification_tile_bg

        -
        public static final int notification_tile_bg
        -
        -
        See Also:
        -
        Constant Field Values
        -
        -
      • -
      - - - -
        -
      • -

        notify_panel_notification_icon_bg

        -
        public static final int notify_panel_notification_icon_bg
        -
        -
        See Also:
        -
        Constant Field Values
        -
        -
      • -
      -
    • -
    - -
      -
    • - - -

      Constructor Detail

      - - - -
        -
      • -

        drawable

        -
        public drawable()
        -
      • -
      -
    • -
    -
  • -
-
-
- - - - - - - diff --git a/docs/com/tomerrosenfeld/fadingtextview/R.html b/docs/com/tomerrosenfeld/fadingtextview/R.html deleted file mode 100644 index f307ba3..0000000 --- a/docs/com/tomerrosenfeld/fadingtextview/R.html +++ /dev/null @@ -1,312 +0,0 @@ - - - - - -R - - - - - - - - - - - - -
-
com.tomerrosenfeld.fadingtextview
-

Class R

-
-
-
    -
  • java.lang.Object
  • -
  • -
      -
    • com.tomerrosenfeld.fadingtextview.R
    • -
    -
  • -
-
-
    -
  • -
    -
    -
    public final class R
    -extends java.lang.Object
    -
  • -
-
-
-
    -
  • - - - -
      -
    • - - -

      Constructor Summary

      - - - - - - - - -
      Constructors 
      Constructor and Description
      R() 
      -
    • -
    - -
      -
    • - - -

      Method Summary

      -
        -
      • - - -

        Methods inherited from class java.lang.Object

        -clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
      • -
      -
    • -
    -
  • -
-
-
-
    -
  • - -
      -
    • - - -

      Constructor Detail

      - - - -
        -
      • -

        R

        -
        public R()
        -
      • -
      -
    • -
    -
  • -
-
-
- - - - - - - diff --git a/docs/com/tomerrosenfeld/fadingtextview/R.id.html b/docs/com/tomerrosenfeld/fadingtextview/R.id.html deleted file mode 100644 index 54b8e91..0000000 --- a/docs/com/tomerrosenfeld/fadingtextview/R.id.html +++ /dev/null @@ -1,2967 +0,0 @@ - - - - - -R.id - - - - - - - - - - - - -
-
com.tomerrosenfeld.fadingtextview
-

Class R.id

-
-
-
    -
  • java.lang.Object
  • -
  • -
      -
    • com.tomerrosenfeld.fadingtextview.R.id
    • -
    -
  • -
-
-
    -
  • -
    -
    Enclosing class:
    -
    R
    -
    -
    -
    -
    public static final class R.id
    -extends java.lang.Object
    -
  • -
-
-
- -
-
- -
-
- - - - - - - diff --git a/docs/com/tomerrosenfeld/fadingtextview/R.integer.html b/docs/com/tomerrosenfeld/fadingtextview/R.integer.html deleted file mode 100644 index 4f56d71..0000000 --- a/docs/com/tomerrosenfeld/fadingtextview/R.integer.html +++ /dev/null @@ -1,417 +0,0 @@ - - - - - -R.integer - - - - - - - - - - - - -
-
com.tomerrosenfeld.fadingtextview
-

Class R.integer

-
-
-
    -
  • java.lang.Object
  • -
  • -
      -
    • com.tomerrosenfeld.fadingtextview.R.integer
    • -
    -
  • -
-
-
    -
  • -
    -
    Enclosing class:
    -
    R
    -
    -
    -
    -
    public static final class R.integer
    -extends java.lang.Object
    -
  • -
-
-
- -
-
-
    -
  • - -
      -
    • - - -

      Field Detail

      - - - -
        -
      • -

        abc_config_activityDefaultDur

        -
        public static final int abc_config_activityDefaultDur
        -
        -
        See Also:
        -
        Constant Field Values
        -
        -
      • -
      - - - -
        -
      • -

        abc_config_activityShortDur

        -
        public static final int abc_config_activityShortDur
        -
        -
        See Also:
        -
        Constant Field Values
        -
        -
      • -
      - - - -
        -
      • -

        app_bar_elevation_anim_duration

        -
        public static final int app_bar_elevation_anim_duration
        -
        -
        See Also:
        -
        Constant Field Values
        -
        -
      • -
      - - - -
        -
      • -

        bottom_sheet_slide_duration

        -
        public static final int bottom_sheet_slide_duration
        -
        -
        See Also:
        -
        Constant Field Values
        -
        -
      • -
      - - - -
        -
      • -

        cancel_button_image_alpha

        -
        public static final int cancel_button_image_alpha
        -
        -
        See Also:
        -
        Constant Field Values
        -
        -
      • -
      - - - -
        -
      • -

        design_snackbar_text_max_lines

        -
        public static final int design_snackbar_text_max_lines
        -
        -
        See Also:
        -
        Constant Field Values
        -
        -
      • -
      - - - -
        -
      • -

        hide_password_duration

        -
        public static final int hide_password_duration
        -
        -
        See Also:
        -
        Constant Field Values
        -
        -
      • -
      - - - -
        -
      • -

        show_password_duration

        -
        public static final int show_password_duration
        -
        -
        See Also:
        -
        Constant Field Values
        -
        -
      • -
      - - - -
        -
      • -

        status_bar_notification_info_maxnum

        -
        public static final int status_bar_notification_info_maxnum
        -
        -
        See Also:
        -
        Constant Field Values
        -
        -
      • -
      -
    • -
    - -
      -
    • - - -

      Constructor Detail

      - - - -
        -
      • -

        integer

        -
        public integer()
        -
      • -
      -
    • -
    -
  • -
-
-
- - - - - - - diff --git a/docs/com/tomerrosenfeld/fadingtextview/R.layout.html b/docs/com/tomerrosenfeld/fadingtextview/R.layout.html deleted file mode 100644 index 64c19d3..0000000 --- a/docs/com/tomerrosenfeld/fadingtextview/R.layout.html +++ /dev/null @@ -1,1318 +0,0 @@ - - - - - -R.layout - - - - - - - - - - - - -
-
com.tomerrosenfeld.fadingtextview
-

Class R.layout

-
-
-
    -
  • java.lang.Object
  • -
  • -
      -
    • com.tomerrosenfeld.fadingtextview.R.layout
    • -
    -
  • -
-
-
    -
  • -
    -
    Enclosing class:
    -
    R
    -
    -
    -
    -
    public static final class R.layout
    -extends java.lang.Object
    -
  • -
-
-
- -
-
-
    -
  • - -
      -
    • - - -

      Field Detail

      - - - -
        -
      • -

        abc_action_bar_title_item

        -
        public static final int abc_action_bar_title_item
        -
        -
        See Also:
        -
        Constant Field Values
        -
        -
      • -
      - - - -
        -
      • -

        abc_action_bar_up_container

        -
        public static final int abc_action_bar_up_container
        -
        -
        See Also:
        -
        Constant Field Values
        -
        -
      • -
      - - - -
        -
      • -

        abc_action_bar_view_list_nav_layout

        -
        public static final int abc_action_bar_view_list_nav_layout
        -
        -
        See Also:
        -
        Constant Field Values
        -
        -
      • -
      - - - -
        -
      • -

        abc_action_menu_item_layout

        -
        public static final int abc_action_menu_item_layout
        -
        -
        See Also:
        -
        Constant Field Values
        -
        -
      • -
      - - - -
        -
      • -

        abc_action_menu_layout

        -
        public static final int abc_action_menu_layout
        -
        -
        See Also:
        -
        Constant Field Values
        -
        -
      • -
      - - - -
        -
      • -

        abc_action_mode_bar

        -
        public static final int abc_action_mode_bar
        -
        -
        See Also:
        -
        Constant Field Values
        -
        -
      • -
      - - - -
        -
      • -

        abc_action_mode_close_item_material

        -
        public static final int abc_action_mode_close_item_material
        -
        -
        See Also:
        -
        Constant Field Values
        -
        -
      • -
      - - - -
        -
      • -

        abc_activity_chooser_view

        -
        public static final int abc_activity_chooser_view
        -
        -
        See Also:
        -
        Constant Field Values
        -
        -
      • -
      - - - -
        -
      • -

        abc_activity_chooser_view_list_item

        -
        public static final int abc_activity_chooser_view_list_item
        -
        -
        See Also:
        -
        Constant Field Values
        -
        -
      • -
      - - - -
        -
      • -

        abc_alert_dialog_button_bar_material

        -
        public static final int abc_alert_dialog_button_bar_material
        -
        -
        See Also:
        -
        Constant Field Values
        -
        -
      • -
      - - - -
        -
      • -

        abc_alert_dialog_material

        -
        public static final int abc_alert_dialog_material
        -
        -
        See Also:
        -
        Constant Field Values
        -
        -
      • -
      - - - -
        -
      • -

        abc_alert_dialog_title_material

        -
        public static final int abc_alert_dialog_title_material
        -
        -
        See Also:
        -
        Constant Field Values
        -
        -
      • -
      - - - -
        -
      • -

        abc_dialog_title_material

        -
        public static final int abc_dialog_title_material
        -
        -
        See Also:
        -
        Constant Field Values
        -
        -
      • -
      - - - -
        -
      • -

        abc_expanded_menu_layout

        -
        public static final int abc_expanded_menu_layout
        -
        -
        See Also:
        -
        Constant Field Values
        -
        -
      • -
      - - - -
        -
      • -

        abc_list_menu_item_checkbox

        -
        public static final int abc_list_menu_item_checkbox
        -
        -
        See Also:
        -
        Constant Field Values
        -
        -
      • -
      - - - -
        -
      • -

        abc_list_menu_item_icon

        -
        public static final int abc_list_menu_item_icon
        -
        -
        See Also:
        -
        Constant Field Values
        -
        -
      • -
      - - - -
        -
      • -

        abc_list_menu_item_layout

        -
        public static final int abc_list_menu_item_layout
        -
        -
        See Also:
        -
        Constant Field Values
        -
        -
      • -
      - - - -
        -
      • -

        abc_list_menu_item_radio

        -
        public static final int abc_list_menu_item_radio
        -
        -
        See Also:
        -
        Constant Field Values
        -
        -
      • -
      - - - -
        -
      • -

        abc_popup_menu_header_item_layout

        -
        public static final int abc_popup_menu_header_item_layout
        -
        -
        See Also:
        -
        Constant Field Values
        -
        -
      • -
      - - - -
        -
      • -

        abc_popup_menu_item_layout

        -
        public static final int abc_popup_menu_item_layout
        -
        -
        See Also:
        -
        Constant Field Values
        -
        -
      • -
      - - - -
        -
      • -

        abc_screen_content_include

        -
        public static final int abc_screen_content_include
        -
        -
        See Also:
        -
        Constant Field Values
        -
        -
      • -
      - - - -
        -
      • -

        abc_screen_simple

        -
        public static final int abc_screen_simple
        -
        -
        See Also:
        -
        Constant Field Values
        -
        -
      • -
      - - - -
        -
      • -

        abc_screen_simple_overlay_action_mode

        -
        public static final int abc_screen_simple_overlay_action_mode
        -
        -
        See Also:
        -
        Constant Field Values
        -
        -
      • -
      - - - -
        -
      • -

        abc_screen_toolbar

        -
        public static final int abc_screen_toolbar
        -
        -
        See Also:
        -
        Constant Field Values
        -
        -
      • -
      - - - -
        -
      • -

        abc_search_dropdown_item_icons_2line

        -
        public static final int abc_search_dropdown_item_icons_2line
        -
        -
        See Also:
        -
        Constant Field Values
        -
        -
      • -
      - - - - - - - -
        -
      • -

        abc_select_dialog_material

        -
        public static final int abc_select_dialog_material
        -
        -
        See Also:
        -
        Constant Field Values
        -
        -
      • -
      - - - - - - - - - - - -
        -
      • -

        design_bottom_navigation_item

        -
        public static final int design_bottom_navigation_item
        -
        -
        See Also:
        -
        Constant Field Values
        -
        -
      • -
      - - - -
        -
      • -

        design_bottom_sheet_dialog

        -
        public static final int design_bottom_sheet_dialog
        -
        -
        See Also:
        -
        Constant Field Values
        -
        -
      • -
      - - - -
        -
      • -

        design_layout_snackbar

        -
        public static final int design_layout_snackbar
        -
        -
        See Also:
        -
        Constant Field Values
        -
        -
      • -
      - - - -
        -
      • -

        design_layout_snackbar_include

        -
        public static final int design_layout_snackbar_include
        -
        -
        See Also:
        -
        Constant Field Values
        -
        -
      • -
      - - - -
        -
      • -

        design_layout_tab_icon

        -
        public static final int design_layout_tab_icon
        -
        -
        See Also:
        -
        Constant Field Values
        -
        -
      • -
      - - - -
        -
      • -

        design_layout_tab_text

        -
        public static final int design_layout_tab_text
        -
        -
        See Also:
        -
        Constant Field Values
        -
        -
      • -
      - - - -
        -
      • -

        design_menu_item_action_area

        -
        public static final int design_menu_item_action_area
        -
        -
        See Also:
        -
        Constant Field Values
        -
        -
      • -
      - - - -
        -
      • -

        design_navigation_item

        -
        public static final int design_navigation_item
        -
        -
        See Also:
        -
        Constant Field Values
        -
        -
      • -
      - - - -
        -
      • -

        design_navigation_item_header

        -
        public static final int design_navigation_item_header
        -
        -
        See Also:
        -
        Constant Field Values
        -
        -
      • -
      - - - -
        -
      • -

        design_navigation_item_separator

        -
        public static final int design_navigation_item_separator
        -
        -
        See Also:
        -
        Constant Field Values
        -
        -
      • -
      - - - -
        -
      • -

        design_navigation_item_subheader

        -
        public static final int design_navigation_item_subheader
        -
        -
        See Also:
        -
        Constant Field Values
        -
        -
      • -
      - - - -
        -
      • -

        design_navigation_menu

        -
        public static final int design_navigation_menu
        -
        -
        See Also:
        -
        Constant Field Values
        -
        -
      • -
      - - - -
        -
      • -

        design_navigation_menu_item

        -
        public static final int design_navigation_menu_item
        -
        -
        See Also:
        -
        Constant Field Values
        -
        -
      • -
      - - - -
        -
      • -

        design_text_input_password_icon

        -
        public static final int design_text_input_password_icon
        -
        -
        See Also:
        -
        Constant Field Values
        -
        -
      • -
      - - - -
        -
      • -

        notification_action

        -
        public static final int notification_action
        -
        -
        See Also:
        -
        Constant Field Values
        -
        -
      • -
      - - - -
        -
      • -

        notification_action_tombstone

        -
        public static final int notification_action_tombstone
        -
        -
        See Also:
        -
        Constant Field Values
        -
        -
      • -
      - - - -
        -
      • -

        notification_media_action

        -
        public static final int notification_media_action
        -
        -
        See Also:
        -
        Constant Field Values
        -
        -
      • -
      - - - -
        -
      • -

        notification_media_cancel_action

        -
        public static final int notification_media_cancel_action
        -
        -
        See Also:
        -
        Constant Field Values
        -
        -
      • -
      - - - -
        -
      • -

        notification_template_big_media

        -
        public static final int notification_template_big_media
        -
        -
        See Also:
        -
        Constant Field Values
        -
        -
      • -
      - - - -
        -
      • -

        notification_template_big_media_custom

        -
        public static final int notification_template_big_media_custom
        -
        -
        See Also:
        -
        Constant Field Values
        -
        -
      • -
      - - - -
        -
      • -

        notification_template_big_media_narrow

        -
        public static final int notification_template_big_media_narrow
        -
        -
        See Also:
        -
        Constant Field Values
        -
        -
      • -
      - - - -
        -
      • -

        notification_template_big_media_narrow_custom

        -
        public static final int notification_template_big_media_narrow_custom
        -
        -
        See Also:
        -
        Constant Field Values
        -
        -
      • -
      - - - -
        -
      • -

        notification_template_custom_big

        -
        public static final int notification_template_custom_big
        -
        -
        See Also:
        -
        Constant Field Values
        -
        -
      • -
      - - - -
        -
      • -

        notification_template_icon_group

        -
        public static final int notification_template_icon_group
        -
        -
        See Also:
        -
        Constant Field Values
        -
        -
      • -
      - - - -
        -
      • -

        notification_template_lines_media

        -
        public static final int notification_template_lines_media
        -
        -
        See Also:
        -
        Constant Field Values
        -
        -
      • -
      - - - -
        -
      • -

        notification_template_media

        -
        public static final int notification_template_media
        -
        -
        See Also:
        -
        Constant Field Values
        -
        -
      • -
      - - - -
        -
      • -

        notification_template_media_custom

        -
        public static final int notification_template_media_custom
        -
        -
        See Also:
        -
        Constant Field Values
        -
        -
      • -
      - - - -
        -
      • -

        notification_template_part_chronometer

        -
        public static final int notification_template_part_chronometer
        -
        -
        See Also:
        -
        Constant Field Values
        -
        -
      • -
      - - - -
        -
      • -

        notification_template_part_time

        -
        public static final int notification_template_part_time
        -
        -
        See Also:
        -
        Constant Field Values
        -
        -
      • -
      - - - -
        -
      • -

        select_dialog_item_material

        -
        public static final int select_dialog_item_material
        -
        -
        See Also:
        -
        Constant Field Values
        -
        -
      • -
      - - - -
        -
      • -

        select_dialog_multichoice_material

        -
        public static final int select_dialog_multichoice_material
        -
        -
        See Also:
        -
        Constant Field Values
        -
        -
      • -
      - - - -
        -
      • -

        select_dialog_singlechoice_material

        -
        public static final int select_dialog_singlechoice_material
        -
        -
        See Also:
        -
        Constant Field Values
        -
        -
      • -
      - - - -
        -
      • -

        support_simple_spinner_dropdown_item

        -
        public static final int support_simple_spinner_dropdown_item
        -
        -
        See Also:
        -
        Constant Field Values
        -
        -
      • -
      -
    • -
    - -
      -
    • - - -

      Constructor Detail

      - - - -
        -
      • -

        layout

        -
        public layout()
        -
      • -
      -
    • -
    -
  • -
-
-
- - - - - - - diff --git a/docs/com/tomerrosenfeld/fadingtextview/R.mipmap.html b/docs/com/tomerrosenfeld/fadingtextview/R.mipmap.html deleted file mode 100644 index 34fd420..0000000 --- a/docs/com/tomerrosenfeld/fadingtextview/R.mipmap.html +++ /dev/null @@ -1,281 +0,0 @@ - - - - - -R.mipmap - - - - - - - - - - - - -
-
com.tomerrosenfeld.fadingtextview
-

Class R.mipmap

-
-
-
    -
  • java.lang.Object
  • -
  • -
      -
    • com.tomerrosenfeld.fadingtextview.R.mipmap
    • -
    -
  • -
-
-
    -
  • -
    -
    Enclosing class:
    -
    R
    -
    -
    -
    -
    public static final class R.mipmap
    -extends java.lang.Object
    -
  • -
-
-
-
    -
  • - -
      -
    • - - -

      Field Summary

      - - - - - - - - - - -
      Fields 
      Modifier and TypeField and Description
      static intic_launcher 
      -
    • -
    - -
      -
    • - - -

      Constructor Summary

      - - - - - - - - -
      Constructors 
      Constructor and Description
      mipmap() 
      -
    • -
    - -
      -
    • - - -

      Method Summary

      -
        -
      • - - -

        Methods inherited from class java.lang.Object

        -clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
      • -
      -
    • -
    -
  • -
-
-
-
    -
  • - - - -
      -
    • - - -

      Constructor Detail

      - - - -
        -
      • -

        mipmap

        -
        public mipmap()
        -
      • -
      -
    • -
    -
  • -
-
-
- - - - - - - diff --git a/docs/com/tomerrosenfeld/fadingtextview/R.string.html b/docs/com/tomerrosenfeld/fadingtextview/R.string.html deleted file mode 100644 index 095e32c..0000000 --- a/docs/com/tomerrosenfeld/fadingtextview/R.string.html +++ /dev/null @@ -1,995 +0,0 @@ - - - - - -R.string - - - - - - - - - - - - -
-
com.tomerrosenfeld.fadingtextview
-

Class R.string

-
-
-
    -
  • java.lang.Object
  • -
  • -
      -
    • com.tomerrosenfeld.fadingtextview.R.string
    • -
    -
  • -
-
-
    -
  • -
    -
    Enclosing class:
    -
    R
    -
    -
    -
    -
    public static final class R.string
    -extends java.lang.Object
    -
  • -
-
-
- -
-
-
    -
  • - -
      -
    • - - -

      Field Detail

      - - - -
        -
      • -

        abc_action_bar_home_description

        -
        public static final int abc_action_bar_home_description
        -
        -
        See Also:
        -
        Constant Field Values
        -
        -
      • -
      - - - -
        -
      • -

        abc_action_bar_home_description_format

        -
        public static final int abc_action_bar_home_description_format
        -
        -
        See Also:
        -
        Constant Field Values
        -
        -
      • -
      - - - -
        -
      • -

        abc_action_bar_home_subtitle_description_format

        -
        public static final int abc_action_bar_home_subtitle_description_format
        -
        -
        See Also:
        -
        Constant Field Values
        -
        -
      • -
      - - - -
        -
      • -

        abc_action_bar_up_description

        -
        public static final int abc_action_bar_up_description
        -
        -
        See Also:
        -
        Constant Field Values
        -
        -
      • -
      - - - -
        -
      • -

        abc_action_menu_overflow_description

        -
        public static final int abc_action_menu_overflow_description
        -
        -
        See Also:
        -
        Constant Field Values
        -
        -
      • -
      - - - -
        -
      • -

        abc_action_mode_done

        -
        public static final int abc_action_mode_done
        -
        -
        See Also:
        -
        Constant Field Values
        -
        -
      • -
      - - - -
        -
      • -

        abc_activity_chooser_view_see_all

        -
        public static final int abc_activity_chooser_view_see_all
        -
        -
        See Also:
        -
        Constant Field Values
        -
        -
      • -
      - - - -
        -
      • -

        abc_activitychooserview_choose_application

        -
        public static final int abc_activitychooserview_choose_application
        -
        -
        See Also:
        -
        Constant Field Values
        -
        -
      • -
      - - - - - - - - - - - -
        -
      • -

        abc_font_family_body_1_material

        -
        public static final int abc_font_family_body_1_material
        -
        -
        See Also:
        -
        Constant Field Values
        -
        -
      • -
      - - - -
        -
      • -

        abc_font_family_body_2_material

        -
        public static final int abc_font_family_body_2_material
        -
        -
        See Also:
        -
        Constant Field Values
        -
        -
      • -
      - - - -
        -
      • -

        abc_font_family_button_material

        -
        public static final int abc_font_family_button_material
        -
        -
        See Also:
        -
        Constant Field Values
        -
        -
      • -
      - - - -
        -
      • -

        abc_font_family_caption_material

        -
        public static final int abc_font_family_caption_material
        -
        -
        See Also:
        -
        Constant Field Values
        -
        -
      • -
      - - - -
        -
      • -

        abc_font_family_display_1_material

        -
        public static final int abc_font_family_display_1_material
        -
        -
        See Also:
        -
        Constant Field Values
        -
        -
      • -
      - - - -
        -
      • -

        abc_font_family_display_2_material

        -
        public static final int abc_font_family_display_2_material
        -
        -
        See Also:
        -
        Constant Field Values
        -
        -
      • -
      - - - -
        -
      • -

        abc_font_family_display_3_material

        -
        public static final int abc_font_family_display_3_material
        -
        -
        See Also:
        -
        Constant Field Values
        -
        -
      • -
      - - - -
        -
      • -

        abc_font_family_display_4_material

        -
        public static final int abc_font_family_display_4_material
        -
        -
        See Also:
        -
        Constant Field Values
        -
        -
      • -
      - - - -
        -
      • -

        abc_font_family_headline_material

        -
        public static final int abc_font_family_headline_material
        -
        -
        See Also:
        -
        Constant Field Values
        -
        -
      • -
      - - - -
        -
      • -

        abc_font_family_menu_material

        -
        public static final int abc_font_family_menu_material
        -
        -
        See Also:
        -
        Constant Field Values
        -
        -
      • -
      - - - -
        -
      • -

        abc_font_family_subhead_material

        -
        public static final int abc_font_family_subhead_material
        -
        -
        See Also:
        -
        Constant Field Values
        -
        -
      • -
      - - - -
        -
      • -

        abc_font_family_title_material

        -
        public static final int abc_font_family_title_material
        -
        -
        See Also:
        -
        Constant Field Values
        -
        -
      • -
      - - - - - - - -
        -
      • -

        abc_searchview_description_clear

        -
        public static final int abc_searchview_description_clear
        -
        -
        See Also:
        -
        Constant Field Values
        -
        -
      • -
      - - - -
        -
      • -

        abc_searchview_description_query

        -
        public static final int abc_searchview_description_query
        -
        -
        See Also:
        -
        Constant Field Values
        -
        -
      • -
      - - - -
        -
      • -

        abc_searchview_description_search

        -
        public static final int abc_searchview_description_search
        -
        -
        See Also:
        -
        Constant Field Values
        -
        -
      • -
      - - - -
        -
      • -

        abc_searchview_description_submit

        -
        public static final int abc_searchview_description_submit
        -
        -
        See Also:
        -
        Constant Field Values
        -
        -
      • -
      - - - -
        -
      • -

        abc_searchview_description_voice

        -
        public static final int abc_searchview_description_voice
        -
        -
        See Also:
        -
        Constant Field Values
        -
        -
      • -
      - - - -
        -
      • -

        abc_shareactionprovider_share_with

        -
        public static final int abc_shareactionprovider_share_with
        -
        -
        See Also:
        -
        Constant Field Values
        -
        -
      • -
      - - - -
        -
      • -

        abc_shareactionprovider_share_with_application

        -
        public static final int abc_shareactionprovider_share_with_application
        -
        -
        See Also:
        -
        Constant Field Values
        -
        -
      • -
      - - - -
        -
      • -

        abc_toolbar_collapse_description

        -
        public static final int abc_toolbar_collapse_description
        -
        -
        See Also:
        -
        Constant Field Values
        -
        -
      • -
      - - - - - - - -
        -
      • -

        appbar_scrolling_view_behavior

        -
        public static final int appbar_scrolling_view_behavior
        -
        -
        See Also:
        -
        Constant Field Values
        -
        -
      • -
      - - - -
        -
      • -

        bottom_sheet_behavior

        -
        public static final int bottom_sheet_behavior
        -
        -
        See Also:
        -
        Constant Field Values
        -
        -
      • -
      - - - -
        -
      • -

        character_counter_pattern

        -
        public static final int character_counter_pattern
        -
        -
        See Also:
        -
        Constant Field Values
        -
        -
      • -
      - - - -
        -
      • -

        password_toggle_content_description

        -
        public static final int password_toggle_content_description
        -
        -
        See Also:
        -
        Constant Field Values
        -
        -
      • -
      - - - -
        -
      • -

        path_password_eye

        -
        public static final int path_password_eye
        -
        -
        See Also:
        -
        Constant Field Values
        -
        -
      • -
      - - - -
        -
      • -

        path_password_eye_mask_strike_through

        -
        public static final int path_password_eye_mask_strike_through
        -
        -
        See Also:
        -
        Constant Field Values
        -
        -
      • -
      - - - -
        -
      • -

        path_password_eye_mask_visible

        -
        public static final int path_password_eye_mask_visible
        -
        -
        See Also:
        -
        Constant Field Values
        -
        -
      • -
      - - - -
        -
      • -

        path_password_strike_through

        -
        public static final int path_password_strike_through
        -
        -
        See Also:
        -
        Constant Field Values
        -
        -
      • -
      - - - -
        -
      • -

        search_menu_title

        -
        public static final int search_menu_title
        -
        -
        See Also:
        -
        Constant Field Values
        -
        -
      • -
      - - - -
        -
      • -

        status_bar_notification_info_overflow

        -
        public static final int status_bar_notification_info_overflow
        -
        -
        See Also:
        -
        Constant Field Values
        -
        -
      • -
      - - - -
        -
      • -

        title_activity_main

        -
        public static final int title_activity_main
        -
        -
        See Also:
        -
        Constant Field Values
        -
        -
      • -
      -
    • -
    - -
      -
    • - - -

      Constructor Detail

      - - - -
        -
      • -

        string

        -
        public string()
        -
      • -
      -
    • -
    -
  • -
-
-
- - - - - - - diff --git a/docs/com/tomerrosenfeld/fadingtextview/R.style.html b/docs/com/tomerrosenfeld/fadingtextview/R.style.html deleted file mode 100644 index f120948..0000000 --- a/docs/com/tomerrosenfeld/fadingtextview/R.style.html +++ /dev/null @@ -1,6792 +0,0 @@ - - - - - -R.style - - - - - - - - - - - - -
-
com.tomerrosenfeld.fadingtextview
-

Class R.style

-
-
-
    -
  • java.lang.Object
  • -
  • -
      -
    • com.tomerrosenfeld.fadingtextview.R.style
    • -
    -
  • -
-
-
    -
  • -
    -
    Enclosing class:
    -
    R
    -
    -
    -
    -
    public static final class R.style
    -extends java.lang.Object
    -
  • -
-
-
- -
-
-
    -
  • - -
      -
    • - - -

      Field Detail

      - - - -
        -
      • -

        AlertDialog_AppCompat

        -
        public static final int AlertDialog_AppCompat
        -
        -
        See Also:
        -
        Constant Field Values
        -
        -
      • -
      - - - -
        -
      • -

        AlertDialog_AppCompat_Light

        -
        public static final int AlertDialog_AppCompat_Light
        -
        -
        See Also:
        -
        Constant Field Values
        -
        -
      • -
      - - - -
        -
      • -

        Animation_AppCompat_Dialog

        -
        public static final int Animation_AppCompat_Dialog
        -
        -
        See Also:
        -
        Constant Field Values
        -
        -
      • -
      - - - -
        -
      • -

        Animation_AppCompat_DropDownUp

        -
        public static final int Animation_AppCompat_DropDownUp
        -
        -
        See Also:
        -
        Constant Field Values
        -
        -
      • -
      - - - -
        -
      • -

        Animation_Design_BottomSheetDialog

        -
        public static final int Animation_Design_BottomSheetDialog
        -
        -
        See Also:
        -
        Constant Field Values
        -
        -
      • -
      - - - - - - - -
        -
      • -

        AppTheme_AppBarOverlay

        -
        public static final int AppTheme_AppBarOverlay
        -
        -
        See Also:
        -
        Constant Field Values
        -
        -
      • -
      - - - -
        -
      • -

        AppTheme_NoActionBar

        -
        public static final int AppTheme_NoActionBar
        -
        -
        See Also:
        -
        Constant Field Values
        -
        -
      • -
      - - - -
        -
      • -

        AppTheme_PopupOverlay

        -
        public static final int AppTheme_PopupOverlay
        -
        -
        See Also:
        -
        Constant Field Values
        -
        -
      • -
      - - - -
        -
      • -

        Base_AlertDialog_AppCompat

        -
        public static final int Base_AlertDialog_AppCompat
        -
        -
        See Also:
        -
        Constant Field Values
        -
        -
      • -
      - - - -
        -
      • -

        Base_AlertDialog_AppCompat_Light

        -
        public static final int Base_AlertDialog_AppCompat_Light
        -
        -
        See Also:
        -
        Constant Field Values
        -
        -
      • -
      - - - -
        -
      • -

        Base_Animation_AppCompat_Dialog

        -
        public static final int Base_Animation_AppCompat_Dialog
        -
        -
        See Also:
        -
        Constant Field Values
        -
        -
      • -
      - - - -
        -
      • -

        Base_Animation_AppCompat_DropDownUp

        -
        public static final int Base_Animation_AppCompat_DropDownUp
        -
        -
        See Also:
        -
        Constant Field Values
        -
        -
      • -
      - - - -
        -
      • -

        Base_DialogWindowTitle_AppCompat

        -
        public static final int Base_DialogWindowTitle_AppCompat
        -
        -
        See Also:
        -
        Constant Field Values
        -
        -
      • -
      - - - -
        -
      • -

        Base_DialogWindowTitleBackground_AppCompat

        -
        public static final int Base_DialogWindowTitleBackground_AppCompat
        -
        -
        See Also:
        -
        Constant Field Values
        -
        -
      • -
      - - - -
        -
      • -

        Base_TextAppearance_AppCompat

        -
        public static final int Base_TextAppearance_AppCompat
        -
        -
        See Also:
        -
        Constant Field Values
        -
        -
      • -
      - - - -
        -
      • -

        Base_TextAppearance_AppCompat_Body1

        -
        public static final int Base_TextAppearance_AppCompat_Body1
        -
        -
        See Also:
        -
        Constant Field Values
        -
        -
      • -
      - - - -
        -
      • -

        Base_TextAppearance_AppCompat_Body2

        -
        public static final int Base_TextAppearance_AppCompat_Body2
        -
        -
        See Also:
        -
        Constant Field Values
        -
        -
      • -
      - - - -
        -
      • -

        Base_TextAppearance_AppCompat_Button

        -
        public static final int Base_TextAppearance_AppCompat_Button
        -
        -
        See Also:
        -
        Constant Field Values
        -
        -
      • -
      - - - -
        -
      • -

        Base_TextAppearance_AppCompat_Caption

        -
        public static final int Base_TextAppearance_AppCompat_Caption
        -
        -
        See Also:
        -
        Constant Field Values
        -
        -
      • -
      - - - -
        -
      • -

        Base_TextAppearance_AppCompat_Display1

        -
        public static final int Base_TextAppearance_AppCompat_Display1
        -
        -
        See Also:
        -
        Constant Field Values
        -
        -
      • -
      - - - -
        -
      • -

        Base_TextAppearance_AppCompat_Display2

        -
        public static final int Base_TextAppearance_AppCompat_Display2
        -
        -
        See Also:
        -
        Constant Field Values
        -
        -
      • -
      - - - -
        -
      • -

        Base_TextAppearance_AppCompat_Display3

        -
        public static final int Base_TextAppearance_AppCompat_Display3
        -
        -
        See Also:
        -
        Constant Field Values
        -
        -
      • -
      - - - -
        -
      • -

        Base_TextAppearance_AppCompat_Display4

        -
        public static final int Base_TextAppearance_AppCompat_Display4
        -
        -
        See Also:
        -
        Constant Field Values
        -
        -
      • -
      - - - -
        -
      • -

        Base_TextAppearance_AppCompat_Headline

        -
        public static final int Base_TextAppearance_AppCompat_Headline
        -
        -
        See Also:
        -
        Constant Field Values
        -
        -
      • -
      - - - -
        -
      • -

        Base_TextAppearance_AppCompat_Inverse

        -
        public static final int Base_TextAppearance_AppCompat_Inverse
        -
        -
        See Also:
        -
        Constant Field Values
        -
        -
      • -
      - - - -
        -
      • -

        Base_TextAppearance_AppCompat_Large

        -
        public static final int Base_TextAppearance_AppCompat_Large
        -
        -
        See Also:
        -
        Constant Field Values
        -
        -
      • -
      - - - -
        -
      • -

        Base_TextAppearance_AppCompat_Large_Inverse

        -
        public static final int Base_TextAppearance_AppCompat_Large_Inverse
        -
        -
        See Also:
        -
        Constant Field Values
        -
        -
      • -
      - - - -
        -
      • -

        Base_TextAppearance_AppCompat_Light_Widget_PopupMenu_Large

        -
        public static final int Base_TextAppearance_AppCompat_Light_Widget_PopupMenu_Large
        -
        -
        See Also:
        -
        Constant Field Values
        -
        -
      • -
      - - - -
        -
      • -

        Base_TextAppearance_AppCompat_Light_Widget_PopupMenu_Small

        -
        public static final int Base_TextAppearance_AppCompat_Light_Widget_PopupMenu_Small
        -
        -
        See Also:
        -
        Constant Field Values
        -
        -
      • -
      - - - -
        -
      • -

        Base_TextAppearance_AppCompat_Medium

        -
        public static final int Base_TextAppearance_AppCompat_Medium
        -
        -
        See Also:
        -
        Constant Field Values
        -
        -
      • -
      - - - -
        -
      • -

        Base_TextAppearance_AppCompat_Medium_Inverse

        -
        public static final int Base_TextAppearance_AppCompat_Medium_Inverse
        -
        -
        See Also:
        -
        Constant Field Values
        -
        -
      • -
      - - - -
        -
      • -

        Base_TextAppearance_AppCompat_Menu

        -
        public static final int Base_TextAppearance_AppCompat_Menu
        -
        -
        See Also:
        -
        Constant Field Values
        -
        -
      • -
      - - - -
        -
      • -

        Base_TextAppearance_AppCompat_SearchResult

        -
        public static final int Base_TextAppearance_AppCompat_SearchResult
        -
        -
        See Also:
        -
        Constant Field Values
        -
        -
      • -
      - - - -
        -
      • -

        Base_TextAppearance_AppCompat_SearchResult_Subtitle

        -
        public static final int Base_TextAppearance_AppCompat_SearchResult_Subtitle
        -
        -
        See Also:
        -
        Constant Field Values
        -
        -
      • -
      - - - -
        -
      • -

        Base_TextAppearance_AppCompat_SearchResult_Title

        -
        public static final int Base_TextAppearance_AppCompat_SearchResult_Title
        -
        -
        See Also:
        -
        Constant Field Values
        -
        -
      • -
      - - - -
        -
      • -

        Base_TextAppearance_AppCompat_Small

        -
        public static final int Base_TextAppearance_AppCompat_Small
        -
        -
        See Also:
        -
        Constant Field Values
        -
        -
      • -
      - - - -
        -
      • -

        Base_TextAppearance_AppCompat_Small_Inverse

        -
        public static final int Base_TextAppearance_AppCompat_Small_Inverse
        -
        -
        See Also:
        -
        Constant Field Values
        -
        -
      • -
      - - - -
        -
      • -

        Base_TextAppearance_AppCompat_Subhead

        -
        public static final int Base_TextAppearance_AppCompat_Subhead
        -
        -
        See Also:
        -
        Constant Field Values
        -
        -
      • -
      - - - -
        -
      • -

        Base_TextAppearance_AppCompat_Subhead_Inverse

        -
        public static final int Base_TextAppearance_AppCompat_Subhead_Inverse
        -
        -
        See Also:
        -
        Constant Field Values
        -
        -
      • -
      - - - -
        -
      • -

        Base_TextAppearance_AppCompat_Title

        -
        public static final int Base_TextAppearance_AppCompat_Title
        -
        -
        See Also:
        -
        Constant Field Values
        -
        -
      • -
      - - - -
        -
      • -

        Base_TextAppearance_AppCompat_Title_Inverse

        -
        public static final int Base_TextAppearance_AppCompat_Title_Inverse
        -
        -
        See Also:
        -
        Constant Field Values
        -
        -
      • -
      - - - -
        -
      • -

        Base_TextAppearance_AppCompat_Widget_ActionBar_Menu

        -
        public static final int Base_TextAppearance_AppCompat_Widget_ActionBar_Menu
        -
        -
        See Also:
        -
        Constant Field Values
        -
        -
      • -
      - - - -
        -
      • -

        Base_TextAppearance_AppCompat_Widget_ActionBar_Subtitle

        -
        public static final int Base_TextAppearance_AppCompat_Widget_ActionBar_Subtitle
        -
        -
        See Also:
        -
        Constant Field Values
        -
        -
      • -
      - - - -
        -
      • -

        Base_TextAppearance_AppCompat_Widget_ActionBar_Subtitle_Inverse

        -
        public static final int Base_TextAppearance_AppCompat_Widget_ActionBar_Subtitle_Inverse
        -
        -
        See Also:
        -
        Constant Field Values
        -
        -
      • -
      - - - -
        -
      • -

        Base_TextAppearance_AppCompat_Widget_ActionBar_Title

        -
        public static final int Base_TextAppearance_AppCompat_Widget_ActionBar_Title
        -
        -
        See Also:
        -
        Constant Field Values
        -
        -
      • -
      - - - -
        -
      • -

        Base_TextAppearance_AppCompat_Widget_ActionBar_Title_Inverse

        -
        public static final int Base_TextAppearance_AppCompat_Widget_ActionBar_Title_Inverse
        -
        -
        See Also:
        -
        Constant Field Values
        -
        -
      • -
      - - - -
        -
      • -

        Base_TextAppearance_AppCompat_Widget_ActionMode_Subtitle

        -
        public static final int Base_TextAppearance_AppCompat_Widget_ActionMode_Subtitle
        -
        -
        See Also:
        -
        Constant Field Values
        -
        -
      • -
      - - - -
        -
      • -

        Base_TextAppearance_AppCompat_Widget_ActionMode_Title

        -
        public static final int Base_TextAppearance_AppCompat_Widget_ActionMode_Title
        -
        -
        See Also:
        -
        Constant Field Values
        -
        -
      • -
      - - - -
        -
      • -

        Base_TextAppearance_AppCompat_Widget_Button

        -
        public static final int Base_TextAppearance_AppCompat_Widget_Button
        -
        -
        See Also:
        -
        Constant Field Values
        -
        -
      • -
      - - - -
        -
      • -

        Base_TextAppearance_AppCompat_Widget_Button_Borderless_Colored

        -
        public static final int Base_TextAppearance_AppCompat_Widget_Button_Borderless_Colored
        -
        -
        See Also:
        -
        Constant Field Values
        -
        -
      • -
      - - - -
        -
      • -

        Base_TextAppearance_AppCompat_Widget_Button_Colored

        -
        public static final int Base_TextAppearance_AppCompat_Widget_Button_Colored
        -
        -
        See Also:
        -
        Constant Field Values
        -
        -
      • -
      - - - -
        -
      • -

        Base_TextAppearance_AppCompat_Widget_Button_Inverse

        -
        public static final int Base_TextAppearance_AppCompat_Widget_Button_Inverse
        -
        -
        See Also:
        -
        Constant Field Values
        -
        -
      • -
      - - - -
        -
      • -

        Base_TextAppearance_AppCompat_Widget_DropDownItem

        -
        public static final int Base_TextAppearance_AppCompat_Widget_DropDownItem
        -
        -
        See Also:
        -
        Constant Field Values
        -
        -
      • -
      - - - -
        -
      • -

        Base_TextAppearance_AppCompat_Widget_PopupMenu_Header

        -
        public static final int Base_TextAppearance_AppCompat_Widget_PopupMenu_Header
        -
        -
        See Also:
        -
        Constant Field Values
        -
        -
      • -
      - - - -
        -
      • -

        Base_TextAppearance_AppCompat_Widget_PopupMenu_Large

        -
        public static final int Base_TextAppearance_AppCompat_Widget_PopupMenu_Large
        -
        -
        See Also:
        -
        Constant Field Values
        -
        -
      • -
      - - - -
        -
      • -

        Base_TextAppearance_AppCompat_Widget_PopupMenu_Small

        -
        public static final int Base_TextAppearance_AppCompat_Widget_PopupMenu_Small
        -
        -
        See Also:
        -
        Constant Field Values
        -
        -
      • -
      - - - -
        -
      • -

        Base_TextAppearance_AppCompat_Widget_Switch

        -
        public static final int Base_TextAppearance_AppCompat_Widget_Switch
        -
        -
        See Also:
        -
        Constant Field Values
        -
        -
      • -
      - - - -
        -
      • -

        Base_TextAppearance_AppCompat_Widget_TextView_SpinnerItem

        -
        public static final int Base_TextAppearance_AppCompat_Widget_TextView_SpinnerItem
        -
        -
        See Also:
        -
        Constant Field Values
        -
        -
      • -
      - - - -
        -
      • -

        Base_TextAppearance_Widget_AppCompat_ExpandedMenu_Item

        -
        public static final int Base_TextAppearance_Widget_AppCompat_ExpandedMenu_Item
        -
        -
        See Also:
        -
        Constant Field Values
        -
        -
      • -
      - - - -
        -
      • -

        Base_TextAppearance_Widget_AppCompat_Toolbar_Subtitle

        -
        public static final int Base_TextAppearance_Widget_AppCompat_Toolbar_Subtitle
        -
        -
        See Also:
        -
        Constant Field Values
        -
        -
      • -
      - - - -
        -
      • -

        Base_TextAppearance_Widget_AppCompat_Toolbar_Title

        -
        public static final int Base_TextAppearance_Widget_AppCompat_Toolbar_Title
        -
        -
        See Also:
        -
        Constant Field Values
        -
        -
      • -
      - - - -
        -
      • -

        Base_Theme_AppCompat

        -
        public static final int Base_Theme_AppCompat
        -
        -
        See Also:
        -
        Constant Field Values
        -
        -
      • -
      - - - -
        -
      • -

        Base_Theme_AppCompat_CompactMenu

        -
        public static final int Base_Theme_AppCompat_CompactMenu
        -
        -
        See Also:
        -
        Constant Field Values
        -
        -
      • -
      - - - -
        -
      • -

        Base_Theme_AppCompat_Dialog

        -
        public static final int Base_Theme_AppCompat_Dialog
        -
        -
        See Also:
        -
        Constant Field Values
        -
        -
      • -
      - - - -
        -
      • -

        Base_Theme_AppCompat_Dialog_Alert

        -
        public static final int Base_Theme_AppCompat_Dialog_Alert
        -
        -
        See Also:
        -
        Constant Field Values
        -
        -
      • -
      - - - -
        -
      • -

        Base_Theme_AppCompat_Dialog_FixedSize

        -
        public static final int Base_Theme_AppCompat_Dialog_FixedSize
        -
        -
        See Also:
        -
        Constant Field Values
        -
        -
      • -
      - - - -
        -
      • -

        Base_Theme_AppCompat_Dialog_MinWidth

        -
        public static final int Base_Theme_AppCompat_Dialog_MinWidth
        -
        -
        See Also:
        -
        Constant Field Values
        -
        -
      • -
      - - - -
        -
      • -

        Base_Theme_AppCompat_DialogWhenLarge

        -
        public static final int Base_Theme_AppCompat_DialogWhenLarge
        -
        -
        See Also:
        -
        Constant Field Values
        -
        -
      • -
      - - - -
        -
      • -

        Base_Theme_AppCompat_Light

        -
        public static final int Base_Theme_AppCompat_Light
        -
        -
        See Also:
        -
        Constant Field Values
        -
        -
      • -
      - - - -
        -
      • -

        Base_Theme_AppCompat_Light_DarkActionBar

        -
        public static final int Base_Theme_AppCompat_Light_DarkActionBar
        -
        -
        See Also:
        -
        Constant Field Values
        -
        -
      • -
      - - - -
        -
      • -

        Base_Theme_AppCompat_Light_Dialog

        -
        public static final int Base_Theme_AppCompat_Light_Dialog
        -
        -
        See Also:
        -
        Constant Field Values
        -
        -
      • -
      - - - -
        -
      • -

        Base_Theme_AppCompat_Light_Dialog_Alert

        -
        public static final int Base_Theme_AppCompat_Light_Dialog_Alert
        -
        -
        See Also:
        -
        Constant Field Values
        -
        -
      • -
      - - - -
        -
      • -

        Base_Theme_AppCompat_Light_Dialog_FixedSize

        -
        public static final int Base_Theme_AppCompat_Light_Dialog_FixedSize
        -
        -
        See Also:
        -
        Constant Field Values
        -
        -
      • -
      - - - -
        -
      • -

        Base_Theme_AppCompat_Light_Dialog_MinWidth

        -
        public static final int Base_Theme_AppCompat_Light_Dialog_MinWidth
        -
        -
        See Also:
        -
        Constant Field Values
        -
        -
      • -
      - - - -
        -
      • -

        Base_Theme_AppCompat_Light_DialogWhenLarge

        -
        public static final int Base_Theme_AppCompat_Light_DialogWhenLarge
        -
        -
        See Also:
        -
        Constant Field Values
        -
        -
      • -
      - - - -
        -
      • -

        Base_ThemeOverlay_AppCompat

        -
        public static final int Base_ThemeOverlay_AppCompat
        -
        -
        See Also:
        -
        Constant Field Values
        -
        -
      • -
      - - - -
        -
      • -

        Base_ThemeOverlay_AppCompat_ActionBar

        -
        public static final int Base_ThemeOverlay_AppCompat_ActionBar
        -
        -
        See Also:
        -
        Constant Field Values
        -
        -
      • -
      - - - -
        -
      • -

        Base_ThemeOverlay_AppCompat_Dark

        -
        public static final int Base_ThemeOverlay_AppCompat_Dark
        -
        -
        See Also:
        -
        Constant Field Values
        -
        -
      • -
      - - - -
        -
      • -

        Base_ThemeOverlay_AppCompat_Dark_ActionBar

        -
        public static final int Base_ThemeOverlay_AppCompat_Dark_ActionBar
        -
        -
        See Also:
        -
        Constant Field Values
        -
        -
      • -
      - - - -
        -
      • -

        Base_ThemeOverlay_AppCompat_Dialog

        -
        public static final int Base_ThemeOverlay_AppCompat_Dialog
        -
        -
        See Also:
        -
        Constant Field Values
        -
        -
      • -
      - - - -
        -
      • -

        Base_ThemeOverlay_AppCompat_Dialog_Alert

        -
        public static final int Base_ThemeOverlay_AppCompat_Dialog_Alert
        -
        -
        See Also:
        -
        Constant Field Values
        -
        -
      • -
      - - - -
        -
      • -

        Base_ThemeOverlay_AppCompat_Light

        -
        public static final int Base_ThemeOverlay_AppCompat_Light
        -
        -
        See Also:
        -
        Constant Field Values
        -
        -
      • -
      - - - -
        -
      • -

        Base_V11_Theme_AppCompat_Dialog

        -
        public static final int Base_V11_Theme_AppCompat_Dialog
        -
        -
        See Also:
        -
        Constant Field Values
        -
        -
      • -
      - - - -
        -
      • -

        Base_V11_Theme_AppCompat_Light_Dialog

        -
        public static final int Base_V11_Theme_AppCompat_Light_Dialog
        -
        -
        See Also:
        -
        Constant Field Values
        -
        -
      • -
      - - - -
        -
      • -

        Base_V11_ThemeOverlay_AppCompat_Dialog

        -
        public static final int Base_V11_ThemeOverlay_AppCompat_Dialog
        -
        -
        See Also:
        -
        Constant Field Values
        -
        -
      • -
      - - - -
        -
      • -

        Base_V12_Widget_AppCompat_AutoCompleteTextView

        -
        public static final int Base_V12_Widget_AppCompat_AutoCompleteTextView
        -
        -
        See Also:
        -
        Constant Field Values
        -
        -
      • -
      - - - -
        -
      • -

        Base_V12_Widget_AppCompat_EditText

        -
        public static final int Base_V12_Widget_AppCompat_EditText
        -
        -
        See Also:
        -
        Constant Field Values
        -
        -
      • -
      - - - -
        -
      • -

        Base_V21_Theme_AppCompat

        -
        public static final int Base_V21_Theme_AppCompat
        -
        -
        See Also:
        -
        Constant Field Values
        -
        -
      • -
      - - - -
        -
      • -

        Base_V21_Theme_AppCompat_Dialog

        -
        public static final int Base_V21_Theme_AppCompat_Dialog
        -
        -
        See Also:
        -
        Constant Field Values
        -
        -
      • -
      - - - -
        -
      • -

        Base_V21_Theme_AppCompat_Light

        -
        public static final int Base_V21_Theme_AppCompat_Light
        -
        -
        See Also:
        -
        Constant Field Values
        -
        -
      • -
      - - - -
        -
      • -

        Base_V21_Theme_AppCompat_Light_Dialog

        -
        public static final int Base_V21_Theme_AppCompat_Light_Dialog
        -
        -
        See Also:
        -
        Constant Field Values
        -
        -
      • -
      - - - -
        -
      • -

        Base_V21_ThemeOverlay_AppCompat_Dialog

        -
        public static final int Base_V21_ThemeOverlay_AppCompat_Dialog
        -
        -
        See Also:
        -
        Constant Field Values
        -
        -
      • -
      - - - -
        -
      • -

        Base_V22_Theme_AppCompat

        -
        public static final int Base_V22_Theme_AppCompat
        -
        -
        See Also:
        -
        Constant Field Values
        -
        -
      • -
      - - - -
        -
      • -

        Base_V22_Theme_AppCompat_Light

        -
        public static final int Base_V22_Theme_AppCompat_Light
        -
        -
        See Also:
        -
        Constant Field Values
        -
        -
      • -
      - - - -
        -
      • -

        Base_V23_Theme_AppCompat

        -
        public static final int Base_V23_Theme_AppCompat
        -
        -
        See Also:
        -
        Constant Field Values
        -
        -
      • -
      - - - -
        -
      • -

        Base_V23_Theme_AppCompat_Light

        -
        public static final int Base_V23_Theme_AppCompat_Light
        -
        -
        See Also:
        -
        Constant Field Values
        -
        -
      • -
      - - - -
        -
      • -

        Base_V7_Theme_AppCompat

        -
        public static final int Base_V7_Theme_AppCompat
        -
        -
        See Also:
        -
        Constant Field Values
        -
        -
      • -
      - - - -
        -
      • -

        Base_V7_Theme_AppCompat_Dialog

        -
        public static final int Base_V7_Theme_AppCompat_Dialog
        -
        -
        See Also:
        -
        Constant Field Values
        -
        -
      • -
      - - - -
        -
      • -

        Base_V7_Theme_AppCompat_Light

        -
        public static final int Base_V7_Theme_AppCompat_Light
        -
        -
        See Also:
        -
        Constant Field Values
        -
        -
      • -
      - - - -
        -
      • -

        Base_V7_Theme_AppCompat_Light_Dialog

        -
        public static final int Base_V7_Theme_AppCompat_Light_Dialog
        -
        -
        See Also:
        -
        Constant Field Values
        -
        -
      • -
      - - - -
        -
      • -

        Base_V7_ThemeOverlay_AppCompat_Dialog

        -
        public static final int Base_V7_ThemeOverlay_AppCompat_Dialog
        -
        -
        See Also:
        -
        Constant Field Values
        -
        -
      • -
      - - - -
        -
      • -

        Base_V7_Widget_AppCompat_AutoCompleteTextView

        -
        public static final int Base_V7_Widget_AppCompat_AutoCompleteTextView
        -
        -
        See Also:
        -
        Constant Field Values
        -
        -
      • -
      - - - -
        -
      • -

        Base_V7_Widget_AppCompat_EditText

        -
        public static final int Base_V7_Widget_AppCompat_EditText
        -
        -
        See Also:
        -
        Constant Field Values
        -
        -
      • -
      - - - -
        -
      • -

        Base_Widget_AppCompat_ActionBar

        -
        public static final int Base_Widget_AppCompat_ActionBar
        -
        -
        See Also:
        -
        Constant Field Values
        -
        -
      • -
      - - - -
        -
      • -

        Base_Widget_AppCompat_ActionBar_Solid

        -
        public static final int Base_Widget_AppCompat_ActionBar_Solid
        -
        -
        See Also:
        -
        Constant Field Values
        -
        -
      • -
      - - - -
        -
      • -

        Base_Widget_AppCompat_ActionBar_TabBar

        -
        public static final int Base_Widget_AppCompat_ActionBar_TabBar
        -
        -
        See Also:
        -
        Constant Field Values
        -
        -
      • -
      - - - -
        -
      • -

        Base_Widget_AppCompat_ActionBar_TabText

        -
        public static final int Base_Widget_AppCompat_ActionBar_TabText
        -
        -
        See Also:
        -
        Constant Field Values
        -
        -
      • -
      - - - -
        -
      • -

        Base_Widget_AppCompat_ActionBar_TabView

        -
        public static final int Base_Widget_AppCompat_ActionBar_TabView
        -
        -
        See Also:
        -
        Constant Field Values
        -
        -
      • -
      - - - -
        -
      • -

        Base_Widget_AppCompat_ActionButton

        -
        public static final int Base_Widget_AppCompat_ActionButton
        -
        -
        See Also:
        -
        Constant Field Values
        -
        -
      • -
      - - - -
        -
      • -

        Base_Widget_AppCompat_ActionButton_CloseMode

        -
        public static final int Base_Widget_AppCompat_ActionButton_CloseMode
        -
        -
        See Also:
        -
        Constant Field Values
        -
        -
      • -
      - - - -
        -
      • -

        Base_Widget_AppCompat_ActionButton_Overflow

        -
        public static final int Base_Widget_AppCompat_ActionButton_Overflow
        -
        -
        See Also:
        -
        Constant Field Values
        -
        -
      • -
      - - - -
        -
      • -

        Base_Widget_AppCompat_ActionMode

        -
        public static final int Base_Widget_AppCompat_ActionMode
        -
        -
        See Also:
        -
        Constant Field Values
        -
        -
      • -
      - - - -
        -
      • -

        Base_Widget_AppCompat_ActivityChooserView

        -
        public static final int Base_Widget_AppCompat_ActivityChooserView
        -
        -
        See Also:
        -
        Constant Field Values
        -
        -
      • -
      - - - -
        -
      • -

        Base_Widget_AppCompat_AutoCompleteTextView

        -
        public static final int Base_Widget_AppCompat_AutoCompleteTextView
        -
        -
        See Also:
        -
        Constant Field Values
        -
        -
      • -
      - - - -
        -
      • -

        Base_Widget_AppCompat_Button

        -
        public static final int Base_Widget_AppCompat_Button
        -
        -
        See Also:
        -
        Constant Field Values
        -
        -
      • -
      - - - -
        -
      • -

        Base_Widget_AppCompat_Button_Borderless

        -
        public static final int Base_Widget_AppCompat_Button_Borderless
        -
        -
        See Also:
        -
        Constant Field Values
        -
        -
      • -
      - - - -
        -
      • -

        Base_Widget_AppCompat_Button_Borderless_Colored

        -
        public static final int Base_Widget_AppCompat_Button_Borderless_Colored
        -
        -
        See Also:
        -
        Constant Field Values
        -
        -
      • -
      - - - -
        -
      • -

        Base_Widget_AppCompat_Button_ButtonBar_AlertDialog

        -
        public static final int Base_Widget_AppCompat_Button_ButtonBar_AlertDialog
        -
        -
        See Also:
        -
        Constant Field Values
        -
        -
      • -
      - - - -
        -
      • -

        Base_Widget_AppCompat_Button_Colored

        -
        public static final int Base_Widget_AppCompat_Button_Colored
        -
        -
        See Also:
        -
        Constant Field Values
        -
        -
      • -
      - - - -
        -
      • -

        Base_Widget_AppCompat_Button_Small

        -
        public static final int Base_Widget_AppCompat_Button_Small
        -
        -
        See Also:
        -
        Constant Field Values
        -
        -
      • -
      - - - -
        -
      • -

        Base_Widget_AppCompat_ButtonBar

        -
        public static final int Base_Widget_AppCompat_ButtonBar
        -
        -
        See Also:
        -
        Constant Field Values
        -
        -
      • -
      - - - -
        -
      • -

        Base_Widget_AppCompat_ButtonBar_AlertDialog

        -
        public static final int Base_Widget_AppCompat_ButtonBar_AlertDialog
        -
        -
        See Also:
        -
        Constant Field Values
        -
        -
      • -
      - - - -
        -
      • -

        Base_Widget_AppCompat_CompoundButton_CheckBox

        -
        public static final int Base_Widget_AppCompat_CompoundButton_CheckBox
        -
        -
        See Also:
        -
        Constant Field Values
        -
        -
      • -
      - - - -
        -
      • -

        Base_Widget_AppCompat_CompoundButton_RadioButton

        -
        public static final int Base_Widget_AppCompat_CompoundButton_RadioButton
        -
        -
        See Also:
        -
        Constant Field Values
        -
        -
      • -
      - - - -
        -
      • -

        Base_Widget_AppCompat_CompoundButton_Switch

        -
        public static final int Base_Widget_AppCompat_CompoundButton_Switch
        -
        -
        See Also:
        -
        Constant Field Values
        -
        -
      • -
      - - - -
        -
      • -

        Base_Widget_AppCompat_DrawerArrowToggle

        -
        public static final int Base_Widget_AppCompat_DrawerArrowToggle
        -
        -
        See Also:
        -
        Constant Field Values
        -
        -
      • -
      - - - -
        -
      • -

        Base_Widget_AppCompat_DrawerArrowToggle_Common

        -
        public static final int Base_Widget_AppCompat_DrawerArrowToggle_Common
        -
        -
        See Also:
        -
        Constant Field Values
        -
        -
      • -
      - - - -
        -
      • -

        Base_Widget_AppCompat_DropDownItem_Spinner

        -
        public static final int Base_Widget_AppCompat_DropDownItem_Spinner
        -
        -
        See Also:
        -
        Constant Field Values
        -
        -
      • -
      - - - -
        -
      • -

        Base_Widget_AppCompat_EditText

        -
        public static final int Base_Widget_AppCompat_EditText
        -
        -
        See Also:
        -
        Constant Field Values
        -
        -
      • -
      - - - -
        -
      • -

        Base_Widget_AppCompat_ImageButton

        -
        public static final int Base_Widget_AppCompat_ImageButton
        -
        -
        See Also:
        -
        Constant Field Values
        -
        -
      • -
      - - - -
        -
      • -

        Base_Widget_AppCompat_Light_ActionBar

        -
        public static final int Base_Widget_AppCompat_Light_ActionBar
        -
        -
        See Also:
        -
        Constant Field Values
        -
        -
      • -
      - - - -
        -
      • -

        Base_Widget_AppCompat_Light_ActionBar_Solid

        -
        public static final int Base_Widget_AppCompat_Light_ActionBar_Solid
        -
        -
        See Also:
        -
        Constant Field Values
        -
        -
      • -
      - - - -
        -
      • -

        Base_Widget_AppCompat_Light_ActionBar_TabBar

        -
        public static final int Base_Widget_AppCompat_Light_ActionBar_TabBar
        -
        -
        See Also:
        -
        Constant Field Values
        -
        -
      • -
      - - - -
        -
      • -

        Base_Widget_AppCompat_Light_ActionBar_TabText

        -
        public static final int Base_Widget_AppCompat_Light_ActionBar_TabText
        -
        -
        See Also:
        -
        Constant Field Values
        -
        -
      • -
      - - - -
        -
      • -

        Base_Widget_AppCompat_Light_ActionBar_TabText_Inverse

        -
        public static final int Base_Widget_AppCompat_Light_ActionBar_TabText_Inverse
        -
        -
        See Also:
        -
        Constant Field Values
        -
        -
      • -
      - - - -
        -
      • -

        Base_Widget_AppCompat_Light_ActionBar_TabView

        -
        public static final int Base_Widget_AppCompat_Light_ActionBar_TabView
        -
        -
        See Also:
        -
        Constant Field Values
        -
        -
      • -
      - - - -
        -
      • -

        Base_Widget_AppCompat_Light_PopupMenu

        -
        public static final int Base_Widget_AppCompat_Light_PopupMenu
        -
        -
        See Also:
        -
        Constant Field Values
        -
        -
      • -
      - - - -
        -
      • -

        Base_Widget_AppCompat_Light_PopupMenu_Overflow

        -
        public static final int Base_Widget_AppCompat_Light_PopupMenu_Overflow
        -
        -
        See Also:
        -
        Constant Field Values
        -
        -
      • -
      - - - -
        -
      • -

        Base_Widget_AppCompat_ListMenuView

        -
        public static final int Base_Widget_AppCompat_ListMenuView
        -
        -
        See Also:
        -
        Constant Field Values
        -
        -
      • -
      - - - -
        -
      • -

        Base_Widget_AppCompat_ListPopupWindow

        -
        public static final int Base_Widget_AppCompat_ListPopupWindow
        -
        -
        See Also:
        -
        Constant Field Values
        -
        -
      • -
      - - - -
        -
      • -

        Base_Widget_AppCompat_ListView

        -
        public static final int Base_Widget_AppCompat_ListView
        -
        -
        See Also:
        -
        Constant Field Values
        -
        -
      • -
      - - - -
        -
      • -

        Base_Widget_AppCompat_ListView_DropDown

        -
        public static final int Base_Widget_AppCompat_ListView_DropDown
        -
        -
        See Also:
        -
        Constant Field Values
        -
        -
      • -
      - - - -
        -
      • -

        Base_Widget_AppCompat_ListView_Menu

        -
        public static final int Base_Widget_AppCompat_ListView_Menu
        -
        -
        See Also:
        -
        Constant Field Values
        -
        -
      • -
      - - - -
        -
      • -

        Base_Widget_AppCompat_PopupMenu

        -
        public static final int Base_Widget_AppCompat_PopupMenu
        -
        -
        See Also:
        -
        Constant Field Values
        -
        -
      • -
      - - - -
        -
      • -

        Base_Widget_AppCompat_PopupMenu_Overflow

        -
        public static final int Base_Widget_AppCompat_PopupMenu_Overflow
        -
        -
        See Also:
        -
        Constant Field Values
        -
        -
      • -
      - - - -
        -
      • -

        Base_Widget_AppCompat_PopupWindow

        -
        public static final int Base_Widget_AppCompat_PopupWindow
        -
        -
        See Also:
        -
        Constant Field Values
        -
        -
      • -
      - - - -
        -
      • -

        Base_Widget_AppCompat_ProgressBar

        -
        public static final int Base_Widget_AppCompat_ProgressBar
        -
        -
        See Also:
        -
        Constant Field Values
        -
        -
      • -
      - - - -
        -
      • -

        Base_Widget_AppCompat_ProgressBar_Horizontal

        -
        public static final int Base_Widget_AppCompat_ProgressBar_Horizontal
        -
        -
        See Also:
        -
        Constant Field Values
        -
        -
      • -
      - - - -
        -
      • -

        Base_Widget_AppCompat_RatingBar

        -
        public static final int Base_Widget_AppCompat_RatingBar
        -
        -
        See Also:
        -
        Constant Field Values
        -
        -
      • -
      - - - -
        -
      • -

        Base_Widget_AppCompat_RatingBar_Indicator

        -
        public static final int Base_Widget_AppCompat_RatingBar_Indicator
        -
        -
        See Also:
        -
        Constant Field Values
        -
        -
      • -
      - - - -
        -
      • -

        Base_Widget_AppCompat_RatingBar_Small

        -
        public static final int Base_Widget_AppCompat_RatingBar_Small
        -
        -
        See Also:
        -
        Constant Field Values
        -
        -
      • -
      - - - -
        -
      • -

        Base_Widget_AppCompat_SearchView

        -
        public static final int Base_Widget_AppCompat_SearchView
        -
        -
        See Also:
        -
        Constant Field Values
        -
        -
      • -
      - - - -
        -
      • -

        Base_Widget_AppCompat_SearchView_ActionBar

        -
        public static final int Base_Widget_AppCompat_SearchView_ActionBar
        -
        -
        See Also:
        -
        Constant Field Values
        -
        -
      • -
      - - - -
        -
      • -

        Base_Widget_AppCompat_SeekBar

        -
        public static final int Base_Widget_AppCompat_SeekBar
        -
        -
        See Also:
        -
        Constant Field Values
        -
        -
      • -
      - - - -
        -
      • -

        Base_Widget_AppCompat_SeekBar_Discrete

        -
        public static final int Base_Widget_AppCompat_SeekBar_Discrete
        -
        -
        See Also:
        -
        Constant Field Values
        -
        -
      • -
      - - - -
        -
      • -

        Base_Widget_AppCompat_Spinner

        -
        public static final int Base_Widget_AppCompat_Spinner
        -
        -
        See Also:
        -
        Constant Field Values
        -
        -
      • -
      - - - -
        -
      • -

        Base_Widget_AppCompat_Spinner_Underlined

        -
        public static final int Base_Widget_AppCompat_Spinner_Underlined
        -
        -
        See Also:
        -
        Constant Field Values
        -
        -
      • -
      - - - -
        -
      • -

        Base_Widget_AppCompat_TextView_SpinnerItem

        -
        public static final int Base_Widget_AppCompat_TextView_SpinnerItem
        -
        -
        See Also:
        -
        Constant Field Values
        -
        -
      • -
      - - - -
        -
      • -

        Base_Widget_AppCompat_Toolbar

        -
        public static final int Base_Widget_AppCompat_Toolbar
        -
        -
        See Also:
        -
        Constant Field Values
        -
        -
      • -
      - - - -
        -
      • -

        Base_Widget_AppCompat_Toolbar_Button_Navigation

        -
        public static final int Base_Widget_AppCompat_Toolbar_Button_Navigation
        -
        -
        See Also:
        -
        Constant Field Values
        -
        -
      • -
      - - - -
        -
      • -

        Base_Widget_Design_AppBarLayout

        -
        public static final int Base_Widget_Design_AppBarLayout
        -
        -
        See Also:
        -
        Constant Field Values
        -
        -
      • -
      - - - -
        -
      • -

        Base_Widget_Design_TabLayout

        -
        public static final int Base_Widget_Design_TabLayout
        -
        -
        See Also:
        -
        Constant Field Values
        -
        -
      • -
      - - - -
        -
      • -

        Platform_AppCompat

        -
        public static final int Platform_AppCompat
        -
        -
        See Also:
        -
        Constant Field Values
        -
        -
      • -
      - - - -
        -
      • -

        Platform_AppCompat_Light

        -
        public static final int Platform_AppCompat_Light
        -
        -
        See Also:
        -
        Constant Field Values
        -
        -
      • -
      - - - -
        -
      • -

        Platform_ThemeOverlay_AppCompat

        -
        public static final int Platform_ThemeOverlay_AppCompat
        -
        -
        See Also:
        -
        Constant Field Values
        -
        -
      • -
      - - - -
        -
      • -

        Platform_ThemeOverlay_AppCompat_Dark

        -
        public static final int Platform_ThemeOverlay_AppCompat_Dark
        -
        -
        See Also:
        -
        Constant Field Values
        -
        -
      • -
      - - - -
        -
      • -

        Platform_ThemeOverlay_AppCompat_Light

        -
        public static final int Platform_ThemeOverlay_AppCompat_Light
        -
        -
        See Also:
        -
        Constant Field Values
        -
        -
      • -
      - - - -
        -
      • -

        Platform_V11_AppCompat

        -
        public static final int Platform_V11_AppCompat
        -
        -
        See Also:
        -
        Constant Field Values
        -
        -
      • -
      - - - -
        -
      • -

        Platform_V11_AppCompat_Light

        -
        public static final int Platform_V11_AppCompat_Light
        -
        -
        See Also:
        -
        Constant Field Values
        -
        -
      • -
      - - - -
        -
      • -

        Platform_V14_AppCompat

        -
        public static final int Platform_V14_AppCompat
        -
        -
        See Also:
        -
        Constant Field Values
        -
        -
      • -
      - - - -
        -
      • -

        Platform_V14_AppCompat_Light

        -
        public static final int Platform_V14_AppCompat_Light
        -
        -
        See Also:
        -
        Constant Field Values
        -
        -
      • -
      - - - -
        -
      • -

        Platform_V21_AppCompat

        -
        public static final int Platform_V21_AppCompat
        -
        -
        See Also:
        -
        Constant Field Values
        -
        -
      • -
      - - - -
        -
      • -

        Platform_V21_AppCompat_Light

        -
        public static final int Platform_V21_AppCompat_Light
        -
        -
        See Also:
        -
        Constant Field Values
        -
        -
      • -
      - - - -
        -
      • -

        Platform_V25_AppCompat

        -
        public static final int Platform_V25_AppCompat
        -
        -
        See Also:
        -
        Constant Field Values
        -
        -
      • -
      - - - -
        -
      • -

        Platform_V25_AppCompat_Light

        -
        public static final int Platform_V25_AppCompat_Light
        -
        -
        See Also:
        -
        Constant Field Values
        -
        -
      • -
      - - - -
        -
      • -

        Platform_Widget_AppCompat_Spinner

        -
        public static final int Platform_Widget_AppCompat_Spinner
        -
        -
        See Also:
        -
        Constant Field Values
        -
        -
      • -
      - - - -
        -
      • -

        RtlOverlay_DialogWindowTitle_AppCompat

        -
        public static final int RtlOverlay_DialogWindowTitle_AppCompat
        -
        -
        See Also:
        -
        Constant Field Values
        -
        -
      • -
      - - - -
        -
      • -

        RtlOverlay_Widget_AppCompat_ActionBar_TitleItem

        -
        public static final int RtlOverlay_Widget_AppCompat_ActionBar_TitleItem
        -
        -
        See Also:
        -
        Constant Field Values
        -
        -
      • -
      - - - -
        -
      • -

        RtlOverlay_Widget_AppCompat_DialogTitle_Icon

        -
        public static final int RtlOverlay_Widget_AppCompat_DialogTitle_Icon
        -
        -
        See Also:
        -
        Constant Field Values
        -
        -
      • -
      - - - -
        -
      • -

        RtlOverlay_Widget_AppCompat_PopupMenuItem

        -
        public static final int RtlOverlay_Widget_AppCompat_PopupMenuItem
        -
        -
        See Also:
        -
        Constant Field Values
        -
        -
      • -
      - - - -
        -
      • -

        RtlOverlay_Widget_AppCompat_PopupMenuItem_InternalGroup

        -
        public static final int RtlOverlay_Widget_AppCompat_PopupMenuItem_InternalGroup
        -
        -
        See Also:
        -
        Constant Field Values
        -
        -
      • -
      - - - -
        -
      • -

        RtlOverlay_Widget_AppCompat_PopupMenuItem_Text

        -
        public static final int RtlOverlay_Widget_AppCompat_PopupMenuItem_Text
        -
        -
        See Also:
        -
        Constant Field Values
        -
        -
      • -
      - - - -
        -
      • -

        RtlOverlay_Widget_AppCompat_Search_DropDown

        -
        public static final int RtlOverlay_Widget_AppCompat_Search_DropDown
        -
        -
        See Also:
        -
        Constant Field Values
        -
        -
      • -
      - - - -
        -
      • -

        RtlOverlay_Widget_AppCompat_Search_DropDown_Icon1

        -
        public static final int RtlOverlay_Widget_AppCompat_Search_DropDown_Icon1
        -
        -
        See Also:
        -
        Constant Field Values
        -
        -
      • -
      - - - -
        -
      • -

        RtlOverlay_Widget_AppCompat_Search_DropDown_Icon2

        -
        public static final int RtlOverlay_Widget_AppCompat_Search_DropDown_Icon2
        -
        -
        See Also:
        -
        Constant Field Values
        -
        -
      • -
      - - - -
        -
      • -

        RtlOverlay_Widget_AppCompat_Search_DropDown_Query

        -
        public static final int RtlOverlay_Widget_AppCompat_Search_DropDown_Query
        -
        -
        See Also:
        -
        Constant Field Values
        -
        -
      • -
      - - - -
        -
      • -

        RtlOverlay_Widget_AppCompat_Search_DropDown_Text

        -
        public static final int RtlOverlay_Widget_AppCompat_Search_DropDown_Text
        -
        -
        See Also:
        -
        Constant Field Values
        -
        -
      • -
      - - - -
        -
      • -

        RtlOverlay_Widget_AppCompat_SearchView_MagIcon

        -
        public static final int RtlOverlay_Widget_AppCompat_SearchView_MagIcon
        -
        -
        See Also:
        -
        Constant Field Values
        -
        -
      • -
      - - - -
        -
      • -

        RtlUnderlay_Widget_AppCompat_ActionButton

        -
        public static final int RtlUnderlay_Widget_AppCompat_ActionButton
        -
        -
        See Also:
        -
        Constant Field Values
        -
        -
      • -
      - - - -
        -
      • -

        RtlUnderlay_Widget_AppCompat_ActionButton_Overflow

        -
        public static final int RtlUnderlay_Widget_AppCompat_ActionButton_Overflow
        -
        -
        See Also:
        -
        Constant Field Values
        -
        -
      • -
      - - - -
        -
      • -

        TextAppearance_AppCompat

        -
        public static final int TextAppearance_AppCompat
        -
        -
        See Also:
        -
        Constant Field Values
        -
        -
      • -
      - - - -
        -
      • -

        TextAppearance_AppCompat_Body1

        -
        public static final int TextAppearance_AppCompat_Body1
        -
        -
        See Also:
        -
        Constant Field Values
        -
        -
      • -
      - - - -
        -
      • -

        TextAppearance_AppCompat_Body2

        -
        public static final int TextAppearance_AppCompat_Body2
        -
        -
        See Also:
        -
        Constant Field Values
        -
        -
      • -
      - - - -
        -
      • -

        TextAppearance_AppCompat_Button

        -
        public static final int TextAppearance_AppCompat_Button
        -
        -
        See Also:
        -
        Constant Field Values
        -
        -
      • -
      - - - -
        -
      • -

        TextAppearance_AppCompat_Caption

        -
        public static final int TextAppearance_AppCompat_Caption
        -
        -
        See Also:
        -
        Constant Field Values
        -
        -
      • -
      - - - -
        -
      • -

        TextAppearance_AppCompat_Display1

        -
        public static final int TextAppearance_AppCompat_Display1
        -
        -
        See Also:
        -
        Constant Field Values
        -
        -
      • -
      - - - -
        -
      • -

        TextAppearance_AppCompat_Display2

        -
        public static final int TextAppearance_AppCompat_Display2
        -
        -
        See Also:
        -
        Constant Field Values
        -
        -
      • -
      - - - -
        -
      • -

        TextAppearance_AppCompat_Display3

        -
        public static final int TextAppearance_AppCompat_Display3
        -
        -
        See Also:
        -
        Constant Field Values
        -
        -
      • -
      - - - -
        -
      • -

        TextAppearance_AppCompat_Display4

        -
        public static final int TextAppearance_AppCompat_Display4
        -
        -
        See Also:
        -
        Constant Field Values
        -
        -
      • -
      - - - -
        -
      • -

        TextAppearance_AppCompat_Headline

        -
        public static final int TextAppearance_AppCompat_Headline
        -
        -
        See Also:
        -
        Constant Field Values
        -
        -
      • -
      - - - -
        -
      • -

        TextAppearance_AppCompat_Inverse

        -
        public static final int TextAppearance_AppCompat_Inverse
        -
        -
        See Also:
        -
        Constant Field Values
        -
        -
      • -
      - - - -
        -
      • -

        TextAppearance_AppCompat_Large

        -
        public static final int TextAppearance_AppCompat_Large
        -
        -
        See Also:
        -
        Constant Field Values
        -
        -
      • -
      - - - -
        -
      • -

        TextAppearance_AppCompat_Large_Inverse

        -
        public static final int TextAppearance_AppCompat_Large_Inverse
        -
        -
        See Also:
        -
        Constant Field Values
        -
        -
      • -
      - - - -
        -
      • -

        TextAppearance_AppCompat_Light_SearchResult_Subtitle

        -
        public static final int TextAppearance_AppCompat_Light_SearchResult_Subtitle
        -
        -
        See Also:
        -
        Constant Field Values
        -
        -
      • -
      - - - -
        -
      • -

        TextAppearance_AppCompat_Light_SearchResult_Title

        -
        public static final int TextAppearance_AppCompat_Light_SearchResult_Title
        -
        -
        See Also:
        -
        Constant Field Values
        -
        -
      • -
      - - - -
        -
      • -

        TextAppearance_AppCompat_Light_Widget_PopupMenu_Large

        -
        public static final int TextAppearance_AppCompat_Light_Widget_PopupMenu_Large
        -
        -
        See Also:
        -
        Constant Field Values
        -
        -
      • -
      - - - -
        -
      • -

        TextAppearance_AppCompat_Light_Widget_PopupMenu_Small

        -
        public static final int TextAppearance_AppCompat_Light_Widget_PopupMenu_Small
        -
        -
        See Also:
        -
        Constant Field Values
        -
        -
      • -
      - - - -
        -
      • -

        TextAppearance_AppCompat_Medium

        -
        public static final int TextAppearance_AppCompat_Medium
        -
        -
        See Also:
        -
        Constant Field Values
        -
        -
      • -
      - - - -
        -
      • -

        TextAppearance_AppCompat_Medium_Inverse

        -
        public static final int TextAppearance_AppCompat_Medium_Inverse
        -
        -
        See Also:
        -
        Constant Field Values
        -
        -
      • -
      - - - -
        -
      • -

        TextAppearance_AppCompat_Menu

        -
        public static final int TextAppearance_AppCompat_Menu
        -
        -
        See Also:
        -
        Constant Field Values
        -
        -
      • -
      - - - -
        -
      • -

        TextAppearance_AppCompat_Notification

        -
        public static final int TextAppearance_AppCompat_Notification
        -
        -
        See Also:
        -
        Constant Field Values
        -
        -
      • -
      - - - -
        -
      • -

        TextAppearance_AppCompat_Notification_Info

        -
        public static final int TextAppearance_AppCompat_Notification_Info
        -
        -
        See Also:
        -
        Constant Field Values
        -
        -
      • -
      - - - -
        -
      • -

        TextAppearance_AppCompat_Notification_Info_Media

        -
        public static final int TextAppearance_AppCompat_Notification_Info_Media
        -
        -
        See Also:
        -
        Constant Field Values
        -
        -
      • -
      - - - -
        -
      • -

        TextAppearance_AppCompat_Notification_Line2

        -
        public static final int TextAppearance_AppCompat_Notification_Line2
        -
        -
        See Also:
        -
        Constant Field Values
        -
        -
      • -
      - - - -
        -
      • -

        TextAppearance_AppCompat_Notification_Line2_Media

        -
        public static final int TextAppearance_AppCompat_Notification_Line2_Media
        -
        -
        See Also:
        -
        Constant Field Values
        -
        -
      • -
      - - - -
        -
      • -

        TextAppearance_AppCompat_Notification_Media

        -
        public static final int TextAppearance_AppCompat_Notification_Media
        -
        -
        See Also:
        -
        Constant Field Values
        -
        -
      • -
      - - - -
        -
      • -

        TextAppearance_AppCompat_Notification_Time

        -
        public static final int TextAppearance_AppCompat_Notification_Time
        -
        -
        See Also:
        -
        Constant Field Values
        -
        -
      • -
      - - - -
        -
      • -

        TextAppearance_AppCompat_Notification_Time_Media

        -
        public static final int TextAppearance_AppCompat_Notification_Time_Media
        -
        -
        See Also:
        -
        Constant Field Values
        -
        -
      • -
      - - - -
        -
      • -

        TextAppearance_AppCompat_Notification_Title

        -
        public static final int TextAppearance_AppCompat_Notification_Title
        -
        -
        See Also:
        -
        Constant Field Values
        -
        -
      • -
      - - - -
        -
      • -

        TextAppearance_AppCompat_Notification_Title_Media

        -
        public static final int TextAppearance_AppCompat_Notification_Title_Media
        -
        -
        See Also:
        -
        Constant Field Values
        -
        -
      • -
      - - - -
        -
      • -

        TextAppearance_AppCompat_SearchResult_Subtitle

        -
        public static final int TextAppearance_AppCompat_SearchResult_Subtitle
        -
        -
        See Also:
        -
        Constant Field Values
        -
        -
      • -
      - - - -
        -
      • -

        TextAppearance_AppCompat_SearchResult_Title

        -
        public static final int TextAppearance_AppCompat_SearchResult_Title
        -
        -
        See Also:
        -
        Constant Field Values
        -
        -
      • -
      - - - -
        -
      • -

        TextAppearance_AppCompat_Small

        -
        public static final int TextAppearance_AppCompat_Small
        -
        -
        See Also:
        -
        Constant Field Values
        -
        -
      • -
      - - - -
        -
      • -

        TextAppearance_AppCompat_Small_Inverse

        -
        public static final int TextAppearance_AppCompat_Small_Inverse
        -
        -
        See Also:
        -
        Constant Field Values
        -
        -
      • -
      - - - -
        -
      • -

        TextAppearance_AppCompat_Subhead

        -
        public static final int TextAppearance_AppCompat_Subhead
        -
        -
        See Also:
        -
        Constant Field Values
        -
        -
      • -
      - - - -
        -
      • -

        TextAppearance_AppCompat_Subhead_Inverse

        -
        public static final int TextAppearance_AppCompat_Subhead_Inverse
        -
        -
        See Also:
        -
        Constant Field Values
        -
        -
      • -
      - - - -
        -
      • -

        TextAppearance_AppCompat_Title

        -
        public static final int TextAppearance_AppCompat_Title
        -
        -
        See Also:
        -
        Constant Field Values
        -
        -
      • -
      - - - -
        -
      • -

        TextAppearance_AppCompat_Title_Inverse

        -
        public static final int TextAppearance_AppCompat_Title_Inverse
        -
        -
        See Also:
        -
        Constant Field Values
        -
        -
      • -
      - - - -
        -
      • -

        TextAppearance_AppCompat_Widget_ActionBar_Menu

        -
        public static final int TextAppearance_AppCompat_Widget_ActionBar_Menu
        -
        -
        See Also:
        -
        Constant Field Values
        -
        -
      • -
      - - - -
        -
      • -

        TextAppearance_AppCompat_Widget_ActionBar_Subtitle

        -
        public static final int TextAppearance_AppCompat_Widget_ActionBar_Subtitle
        -
        -
        See Also:
        -
        Constant Field Values
        -
        -
      • -
      - - - -
        -
      • -

        TextAppearance_AppCompat_Widget_ActionBar_Subtitle_Inverse

        -
        public static final int TextAppearance_AppCompat_Widget_ActionBar_Subtitle_Inverse
        -
        -
        See Also:
        -
        Constant Field Values
        -
        -
      • -
      - - - -
        -
      • -

        TextAppearance_AppCompat_Widget_ActionBar_Title

        -
        public static final int TextAppearance_AppCompat_Widget_ActionBar_Title
        -
        -
        See Also:
        -
        Constant Field Values
        -
        -
      • -
      - - - -
        -
      • -

        TextAppearance_AppCompat_Widget_ActionBar_Title_Inverse

        -
        public static final int TextAppearance_AppCompat_Widget_ActionBar_Title_Inverse
        -
        -
        See Also:
        -
        Constant Field Values
        -
        -
      • -
      - - - -
        -
      • -

        TextAppearance_AppCompat_Widget_ActionMode_Subtitle

        -
        public static final int TextAppearance_AppCompat_Widget_ActionMode_Subtitle
        -
        -
        See Also:
        -
        Constant Field Values
        -
        -
      • -
      - - - -
        -
      • -

        TextAppearance_AppCompat_Widget_ActionMode_Subtitle_Inverse

        -
        public static final int TextAppearance_AppCompat_Widget_ActionMode_Subtitle_Inverse
        -
        -
        See Also:
        -
        Constant Field Values
        -
        -
      • -
      - - - -
        -
      • -

        TextAppearance_AppCompat_Widget_ActionMode_Title

        -
        public static final int TextAppearance_AppCompat_Widget_ActionMode_Title
        -
        -
        See Also:
        -
        Constant Field Values
        -
        -
      • -
      - - - -
        -
      • -

        TextAppearance_AppCompat_Widget_ActionMode_Title_Inverse

        -
        public static final int TextAppearance_AppCompat_Widget_ActionMode_Title_Inverse
        -
        -
        See Also:
        -
        Constant Field Values
        -
        -
      • -
      - - - -
        -
      • -

        TextAppearance_AppCompat_Widget_Button

        -
        public static final int TextAppearance_AppCompat_Widget_Button
        -
        -
        See Also:
        -
        Constant Field Values
        -
        -
      • -
      - - - -
        -
      • -

        TextAppearance_AppCompat_Widget_Button_Borderless_Colored

        -
        public static final int TextAppearance_AppCompat_Widget_Button_Borderless_Colored
        -
        -
        See Also:
        -
        Constant Field Values
        -
        -
      • -
      - - - -
        -
      • -

        TextAppearance_AppCompat_Widget_Button_Colored

        -
        public static final int TextAppearance_AppCompat_Widget_Button_Colored
        -
        -
        See Also:
        -
        Constant Field Values
        -
        -
      • -
      - - - -
        -
      • -

        TextAppearance_AppCompat_Widget_Button_Inverse

        -
        public static final int TextAppearance_AppCompat_Widget_Button_Inverse
        -
        -
        See Also:
        -
        Constant Field Values
        -
        -
      • -
      - - - -
        -
      • -

        TextAppearance_AppCompat_Widget_DropDownItem

        -
        public static final int TextAppearance_AppCompat_Widget_DropDownItem
        -
        -
        See Also:
        -
        Constant Field Values
        -
        -
      • -
      - - - -
        -
      • -

        TextAppearance_AppCompat_Widget_PopupMenu_Header

        -
        public static final int TextAppearance_AppCompat_Widget_PopupMenu_Header
        -
        -
        See Also:
        -
        Constant Field Values
        -
        -
      • -
      - - - -
        -
      • -

        TextAppearance_AppCompat_Widget_PopupMenu_Large

        -
        public static final int TextAppearance_AppCompat_Widget_PopupMenu_Large
        -
        -
        See Also:
        -
        Constant Field Values
        -
        -
      • -
      - - - -
        -
      • -

        TextAppearance_AppCompat_Widget_PopupMenu_Small

        -
        public static final int TextAppearance_AppCompat_Widget_PopupMenu_Small
        -
        -
        See Also:
        -
        Constant Field Values
        -
        -
      • -
      - - - -
        -
      • -

        TextAppearance_AppCompat_Widget_Switch

        -
        public static final int TextAppearance_AppCompat_Widget_Switch
        -
        -
        See Also:
        -
        Constant Field Values
        -
        -
      • -
      - - - -
        -
      • -

        TextAppearance_AppCompat_Widget_TextView_SpinnerItem

        -
        public static final int TextAppearance_AppCompat_Widget_TextView_SpinnerItem
        -
        -
        See Also:
        -
        Constant Field Values
        -
        -
      • -
      - - - -
        -
      • -

        TextAppearance_Design_CollapsingToolbar_Expanded

        -
        public static final int TextAppearance_Design_CollapsingToolbar_Expanded
        -
        -
        See Also:
        -
        Constant Field Values
        -
        -
      • -
      - - - -
        -
      • -

        TextAppearance_Design_Counter

        -
        public static final int TextAppearance_Design_Counter
        -
        -
        See Also:
        -
        Constant Field Values
        -
        -
      • -
      - - - -
        -
      • -

        TextAppearance_Design_Counter_Overflow

        -
        public static final int TextAppearance_Design_Counter_Overflow
        -
        -
        See Also:
        -
        Constant Field Values
        -
        -
      • -
      - - - -
        -
      • -

        TextAppearance_Design_Error

        -
        public static final int TextAppearance_Design_Error
        -
        -
        See Also:
        -
        Constant Field Values
        -
        -
      • -
      - - - -
        -
      • -

        TextAppearance_Design_Hint

        -
        public static final int TextAppearance_Design_Hint
        -
        -
        See Also:
        -
        Constant Field Values
        -
        -
      • -
      - - - -
        -
      • -

        TextAppearance_Design_Snackbar_Message

        -
        public static final int TextAppearance_Design_Snackbar_Message
        -
        -
        See Also:
        -
        Constant Field Values
        -
        -
      • -
      - - - -
        -
      • -

        TextAppearance_Design_Tab

        -
        public static final int TextAppearance_Design_Tab
        -
        -
        See Also:
        -
        Constant Field Values
        -
        -
      • -
      - - - -
        -
      • -

        TextAppearance_StatusBar_EventContent

        -
        public static final int TextAppearance_StatusBar_EventContent
        -
        -
        See Also:
        -
        Constant Field Values
        -
        -
      • -
      - - - -
        -
      • -

        TextAppearance_StatusBar_EventContent_Info

        -
        public static final int TextAppearance_StatusBar_EventContent_Info
        -
        -
        See Also:
        -
        Constant Field Values
        -
        -
      • -
      - - - -
        -
      • -

        TextAppearance_StatusBar_EventContent_Line2

        -
        public static final int TextAppearance_StatusBar_EventContent_Line2
        -
        -
        See Also:
        -
        Constant Field Values
        -
        -
      • -
      - - - -
        -
      • -

        TextAppearance_StatusBar_EventContent_Time

        -
        public static final int TextAppearance_StatusBar_EventContent_Time
        -
        -
        See Also:
        -
        Constant Field Values
        -
        -
      • -
      - - - -
        -
      • -

        TextAppearance_StatusBar_EventContent_Title

        -
        public static final int TextAppearance_StatusBar_EventContent_Title
        -
        -
        See Also:
        -
        Constant Field Values
        -
        -
      • -
      - - - -
        -
      • -

        TextAppearance_Widget_AppCompat_ExpandedMenu_Item

        -
        public static final int TextAppearance_Widget_AppCompat_ExpandedMenu_Item
        -
        -
        See Also:
        -
        Constant Field Values
        -
        -
      • -
      - - - -
        -
      • -

        TextAppearance_Widget_AppCompat_Toolbar_Subtitle

        -
        public static final int TextAppearance_Widget_AppCompat_Toolbar_Subtitle
        -
        -
        See Also:
        -
        Constant Field Values
        -
        -
      • -
      - - - -
        -
      • -

        TextAppearance_Widget_AppCompat_Toolbar_Title

        -
        public static final int TextAppearance_Widget_AppCompat_Toolbar_Title
        -
        -
        See Also:
        -
        Constant Field Values
        -
        -
      • -
      - - - - - - - -
        -
      • -

        Theme_AppCompat_CompactMenu

        -
        public static final int Theme_AppCompat_CompactMenu
        -
        -
        See Also:
        -
        Constant Field Values
        -
        -
      • -
      - - - -
        -
      • -

        Theme_AppCompat_DayNight

        -
        public static final int Theme_AppCompat_DayNight
        -
        -
        See Also:
        -
        Constant Field Values
        -
        -
      • -
      - - - -
        -
      • -

        Theme_AppCompat_DayNight_DarkActionBar

        -
        public static final int Theme_AppCompat_DayNight_DarkActionBar
        -
        -
        See Also:
        -
        Constant Field Values
        -
        -
      • -
      - - - -
        -
      • -

        Theme_AppCompat_DayNight_Dialog

        -
        public static final int Theme_AppCompat_DayNight_Dialog
        -
        -
        See Also:
        -
        Constant Field Values
        -
        -
      • -
      - - - -
        -
      • -

        Theme_AppCompat_DayNight_Dialog_Alert

        -
        public static final int Theme_AppCompat_DayNight_Dialog_Alert
        -
        -
        See Also:
        -
        Constant Field Values
        -
        -
      • -
      - - - -
        -
      • -

        Theme_AppCompat_DayNight_Dialog_MinWidth

        -
        public static final int Theme_AppCompat_DayNight_Dialog_MinWidth
        -
        -
        See Also:
        -
        Constant Field Values
        -
        -
      • -
      - - - -
        -
      • -

        Theme_AppCompat_DayNight_DialogWhenLarge

        -
        public static final int Theme_AppCompat_DayNight_DialogWhenLarge
        -
        -
        See Also:
        -
        Constant Field Values
        -
        -
      • -
      - - - -
        -
      • -

        Theme_AppCompat_DayNight_NoActionBar

        -
        public static final int Theme_AppCompat_DayNight_NoActionBar
        -
        -
        See Also:
        -
        Constant Field Values
        -
        -
      • -
      - - - -
        -
      • -

        Theme_AppCompat_Dialog

        -
        public static final int Theme_AppCompat_Dialog
        -
        -
        See Also:
        -
        Constant Field Values
        -
        -
      • -
      - - - -
        -
      • -

        Theme_AppCompat_Dialog_Alert

        -
        public static final int Theme_AppCompat_Dialog_Alert
        -
        -
        See Also:
        -
        Constant Field Values
        -
        -
      • -
      - - - -
        -
      • -

        Theme_AppCompat_Dialog_MinWidth

        -
        public static final int Theme_AppCompat_Dialog_MinWidth
        -
        -
        See Also:
        -
        Constant Field Values
        -
        -
      • -
      - - - -
        -
      • -

        Theme_AppCompat_DialogWhenLarge

        -
        public static final int Theme_AppCompat_DialogWhenLarge
        -
        -
        See Also:
        -
        Constant Field Values
        -
        -
      • -
      - - - -
        -
      • -

        Theme_AppCompat_Light

        -
        public static final int Theme_AppCompat_Light
        -
        -
        See Also:
        -
        Constant Field Values
        -
        -
      • -
      - - - -
        -
      • -

        Theme_AppCompat_Light_DarkActionBar

        -
        public static final int Theme_AppCompat_Light_DarkActionBar
        -
        -
        See Also:
        -
        Constant Field Values
        -
        -
      • -
      - - - -
        -
      • -

        Theme_AppCompat_Light_Dialog

        -
        public static final int Theme_AppCompat_Light_Dialog
        -
        -
        See Also:
        -
        Constant Field Values
        -
        -
      • -
      - - - -
        -
      • -

        Theme_AppCompat_Light_Dialog_Alert

        -
        public static final int Theme_AppCompat_Light_Dialog_Alert
        -
        -
        See Also:
        -
        Constant Field Values
        -
        -
      • -
      - - - -
        -
      • -

        Theme_AppCompat_Light_Dialog_MinWidth

        -
        public static final int Theme_AppCompat_Light_Dialog_MinWidth
        -
        -
        See Also:
        -
        Constant Field Values
        -
        -
      • -
      - - - -
        -
      • -

        Theme_AppCompat_Light_DialogWhenLarge

        -
        public static final int Theme_AppCompat_Light_DialogWhenLarge
        -
        -
        See Also:
        -
        Constant Field Values
        -
        -
      • -
      - - - -
        -
      • -

        Theme_AppCompat_Light_NoActionBar

        -
        public static final int Theme_AppCompat_Light_NoActionBar
        -
        -
        See Also:
        -
        Constant Field Values
        -
        -
      • -
      - - - -
        -
      • -

        Theme_AppCompat_NoActionBar

        -
        public static final int Theme_AppCompat_NoActionBar
        -
        -
        See Also:
        -
        Constant Field Values
        -
        -
      • -
      - - - - - - - -
        -
      • -

        Theme_Design_BottomSheetDialog

        -
        public static final int Theme_Design_BottomSheetDialog
        -
        -
        See Also:
        -
        Constant Field Values
        -
        -
      • -
      - - - -
        -
      • -

        Theme_Design_Light

        -
        public static final int Theme_Design_Light
        -
        -
        See Also:
        -
        Constant Field Values
        -
        -
      • -
      - - - -
        -
      • -

        Theme_Design_Light_BottomSheetDialog

        -
        public static final int Theme_Design_Light_BottomSheetDialog
        -
        -
        See Also:
        -
        Constant Field Values
        -
        -
      • -
      - - - -
        -
      • -

        Theme_Design_Light_NoActionBar

        -
        public static final int Theme_Design_Light_NoActionBar
        -
        -
        See Also:
        -
        Constant Field Values
        -
        -
      • -
      - - - -
        -
      • -

        Theme_Design_NoActionBar

        -
        public static final int Theme_Design_NoActionBar
        -
        -
        See Also:
        -
        Constant Field Values
        -
        -
      • -
      - - - -
        -
      • -

        ThemeOverlay_AppCompat

        -
        public static final int ThemeOverlay_AppCompat
        -
        -
        See Also:
        -
        Constant Field Values
        -
        -
      • -
      - - - -
        -
      • -

        ThemeOverlay_AppCompat_ActionBar

        -
        public static final int ThemeOverlay_AppCompat_ActionBar
        -
        -
        See Also:
        -
        Constant Field Values
        -
        -
      • -
      - - - -
        -
      • -

        ThemeOverlay_AppCompat_Dark

        -
        public static final int ThemeOverlay_AppCompat_Dark
        -
        -
        See Also:
        -
        Constant Field Values
        -
        -
      • -
      - - - -
        -
      • -

        ThemeOverlay_AppCompat_Dark_ActionBar

        -
        public static final int ThemeOverlay_AppCompat_Dark_ActionBar
        -
        -
        See Also:
        -
        Constant Field Values
        -
        -
      • -
      - - - -
        -
      • -

        ThemeOverlay_AppCompat_Dialog

        -
        public static final int ThemeOverlay_AppCompat_Dialog
        -
        -
        See Also:
        -
        Constant Field Values
        -
        -
      • -
      - - - -
        -
      • -

        ThemeOverlay_AppCompat_Dialog_Alert

        -
        public static final int ThemeOverlay_AppCompat_Dialog_Alert
        -
        -
        See Also:
        -
        Constant Field Values
        -
        -
      • -
      - - - -
        -
      • -

        ThemeOverlay_AppCompat_Light

        -
        public static final int ThemeOverlay_AppCompat_Light
        -
        -
        See Also:
        -
        Constant Field Values
        -
        -
      • -
      - - - -
        -
      • -

        Widget_AppCompat_ActionBar

        -
        public static final int Widget_AppCompat_ActionBar
        -
        -
        See Also:
        -
        Constant Field Values
        -
        -
      • -
      - - - -
        -
      • -

        Widget_AppCompat_ActionBar_Solid

        -
        public static final int Widget_AppCompat_ActionBar_Solid
        -
        -
        See Also:
        -
        Constant Field Values
        -
        -
      • -
      - - - -
        -
      • -

        Widget_AppCompat_ActionBar_TabBar

        -
        public static final int Widget_AppCompat_ActionBar_TabBar
        -
        -
        See Also:
        -
        Constant Field Values
        -
        -
      • -
      - - - -
        -
      • -

        Widget_AppCompat_ActionBar_TabText

        -
        public static final int Widget_AppCompat_ActionBar_TabText
        -
        -
        See Also:
        -
        Constant Field Values
        -
        -
      • -
      - - - -
        -
      • -

        Widget_AppCompat_ActionBar_TabView

        -
        public static final int Widget_AppCompat_ActionBar_TabView
        -
        -
        See Also:
        -
        Constant Field Values
        -
        -
      • -
      - - - -
        -
      • -

        Widget_AppCompat_ActionButton

        -
        public static final int Widget_AppCompat_ActionButton
        -
        -
        See Also:
        -
        Constant Field Values
        -
        -
      • -
      - - - -
        -
      • -

        Widget_AppCompat_ActionButton_CloseMode

        -
        public static final int Widget_AppCompat_ActionButton_CloseMode
        -
        -
        See Also:
        -
        Constant Field Values
        -
        -
      • -
      - - - -
        -
      • -

        Widget_AppCompat_ActionButton_Overflow

        -
        public static final int Widget_AppCompat_ActionButton_Overflow
        -
        -
        See Also:
        -
        Constant Field Values
        -
        -
      • -
      - - - -
        -
      • -

        Widget_AppCompat_ActionMode

        -
        public static final int Widget_AppCompat_ActionMode
        -
        -
        See Also:
        -
        Constant Field Values
        -
        -
      • -
      - - - -
        -
      • -

        Widget_AppCompat_ActivityChooserView

        -
        public static final int Widget_AppCompat_ActivityChooserView
        -
        -
        See Also:
        -
        Constant Field Values
        -
        -
      • -
      - - - -
        -
      • -

        Widget_AppCompat_AutoCompleteTextView

        -
        public static final int Widget_AppCompat_AutoCompleteTextView
        -
        -
        See Also:
        -
        Constant Field Values
        -
        -
      • -
      - - - -
        -
      • -

        Widget_AppCompat_Button

        -
        public static final int Widget_AppCompat_Button
        -
        -
        See Also:
        -
        Constant Field Values
        -
        -
      • -
      - - - -
        -
      • -

        Widget_AppCompat_Button_Borderless

        -
        public static final int Widget_AppCompat_Button_Borderless
        -
        -
        See Also:
        -
        Constant Field Values
        -
        -
      • -
      - - - -
        -
      • -

        Widget_AppCompat_Button_Borderless_Colored

        -
        public static final int Widget_AppCompat_Button_Borderless_Colored
        -
        -
        See Also:
        -
        Constant Field Values
        -
        -
      • -
      - - - -
        -
      • -

        Widget_AppCompat_Button_ButtonBar_AlertDialog

        -
        public static final int Widget_AppCompat_Button_ButtonBar_AlertDialog
        -
        -
        See Also:
        -
        Constant Field Values
        -
        -
      • -
      - - - -
        -
      • -

        Widget_AppCompat_Button_Colored

        -
        public static final int Widget_AppCompat_Button_Colored
        -
        -
        See Also:
        -
        Constant Field Values
        -
        -
      • -
      - - - -
        -
      • -

        Widget_AppCompat_Button_Small

        -
        public static final int Widget_AppCompat_Button_Small
        -
        -
        See Also:
        -
        Constant Field Values
        -
        -
      • -
      - - - -
        -
      • -

        Widget_AppCompat_ButtonBar

        -
        public static final int Widget_AppCompat_ButtonBar
        -
        -
        See Also:
        -
        Constant Field Values
        -
        -
      • -
      - - - -
        -
      • -

        Widget_AppCompat_ButtonBar_AlertDialog

        -
        public static final int Widget_AppCompat_ButtonBar_AlertDialog
        -
        -
        See Also:
        -
        Constant Field Values
        -
        -
      • -
      - - - -
        -
      • -

        Widget_AppCompat_CompoundButton_CheckBox

        -
        public static final int Widget_AppCompat_CompoundButton_CheckBox
        -
        -
        See Also:
        -
        Constant Field Values
        -
        -
      • -
      - - - -
        -
      • -

        Widget_AppCompat_CompoundButton_RadioButton

        -
        public static final int Widget_AppCompat_CompoundButton_RadioButton
        -
        -
        See Also:
        -
        Constant Field Values
        -
        -
      • -
      - - - -
        -
      • -

        Widget_AppCompat_CompoundButton_Switch

        -
        public static final int Widget_AppCompat_CompoundButton_Switch
        -
        -
        See Also:
        -
        Constant Field Values
        -
        -
      • -
      - - - -
        -
      • -

        Widget_AppCompat_DrawerArrowToggle

        -
        public static final int Widget_AppCompat_DrawerArrowToggle
        -
        -
        See Also:
        -
        Constant Field Values
        -
        -
      • -
      - - - -
        -
      • -

        Widget_AppCompat_DropDownItem_Spinner

        -
        public static final int Widget_AppCompat_DropDownItem_Spinner
        -
        -
        See Also:
        -
        Constant Field Values
        -
        -
      • -
      - - - -
        -
      • -

        Widget_AppCompat_EditText

        -
        public static final int Widget_AppCompat_EditText
        -
        -
        See Also:
        -
        Constant Field Values
        -
        -
      • -
      - - - -
        -
      • -

        Widget_AppCompat_ImageButton

        -
        public static final int Widget_AppCompat_ImageButton
        -
        -
        See Also:
        -
        Constant Field Values
        -
        -
      • -
      - - - -
        -
      • -

        Widget_AppCompat_Light_ActionBar

        -
        public static final int Widget_AppCompat_Light_ActionBar
        -
        -
        See Also:
        -
        Constant Field Values
        -
        -
      • -
      - - - -
        -
      • -

        Widget_AppCompat_Light_ActionBar_Solid

        -
        public static final int Widget_AppCompat_Light_ActionBar_Solid
        -
        -
        See Also:
        -
        Constant Field Values
        -
        -
      • -
      - - - -
        -
      • -

        Widget_AppCompat_Light_ActionBar_Solid_Inverse

        -
        public static final int Widget_AppCompat_Light_ActionBar_Solid_Inverse
        -
        -
        See Also:
        -
        Constant Field Values
        -
        -
      • -
      - - - -
        -
      • -

        Widget_AppCompat_Light_ActionBar_TabBar

        -
        public static final int Widget_AppCompat_Light_ActionBar_TabBar
        -
        -
        See Also:
        -
        Constant Field Values
        -
        -
      • -
      - - - -
        -
      • -

        Widget_AppCompat_Light_ActionBar_TabBar_Inverse

        -
        public static final int Widget_AppCompat_Light_ActionBar_TabBar_Inverse
        -
        -
        See Also:
        -
        Constant Field Values
        -
        -
      • -
      - - - -
        -
      • -

        Widget_AppCompat_Light_ActionBar_TabText

        -
        public static final int Widget_AppCompat_Light_ActionBar_TabText
        -
        -
        See Also:
        -
        Constant Field Values
        -
        -
      • -
      - - - -
        -
      • -

        Widget_AppCompat_Light_ActionBar_TabText_Inverse

        -
        public static final int Widget_AppCompat_Light_ActionBar_TabText_Inverse
        -
        -
        See Also:
        -
        Constant Field Values
        -
        -
      • -
      - - - -
        -
      • -

        Widget_AppCompat_Light_ActionBar_TabView

        -
        public static final int Widget_AppCompat_Light_ActionBar_TabView
        -
        -
        See Also:
        -
        Constant Field Values
        -
        -
      • -
      - - - -
        -
      • -

        Widget_AppCompat_Light_ActionBar_TabView_Inverse

        -
        public static final int Widget_AppCompat_Light_ActionBar_TabView_Inverse
        -
        -
        See Also:
        -
        Constant Field Values
        -
        -
      • -
      - - - -
        -
      • -

        Widget_AppCompat_Light_ActionButton

        -
        public static final int Widget_AppCompat_Light_ActionButton
        -
        -
        See Also:
        -
        Constant Field Values
        -
        -
      • -
      - - - -
        -
      • -

        Widget_AppCompat_Light_ActionButton_CloseMode

        -
        public static final int Widget_AppCompat_Light_ActionButton_CloseMode
        -
        -
        See Also:
        -
        Constant Field Values
        -
        -
      • -
      - - - -
        -
      • -

        Widget_AppCompat_Light_ActionButton_Overflow

        -
        public static final int Widget_AppCompat_Light_ActionButton_Overflow
        -
        -
        See Also:
        -
        Constant Field Values
        -
        -
      • -
      - - - -
        -
      • -

        Widget_AppCompat_Light_ActionMode_Inverse

        -
        public static final int Widget_AppCompat_Light_ActionMode_Inverse
        -
        -
        See Also:
        -
        Constant Field Values
        -
        -
      • -
      - - - -
        -
      • -

        Widget_AppCompat_Light_ActivityChooserView

        -
        public static final int Widget_AppCompat_Light_ActivityChooserView
        -
        -
        See Also:
        -
        Constant Field Values
        -
        -
      • -
      - - - -
        -
      • -

        Widget_AppCompat_Light_AutoCompleteTextView

        -
        public static final int Widget_AppCompat_Light_AutoCompleteTextView
        -
        -
        See Also:
        -
        Constant Field Values
        -
        -
      • -
      - - - -
        -
      • -

        Widget_AppCompat_Light_DropDownItem_Spinner

        -
        public static final int Widget_AppCompat_Light_DropDownItem_Spinner
        -
        -
        See Also:
        -
        Constant Field Values
        -
        -
      • -
      - - - -
        -
      • -

        Widget_AppCompat_Light_ListPopupWindow

        -
        public static final int Widget_AppCompat_Light_ListPopupWindow
        -
        -
        See Also:
        -
        Constant Field Values
        -
        -
      • -
      - - - -
        -
      • -

        Widget_AppCompat_Light_ListView_DropDown

        -
        public static final int Widget_AppCompat_Light_ListView_DropDown
        -
        -
        See Also:
        -
        Constant Field Values
        -
        -
      • -
      - - - -
        -
      • -

        Widget_AppCompat_Light_PopupMenu

        -
        public static final int Widget_AppCompat_Light_PopupMenu
        -
        -
        See Also:
        -
        Constant Field Values
        -
        -
      • -
      - - - -
        -
      • -

        Widget_AppCompat_Light_PopupMenu_Overflow

        -
        public static final int Widget_AppCompat_Light_PopupMenu_Overflow
        -
        -
        See Also:
        -
        Constant Field Values
        -
        -
      • -
      - - - -
        -
      • -

        Widget_AppCompat_Light_SearchView

        -
        public static final int Widget_AppCompat_Light_SearchView
        -
        -
        See Also:
        -
        Constant Field Values
        -
        -
      • -
      - - - -
        -
      • -

        Widget_AppCompat_Light_Spinner_DropDown_ActionBar

        -
        public static final int Widget_AppCompat_Light_Spinner_DropDown_ActionBar
        -
        -
        See Also:
        -
        Constant Field Values
        -
        -
      • -
      - - - -
        -
      • -

        Widget_AppCompat_ListMenuView

        -
        public static final int Widget_AppCompat_ListMenuView
        -
        -
        See Also:
        -
        Constant Field Values
        -
        -
      • -
      - - - -
        -
      • -

        Widget_AppCompat_ListPopupWindow

        -
        public static final int Widget_AppCompat_ListPopupWindow
        -
        -
        See Also:
        -
        Constant Field Values
        -
        -
      • -
      - - - -
        -
      • -

        Widget_AppCompat_ListView

        -
        public static final int Widget_AppCompat_ListView
        -
        -
        See Also:
        -
        Constant Field Values
        -
        -
      • -
      - - - -
        -
      • -

        Widget_AppCompat_ListView_DropDown

        -
        public static final int Widget_AppCompat_ListView_DropDown
        -
        -
        See Also:
        -
        Constant Field Values
        -
        -
      • -
      - - - -
        -
      • -

        Widget_AppCompat_ListView_Menu

        -
        public static final int Widget_AppCompat_ListView_Menu
        -
        -
        See Also:
        -
        Constant Field Values
        -
        -
      • -
      - - - -
        -
      • -

        Widget_AppCompat_NotificationActionContainer

        -
        public static final int Widget_AppCompat_NotificationActionContainer
        -
        -
        See Also:
        -
        Constant Field Values
        -
        -
      • -
      - - - -
        -
      • -

        Widget_AppCompat_NotificationActionText

        -
        public static final int Widget_AppCompat_NotificationActionText
        -
        -
        See Also:
        -
        Constant Field Values
        -
        -
      • -
      - - - -
        -
      • -

        Widget_AppCompat_PopupMenu

        -
        public static final int Widget_AppCompat_PopupMenu
        -
        -
        See Also:
        -
        Constant Field Values
        -
        -
      • -
      - - - -
        -
      • -

        Widget_AppCompat_PopupMenu_Overflow

        -
        public static final int Widget_AppCompat_PopupMenu_Overflow
        -
        -
        See Also:
        -
        Constant Field Values
        -
        -
      • -
      - - - -
        -
      • -

        Widget_AppCompat_PopupWindow

        -
        public static final int Widget_AppCompat_PopupWindow
        -
        -
        See Also:
        -
        Constant Field Values
        -
        -
      • -
      - - - -
        -
      • -

        Widget_AppCompat_ProgressBar

        -
        public static final int Widget_AppCompat_ProgressBar
        -
        -
        See Also:
        -
        Constant Field Values
        -
        -
      • -
      - - - -
        -
      • -

        Widget_AppCompat_ProgressBar_Horizontal

        -
        public static final int Widget_AppCompat_ProgressBar_Horizontal
        -
        -
        See Also:
        -
        Constant Field Values
        -
        -
      • -
      - - - -
        -
      • -

        Widget_AppCompat_RatingBar

        -
        public static final int Widget_AppCompat_RatingBar
        -
        -
        See Also:
        -
        Constant Field Values
        -
        -
      • -
      - - - -
        -
      • -

        Widget_AppCompat_RatingBar_Indicator

        -
        public static final int Widget_AppCompat_RatingBar_Indicator
        -
        -
        See Also:
        -
        Constant Field Values
        -
        -
      • -
      - - - -
        -
      • -

        Widget_AppCompat_RatingBar_Small

        -
        public static final int Widget_AppCompat_RatingBar_Small
        -
        -
        See Also:
        -
        Constant Field Values
        -
        -
      • -
      - - - -
        -
      • -

        Widget_AppCompat_SearchView

        -
        public static final int Widget_AppCompat_SearchView
        -
        -
        See Also:
        -
        Constant Field Values
        -
        -
      • -
      - - - -
        -
      • -

        Widget_AppCompat_SearchView_ActionBar

        -
        public static final int Widget_AppCompat_SearchView_ActionBar
        -
        -
        See Also:
        -
        Constant Field Values
        -
        -
      • -
      - - - -
        -
      • -

        Widget_AppCompat_SeekBar

        -
        public static final int Widget_AppCompat_SeekBar
        -
        -
        See Also:
        -
        Constant Field Values
        -
        -
      • -
      - - - -
        -
      • -

        Widget_AppCompat_SeekBar_Discrete

        -
        public static final int Widget_AppCompat_SeekBar_Discrete
        -
        -
        See Also:
        -
        Constant Field Values
        -
        -
      • -
      - - - -
        -
      • -

        Widget_AppCompat_Spinner

        -
        public static final int Widget_AppCompat_Spinner
        -
        -
        See Also:
        -
        Constant Field Values
        -
        -
      • -
      - - - -
        -
      • -

        Widget_AppCompat_Spinner_DropDown

        -
        public static final int Widget_AppCompat_Spinner_DropDown
        -
        -
        See Also:
        -
        Constant Field Values
        -
        -
      • -
      - - - -
        -
      • -

        Widget_AppCompat_Spinner_DropDown_ActionBar

        -
        public static final int Widget_AppCompat_Spinner_DropDown_ActionBar
        -
        -
        See Also:
        -
        Constant Field Values
        -
        -
      • -
      - - - -
        -
      • -

        Widget_AppCompat_Spinner_Underlined

        -
        public static final int Widget_AppCompat_Spinner_Underlined
        -
        -
        See Also:
        -
        Constant Field Values
        -
        -
      • -
      - - - -
        -
      • -

        Widget_AppCompat_TextView_SpinnerItem

        -
        public static final int Widget_AppCompat_TextView_SpinnerItem
        -
        -
        See Also:
        -
        Constant Field Values
        -
        -
      • -
      - - - -
        -
      • -

        Widget_AppCompat_Toolbar

        -
        public static final int Widget_AppCompat_Toolbar
        -
        -
        See Also:
        -
        Constant Field Values
        -
        -
      • -
      - - - -
        -
      • -

        Widget_AppCompat_Toolbar_Button_Navigation

        -
        public static final int Widget_AppCompat_Toolbar_Button_Navigation
        -
        -
        See Also:
        -
        Constant Field Values
        -
        -
      • -
      - - - -
        -
      • -

        Widget_Design_AppBarLayout

        -
        public static final int Widget_Design_AppBarLayout
        -
        -
        See Also:
        -
        Constant Field Values
        -
        -
      • -
      - - - -
        -
      • -

        Widget_Design_BottomNavigationView

        -
        public static final int Widget_Design_BottomNavigationView
        -
        -
        See Also:
        -
        Constant Field Values
        -
        -
      • -
      - - - -
        -
      • -

        Widget_Design_BottomSheet_Modal

        -
        public static final int Widget_Design_BottomSheet_Modal
        -
        -
        See Also:
        -
        Constant Field Values
        -
        -
      • -
      - - - -
        -
      • -

        Widget_Design_CollapsingToolbar

        -
        public static final int Widget_Design_CollapsingToolbar
        -
        -
        See Also:
        -
        Constant Field Values
        -
        -
      • -
      - - - -
        -
      • -

        Widget_Design_CoordinatorLayout

        -
        public static final int Widget_Design_CoordinatorLayout
        -
        -
        See Also:
        -
        Constant Field Values
        -
        -
      • -
      - - - -
        -
      • -

        Widget_Design_FloatingActionButton

        -
        public static final int Widget_Design_FloatingActionButton
        -
        -
        See Also:
        -
        Constant Field Values
        -
        -
      • -
      - - - -
        -
      • -

        Widget_Design_NavigationView

        -
        public static final int Widget_Design_NavigationView
        -
        -
        See Also:
        -
        Constant Field Values
        -
        -
      • -
      - - - -
        -
      • -

        Widget_Design_ScrimInsetsFrameLayout

        -
        public static final int Widget_Design_ScrimInsetsFrameLayout
        -
        -
        See Also:
        -
        Constant Field Values
        -
        -
      • -
      - - - -
        -
      • -

        Widget_Design_Snackbar

        -
        public static final int Widget_Design_Snackbar
        -
        -
        See Also:
        -
        Constant Field Values
        -
        -
      • -
      - - - -
        -
      • -

        Widget_Design_TabLayout

        -
        public static final int Widget_Design_TabLayout
        -
        -
        See Also:
        -
        Constant Field Values
        -
        -
      • -
      - - - -
        -
      • -

        Widget_Design_TextInputLayout

        -
        public static final int Widget_Design_TextInputLayout
        -
        -
        See Also:
        -
        Constant Field Values
        -
        -
      • -
      - - - -
        -
      • -

        Widget_DiscreteIndicatorTextAppearance

        -
        public static final int Widget_DiscreteIndicatorTextAppearance
        -
        -
        See Also:
        -
        Constant Field Values
        -
        -
      • -
      - - - -
        -
      • -

        Widget_DiscreteSeekBar

        -
        public static final int Widget_DiscreteSeekBar
        -
        -
        See Also:
        -
        Constant Field Values
        -
        -
      • -
      -
    • -
    - -
      -
    • - - -

      Constructor Detail

      - - - -
        -
      • -

        style

        -
        public style()
        -
      • -
      -
    • -
    -
  • -
-
-
- - - - - - - diff --git a/docs/com/tomerrosenfeld/fadingtextview/R.styleable.html b/docs/com/tomerrosenfeld/fadingtextview/R.styleable.html deleted file mode 100644 index 2ffd825..0000000 --- a/docs/com/tomerrosenfeld/fadingtextview/R.styleable.html +++ /dev/null @@ -1,15546 +0,0 @@ - - - - - -R.styleable - - - - - - - - - - - - -
-
com.tomerrosenfeld.fadingtextview
-

Class R.styleable

-
-
-
    -
  • java.lang.Object
  • -
  • -
      -
    • com.tomerrosenfeld.fadingtextview.R.styleable
    • -
    -
  • -
-
-
    -
  • -
    -
    Enclosing class:
    -
    R
    -
    -
    -
    -
    public static final class R.styleable
    -extends java.lang.Object
    -
  • -
-
-
- -
-
- -
-
- - - - - - - diff --git a/docs/com/tomerrosenfeld/fadingtextview/class-use/BuildConfig.html b/docs/com/tomerrosenfeld/fadingtextview/class-use/BuildConfig.html deleted file mode 100644 index 9bbbea9..0000000 --- a/docs/com/tomerrosenfeld/fadingtextview/class-use/BuildConfig.html +++ /dev/null @@ -1,124 +0,0 @@ - - - - - -Uses of Class com.tomerrosenfeld.fadingtextview.BuildConfig - - - - - - - - - - - -
-

Uses of Class
com.tomerrosenfeld.fadingtextview.BuildConfig

-
-
No usage of com.tomerrosenfeld.fadingtextview.BuildConfig
- - - - - - diff --git a/docs/com/tomerrosenfeld/fadingtextview/class-use/ExampleInstrumentedTest.html b/docs/com/tomerrosenfeld/fadingtextview/class-use/ExampleInstrumentedTest.html deleted file mode 100644 index 68242be..0000000 --- a/docs/com/tomerrosenfeld/fadingtextview/class-use/ExampleInstrumentedTest.html +++ /dev/null @@ -1,124 +0,0 @@ - - - - - -Uses of Class com.tomerrosenfeld.fadingtextview.ExampleInstrumentedTest - - - - - - - - - - - -
-

Uses of Class
com.tomerrosenfeld.fadingtextview.ExampleInstrumentedTest

-
-
No usage of com.tomerrosenfeld.fadingtextview.ExampleInstrumentedTest
- - - - - - diff --git a/docs/com/tomerrosenfeld/fadingtextview/class-use/ExampleUnitTest.html b/docs/com/tomerrosenfeld/fadingtextview/class-use/ExampleUnitTest.html deleted file mode 100644 index 485c333..0000000 --- a/docs/com/tomerrosenfeld/fadingtextview/class-use/ExampleUnitTest.html +++ /dev/null @@ -1,124 +0,0 @@ - - - - - -Uses of Class com.tomerrosenfeld.fadingtextview.ExampleUnitTest - - - - - - - - - - - -
-

Uses of Class
com.tomerrosenfeld.fadingtextview.ExampleUnitTest

-
-
No usage of com.tomerrosenfeld.fadingtextview.ExampleUnitTest
- - - - - - diff --git a/docs/com/tomerrosenfeld/fadingtextview/class-use/MainActivity.html b/docs/com/tomerrosenfeld/fadingtextview/class-use/MainActivity.html deleted file mode 100644 index 6468695..0000000 --- a/docs/com/tomerrosenfeld/fadingtextview/class-use/MainActivity.html +++ /dev/null @@ -1,124 +0,0 @@ - - - - - -Uses of Class com.tomerrosenfeld.fadingtextview.MainActivity - - - - - - - - - - - -
-

Uses of Class
com.tomerrosenfeld.fadingtextview.MainActivity

-
-
No usage of com.tomerrosenfeld.fadingtextview.MainActivity
- - - - - - diff --git a/docs/com/tomerrosenfeld/fadingtextview/class-use/R.anim.html b/docs/com/tomerrosenfeld/fadingtextview/class-use/R.anim.html deleted file mode 100644 index 3fb15d5..0000000 --- a/docs/com/tomerrosenfeld/fadingtextview/class-use/R.anim.html +++ /dev/null @@ -1,124 +0,0 @@ - - - - - -Uses of Class com.tomerrosenfeld.fadingtextview.R.anim - - - - - - - - - - - -
-

Uses of Class
com.tomerrosenfeld.fadingtextview.R.anim

-
-
No usage of com.tomerrosenfeld.fadingtextview.R.anim
- - - - - - diff --git a/docs/com/tomerrosenfeld/fadingtextview/class-use/R.animator.html b/docs/com/tomerrosenfeld/fadingtextview/class-use/R.animator.html deleted file mode 100644 index a796d31..0000000 --- a/docs/com/tomerrosenfeld/fadingtextview/class-use/R.animator.html +++ /dev/null @@ -1,124 +0,0 @@ - - - - - -Uses of Class com.tomerrosenfeld.fadingtextview.R.animator - - - - - - - - - - - -
-

Uses of Class
com.tomerrosenfeld.fadingtextview.R.animator

-
-
No usage of com.tomerrosenfeld.fadingtextview.R.animator
- - - - - - diff --git a/docs/com/tomerrosenfeld/fadingtextview/class-use/R.array.html b/docs/com/tomerrosenfeld/fadingtextview/class-use/R.array.html deleted file mode 100644 index 6bd1996..0000000 --- a/docs/com/tomerrosenfeld/fadingtextview/class-use/R.array.html +++ /dev/null @@ -1,124 +0,0 @@ - - - - - -Uses of Class com.tomerrosenfeld.fadingtextview.R.array - - - - - - - - - - - -
-

Uses of Class
com.tomerrosenfeld.fadingtextview.R.array

-
-
No usage of com.tomerrosenfeld.fadingtextview.R.array
- - - - - - diff --git a/docs/com/tomerrosenfeld/fadingtextview/class-use/R.attr.html b/docs/com/tomerrosenfeld/fadingtextview/class-use/R.attr.html deleted file mode 100644 index e1f37d6..0000000 --- a/docs/com/tomerrosenfeld/fadingtextview/class-use/R.attr.html +++ /dev/null @@ -1,124 +0,0 @@ - - - - - -Uses of Class com.tomerrosenfeld.fadingtextview.R.attr - - - - - - - - - - - -
-

Uses of Class
com.tomerrosenfeld.fadingtextview.R.attr

-
-
No usage of com.tomerrosenfeld.fadingtextview.R.attr
- - - - - - diff --git a/docs/com/tomerrosenfeld/fadingtextview/class-use/R.bool.html b/docs/com/tomerrosenfeld/fadingtextview/class-use/R.bool.html deleted file mode 100644 index cb69cd4..0000000 --- a/docs/com/tomerrosenfeld/fadingtextview/class-use/R.bool.html +++ /dev/null @@ -1,124 +0,0 @@ - - - - - -Uses of Class com.tomerrosenfeld.fadingtextview.R.bool - - - - - - - - - - - -
-

Uses of Class
com.tomerrosenfeld.fadingtextview.R.bool

-
-
No usage of com.tomerrosenfeld.fadingtextview.R.bool
- - - - - - diff --git a/docs/com/tomerrosenfeld/fadingtextview/class-use/R.color.html b/docs/com/tomerrosenfeld/fadingtextview/class-use/R.color.html deleted file mode 100644 index 8298541..0000000 --- a/docs/com/tomerrosenfeld/fadingtextview/class-use/R.color.html +++ /dev/null @@ -1,124 +0,0 @@ - - - - - -Uses of Class com.tomerrosenfeld.fadingtextview.R.color - - - - - - - - - - - -
-

Uses of Class
com.tomerrosenfeld.fadingtextview.R.color

-
-
No usage of com.tomerrosenfeld.fadingtextview.R.color
- - - - - - diff --git a/docs/com/tomerrosenfeld/fadingtextview/class-use/R.dimen.html b/docs/com/tomerrosenfeld/fadingtextview/class-use/R.dimen.html deleted file mode 100644 index db4770d..0000000 --- a/docs/com/tomerrosenfeld/fadingtextview/class-use/R.dimen.html +++ /dev/null @@ -1,124 +0,0 @@ - - - - - -Uses of Class com.tomerrosenfeld.fadingtextview.R.dimen - - - - - - - - - - - -
-

Uses of Class
com.tomerrosenfeld.fadingtextview.R.dimen

-
-
No usage of com.tomerrosenfeld.fadingtextview.R.dimen
- - - - - - diff --git a/docs/com/tomerrosenfeld/fadingtextview/class-use/R.drawable.html b/docs/com/tomerrosenfeld/fadingtextview/class-use/R.drawable.html deleted file mode 100644 index da909ec..0000000 --- a/docs/com/tomerrosenfeld/fadingtextview/class-use/R.drawable.html +++ /dev/null @@ -1,124 +0,0 @@ - - - - - -Uses of Class com.tomerrosenfeld.fadingtextview.R.drawable - - - - - - - - - - - -
-

Uses of Class
com.tomerrosenfeld.fadingtextview.R.drawable

-
-
No usage of com.tomerrosenfeld.fadingtextview.R.drawable
- - - - - - diff --git a/docs/com/tomerrosenfeld/fadingtextview/class-use/R.html b/docs/com/tomerrosenfeld/fadingtextview/class-use/R.html deleted file mode 100644 index bcf8ecc..0000000 --- a/docs/com/tomerrosenfeld/fadingtextview/class-use/R.html +++ /dev/null @@ -1,124 +0,0 @@ - - - - - -Uses of Class com.tomerrosenfeld.fadingtextview.R - - - - - - - - - - - -
-

Uses of Class
com.tomerrosenfeld.fadingtextview.R

-
-
No usage of com.tomerrosenfeld.fadingtextview.R
- - - - - - diff --git a/docs/com/tomerrosenfeld/fadingtextview/class-use/R.id.html b/docs/com/tomerrosenfeld/fadingtextview/class-use/R.id.html deleted file mode 100644 index 6ab503c..0000000 --- a/docs/com/tomerrosenfeld/fadingtextview/class-use/R.id.html +++ /dev/null @@ -1,124 +0,0 @@ - - - - - -Uses of Class com.tomerrosenfeld.fadingtextview.R.id - - - - - - - - - - - -
-

Uses of Class
com.tomerrosenfeld.fadingtextview.R.id

-
-
No usage of com.tomerrosenfeld.fadingtextview.R.id
- - - - - - diff --git a/docs/com/tomerrosenfeld/fadingtextview/class-use/R.integer.html b/docs/com/tomerrosenfeld/fadingtextview/class-use/R.integer.html deleted file mode 100644 index ee4d9ef..0000000 --- a/docs/com/tomerrosenfeld/fadingtextview/class-use/R.integer.html +++ /dev/null @@ -1,124 +0,0 @@ - - - - - -Uses of Class com.tomerrosenfeld.fadingtextview.R.integer - - - - - - - - - - - -
-

Uses of Class
com.tomerrosenfeld.fadingtextview.R.integer

-
-
No usage of com.tomerrosenfeld.fadingtextview.R.integer
- - - - - - diff --git a/docs/com/tomerrosenfeld/fadingtextview/class-use/R.layout.html b/docs/com/tomerrosenfeld/fadingtextview/class-use/R.layout.html deleted file mode 100644 index 66fb6b3..0000000 --- a/docs/com/tomerrosenfeld/fadingtextview/class-use/R.layout.html +++ /dev/null @@ -1,124 +0,0 @@ - - - - - -Uses of Class com.tomerrosenfeld.fadingtextview.R.layout - - - - - - - - - - - -
-

Uses of Class
com.tomerrosenfeld.fadingtextview.R.layout

-
-
No usage of com.tomerrosenfeld.fadingtextview.R.layout
- - - - - - diff --git a/docs/com/tomerrosenfeld/fadingtextview/class-use/R.mipmap.html b/docs/com/tomerrosenfeld/fadingtextview/class-use/R.mipmap.html deleted file mode 100644 index ac3ff22..0000000 --- a/docs/com/tomerrosenfeld/fadingtextview/class-use/R.mipmap.html +++ /dev/null @@ -1,124 +0,0 @@ - - - - - -Uses of Class com.tomerrosenfeld.fadingtextview.R.mipmap - - - - - - - - - - - -
-

Uses of Class
com.tomerrosenfeld.fadingtextview.R.mipmap

-
-
No usage of com.tomerrosenfeld.fadingtextview.R.mipmap
- - - - - - diff --git a/docs/com/tomerrosenfeld/fadingtextview/class-use/R.string.html b/docs/com/tomerrosenfeld/fadingtextview/class-use/R.string.html deleted file mode 100644 index b983bd8..0000000 --- a/docs/com/tomerrosenfeld/fadingtextview/class-use/R.string.html +++ /dev/null @@ -1,124 +0,0 @@ - - - - - -Uses of Class com.tomerrosenfeld.fadingtextview.R.string - - - - - - - - - - - -
-

Uses of Class
com.tomerrosenfeld.fadingtextview.R.string

-
-
No usage of com.tomerrosenfeld.fadingtextview.R.string
- - - - - - diff --git a/docs/com/tomerrosenfeld/fadingtextview/class-use/R.style.html b/docs/com/tomerrosenfeld/fadingtextview/class-use/R.style.html deleted file mode 100644 index a059a3c..0000000 --- a/docs/com/tomerrosenfeld/fadingtextview/class-use/R.style.html +++ /dev/null @@ -1,124 +0,0 @@ - - - - - -Uses of Class com.tomerrosenfeld.fadingtextview.R.style - - - - - - - - - - - -
-

Uses of Class
com.tomerrosenfeld.fadingtextview.R.style

-
-
No usage of com.tomerrosenfeld.fadingtextview.R.style
- - - - - - diff --git a/docs/com/tomerrosenfeld/fadingtextview/class-use/R.styleable.html b/docs/com/tomerrosenfeld/fadingtextview/class-use/R.styleable.html deleted file mode 100644 index a414c2c..0000000 --- a/docs/com/tomerrosenfeld/fadingtextview/class-use/R.styleable.html +++ /dev/null @@ -1,124 +0,0 @@ - - - - - -Uses of Class com.tomerrosenfeld.fadingtextview.R.styleable - - - - - - - - - - - -
-

Uses of Class
com.tomerrosenfeld.fadingtextview.R.styleable

-
-
No usage of com.tomerrosenfeld.fadingtextview.R.styleable
- - - - - - diff --git a/docs/com/tomerrosenfeld/fadingtextview/package-frame.html b/docs/com/tomerrosenfeld/fadingtextview/package-frame.html deleted file mode 100644 index f9b73b3..0000000 --- a/docs/com/tomerrosenfeld/fadingtextview/package-frame.html +++ /dev/null @@ -1,39 +0,0 @@ - - - - - -com.tomerrosenfeld.fadingtextview - - - - - -

com.tomerrosenfeld.fadingtextview

- - - diff --git a/docs/com/tomerrosenfeld/fadingtextview/package-summary.html b/docs/com/tomerrosenfeld/fadingtextview/package-summary.html deleted file mode 100644 index 277e821..0000000 --- a/docs/com/tomerrosenfeld/fadingtextview/package-summary.html +++ /dev/null @@ -1,222 +0,0 @@ - - - - - -com.tomerrosenfeld.fadingtextview - - - - - - - - - - - -
-

Package com.tomerrosenfeld.fadingtextview

-
-
- -
- - - - - - diff --git a/docs/com/tomerrosenfeld/fadingtextview/package-tree.html b/docs/com/tomerrosenfeld/fadingtextview/package-tree.html deleted file mode 100644 index a2d98e2..0000000 --- a/docs/com/tomerrosenfeld/fadingtextview/package-tree.html +++ /dev/null @@ -1,184 +0,0 @@ - - - - - -com.tomerrosenfeld.fadingtextview Class Hierarchy - - - - - - - - - - - -
-

Hierarchy For Package com.tomerrosenfeld.fadingtextview

-Package Hierarchies: - -
-
-

Class Hierarchy

-
    -
  • java.lang.Object -
      -
    • com.tomerrosenfeld.fadingtextview.BuildConfig
    • -
    • android.content.Context -
        -
      • android.content.ContextWrapper -
          -
        • android.view.ContextThemeWrapper -
            -
          • android.app.Activity (implements android.content.ComponentCallbacks2, android.view.KeyEvent.Callback, android.view.LayoutInflater.Factory2, android.view.View.OnCreateContextMenuListener, android.view.Window.Callback) -
              -
            • android.support.v4.app.SupportActivity -
                -
              • android.support.v4.app.FragmentActivity (implements android.support.v4.app.ActivityCompat.OnRequestPermissionsResultCallback, android.support.v4.app.ActivityCompatApi23.RequestPermissionsRequestCodeValidator) -
                  -
                • android.support.v7.app.AppCompatActivity (implements android.support.v7.app.ActionBarDrawerToggle.DelegateProvider, android.support.v7.app.AppCompatCallback, android.support.v4.app.TaskStackBuilder.SupportParentable) - -
                • -
                -
              • -
              -
            • -
            -
          • -
          -
        • -
        -
      • -
      -
    • -
    • com.tomerrosenfeld.fadingtextview.ExampleInstrumentedTest
    • -
    • com.tomerrosenfeld.fadingtextview.ExampleUnitTest
    • -
    • com.tomerrosenfeld.fadingtextview.R
    • -
    • com.tomerrosenfeld.fadingtextview.R.anim
    • -
    • com.tomerrosenfeld.fadingtextview.R.animator
    • -
    • com.tomerrosenfeld.fadingtextview.R.array
    • -
    • com.tomerrosenfeld.fadingtextview.R.attr
    • -
    • com.tomerrosenfeld.fadingtextview.R.bool
    • -
    • com.tomerrosenfeld.fadingtextview.R.color
    • -
    • com.tomerrosenfeld.fadingtextview.R.dimen
    • -
    • com.tomerrosenfeld.fadingtextview.R.drawable
    • -
    • com.tomerrosenfeld.fadingtextview.R.id
    • -
    • com.tomerrosenfeld.fadingtextview.R.integer
    • -
    • com.tomerrosenfeld.fadingtextview.R.layout
    • -
    • com.tomerrosenfeld.fadingtextview.R.mipmap
    • -
    • com.tomerrosenfeld.fadingtextview.R.string
    • -
    • com.tomerrosenfeld.fadingtextview.R.style
    • -
    • com.tomerrosenfeld.fadingtextview.R.styleable
    • -
    -
  • -
-
- - - - - - diff --git a/docs/com/tomerrosenfeld/fadingtextview/package-use.html b/docs/com/tomerrosenfeld/fadingtextview/package-use.html deleted file mode 100644 index 922e6ae..0000000 --- a/docs/com/tomerrosenfeld/fadingtextview/package-use.html +++ /dev/null @@ -1,124 +0,0 @@ - - - - - -Uses of Package com.tomerrosenfeld.fadingtextview - - - - - - - - - - - -
-

Uses of Package
com.tomerrosenfeld.fadingtextview

-
-
No usage of com.tomerrosenfeld.fadingtextview
- - - - - - diff --git a/docs/constant-values.html b/docs/constant-values.html deleted file mode 100644 index 438be4e..0000000 --- a/docs/constant-values.html +++ /dev/null @@ -1,172 +0,0 @@ - - - - - -Constant Field Values - - - - - - - - - - - -
-

Constant Field Values

-

Contents

- -
-
- - -

com.tomer.*

- -
- - - - - - diff --git a/docs/deprecated-list.html b/docs/deprecated-list.html deleted file mode 100644 index f608982..0000000 --- a/docs/deprecated-list.html +++ /dev/null @@ -1,151 +0,0 @@ - - - - - -Deprecated List - - - - - - - - -
- - - - - - - -
- - -
-

Deprecated API

-

Contents

- -
- - -
- - - - - - - -
- - - - diff --git a/docs/fadingtextview/com.tomer.fadingtextview/-fading-text-view/-companion/index.html b/docs/fadingtextview/com.tomer.fadingtextview/-fading-text-view/-companion/index.html new file mode 100644 index 0000000..26c2037 --- /dev/null +++ b/docs/fadingtextview/com.tomer.fadingtextview/-fading-text-view/-companion/index.html @@ -0,0 +1,76 @@ + + + + + Companion + + + + + + + + + + + + + + + + + + +
+
+
+
+
+
+ +
+

Companion

+
object Companion
+
+
+
+
+
+
+ +
+
+ + diff --git a/docs/fadingtextview/com.tomer.fadingtextview/-fading-text-view/-fading-text-view.html b/docs/fadingtextview/com.tomer.fadingtextview/-fading-text-view/-fading-text-view.html new file mode 100644 index 0000000..4473b70 --- /dev/null +++ b/docs/fadingtextview/com.tomer.fadingtextview/-fading-text-view/-fading-text-view.html @@ -0,0 +1,72 @@ + + + + + FadingTextView + + + + + + + + + + + + + + + + + + +
+
+
+
+
+
+ +
+

FadingTextView

+
+
constructor(context: Context, attrs: AttributeSet? = null, defStyleAttr: Int = 0)
+
+ +
+
+ + diff --git a/docs/fadingtextview/com.tomer.fadingtextview/-fading-text-view/fade-to.html b/docs/fadingtextview/com.tomer.fadingtextview/-fading-text-view/fade-to.html new file mode 100644 index 0000000..937629f --- /dev/null +++ b/docs/fadingtextview/com.tomer.fadingtextview/-fading-text-view/fade-to.html @@ -0,0 +1,72 @@ + + + + + fadeTo + + + + + + + + + + + + + + + + + + +
+
+
+
+
+
+ +
+

fadeTo

+
+
fun fadeTo(position: Int)

Fades text to position in provided array and pauses Consider calling pause() method before calling this function to avoid overriding currently active animation

+
+ +
+
+ + diff --git a/docs/fadingtextview/com.tomer.fadingtextview/-fading-text-view/force-refresh.html b/docs/fadingtextview/com.tomer.fadingtextview/-fading-text-view/force-refresh.html new file mode 100644 index 0000000..a07b0e8 --- /dev/null +++ b/docs/fadingtextview/com.tomer.fadingtextview/-fading-text-view/force-refresh.html @@ -0,0 +1,72 @@ + + + + + forceRefresh + + + + + + + + + + + + + + + + + + +
+
+
+
+
+
+ +
+

forceRefresh

+
+

This method should only be used to forcefully apply timeout changes It will dismiss the currently queued animation change and start a new animation

+
+ +
+
+ + diff --git a/docs/fadingtextview/com.tomer.fadingtextview/-fading-text-view/index.html b/docs/fadingtextview/com.tomer.fadingtextview/-fading-text-view/index.html new file mode 100644 index 0000000..3eaf76b --- /dev/null +++ b/docs/fadingtextview/com.tomer.fadingtextview/-fading-text-view/index.html @@ -0,0 +1,288 @@ + + + + + FadingTextView + + + + + + + + + + + + + + + + + + +
+
+
+
+
+
+ +
+

FadingTextView

+
class FadingTextView @JvmOverloads constructor(context: Context, attrs: AttributeSet? = null, defStyleAttr: Int = 0) : AppCompatTextView

Author

Tomer Rosenfeld AKA rosenpin Created by rosenpin on 12/8/16.

+
+
+
+
+
+

Constructors

+
+
+
+
+ + +
Link copied to clipboard
+
+
+
+
constructor(context: Context, attrs: AttributeSet? = null, defStyleAttr: Int = 0)
+
+
+
+
+
+
+
+

Types

+
+
+
+
+ + +
Link copied to clipboard
+
+
+
+
object Companion
+
+
+
+
+
+
+
+

Functions

+
+
+
+
+ + +
Link copied to clipboard
+
+
+
+
fun fadeTo(position: Int)

Fades text to position in provided array and pauses Consider calling pause() method before calling this function to avoid overriding currently active animation

+
+
+
+
+ +
+
+
+ + +
Link copied to clipboard
+
+
+
+

This method should only be used to forcefully apply timeout changes It will dismiss the currently queued animation change and start a new animation

+
+
+
+
+ +
+
+
+ + +
Link copied to clipboard
+
+
+
+
fun pause()

Pauses the animation Should only be used if you notice @see onDetachedFromWindow is not being executed as expected

+
+
+
+
+ +
+
+
+ + +
Link copied to clipboard
+
+
+
+
fun restart()

Restarts the animation Only use this to restart the animation after stopping it using {@see stop}

+
+
+
+
+ +
+
+
+ + +
Link copied to clipboard
+
+
+
+
fun resume()

Resumes the animation Should only be used if you notice @see onAttachedToWindow} is not being executed as expected

+
+
+
+
+ +
+
+
+ + +
Link copied to clipboard
+
+
+
+
fun setTexts(texts: Array<String>)

Sets the texts to be shuffled using a string array

fun setTexts(@ArrayRes texts: Int)

Sets the texts to be shuffled using a string array resource

+
+
+
+
+ +
+
+
+ + +
Link copied to clipboard
+
+
+
+
fun setTimeout(timeout: Duration)

Sets the length of time to wait between text changes in specific time units

+
+
+
+
+ +
+
+
+ + +
Link copied to clipboard
+
+
+
+
fun shuffle()

Shuffle the strings Each time this method is ran, the order of the strings will be randomized After you set texts dynamically you will have to call shuffle again

+
+
+
+
+ +
+
+
+ + +
Link copied to clipboard
+
+
+
+
open override fun startAnimation(animation: Animation)

This method is overridden to prevent animations from starting when the view is not shown If you want to start the animation manually, use the @see resume method

+
+
+
+
+ +
+
+
+ + +
Link copied to clipboard
+
+
+
+
fun stop()

Stops the animation Unlike the pause function, the stop method will permanently stop the animation until the view is restarted

+
+
+
+
+
+
+
+

Properties

+
+
+
+
+ + +
Link copied to clipboard
+
+
+ +
+
+
+
+
+
+
+
+ +
+
+ + diff --git a/docs/fadingtextview/com.tomer.fadingtextview/-fading-text-view/pause.html b/docs/fadingtextview/com.tomer.fadingtextview/-fading-text-view/pause.html new file mode 100644 index 0000000..f977c8b --- /dev/null +++ b/docs/fadingtextview/com.tomer.fadingtextview/-fading-text-view/pause.html @@ -0,0 +1,72 @@ + + + + + pause + + + + + + + + + + + + + + + + + + +
+
+
+
+
+
+ +
+

pause

+
+
fun pause()

Pauses the animation Should only be used if you notice @see onDetachedFromWindow is not being executed as expected

+
+ +
+
+ + diff --git a/docs/fadingtextview/com.tomer.fadingtextview/-fading-text-view/restart.html b/docs/fadingtextview/com.tomer.fadingtextview/-fading-text-view/restart.html new file mode 100644 index 0000000..e7d2d38 --- /dev/null +++ b/docs/fadingtextview/com.tomer.fadingtextview/-fading-text-view/restart.html @@ -0,0 +1,72 @@ + + + + + restart + + + + + + + + + + + + + + + + + + +
+
+
+
+
+
+ +
+

restart

+
+
fun restart()

Restarts the animation Only use this to restart the animation after stopping it using {@see stop}

+
+ +
+
+ + diff --git a/docs/fadingtextview/com.tomer.fadingtextview/-fading-text-view/resume.html b/docs/fadingtextview/com.tomer.fadingtextview/-fading-text-view/resume.html new file mode 100644 index 0000000..f7d83dc --- /dev/null +++ b/docs/fadingtextview/com.tomer.fadingtextview/-fading-text-view/resume.html @@ -0,0 +1,72 @@ + + + + + resume + + + + + + + + + + + + + + + + + + +
+
+
+
+
+
+ +
+

resume

+
+
fun resume()

Resumes the animation Should only be used if you notice @see onAttachedToWindow} is not being executed as expected

+
+ +
+
+ + diff --git a/docs/fadingtextview/com.tomer.fadingtextview/-fading-text-view/set-texts.html b/docs/fadingtextview/com.tomer.fadingtextview/-fading-text-view/set-texts.html new file mode 100644 index 0000000..30905d1 --- /dev/null +++ b/docs/fadingtextview/com.tomer.fadingtextview/-fading-text-view/set-texts.html @@ -0,0 +1,72 @@ + + + + + setTexts + + + + + + + + + + + + + + + + + + +
+
+
+
+
+
+ +
+

setTexts

+
+
fun setTexts(texts: Array<String>)

Sets the texts to be shuffled using a string array

Parameters

texts

The string array to use for the texts


fun setTexts(@ArrayRes texts: Int)

Sets the texts to be shuffled using a string array resource

Parameters

texts

The string array resource to use for the texts

+
+ +
+
+ + diff --git a/docs/fadingtextview/com.tomer.fadingtextview/-fading-text-view/set-timeout.html b/docs/fadingtextview/com.tomer.fadingtextview/-fading-text-view/set-timeout.html new file mode 100644 index 0000000..8c1761e --- /dev/null +++ b/docs/fadingtextview/com.tomer.fadingtextview/-fading-text-view/set-timeout.html @@ -0,0 +1,72 @@ + + + + + setTimeout + + + + + + + + + + + + + + + + + + +
+
+
+
+
+
+ +
+

setTimeout

+
+
fun setTimeout(timeout: Duration)

Sets the length of time to wait between text changes in specific time units

Parameters

timeout

The duration to wait between text changes

+
+ +
+
+ + diff --git a/docs/fadingtextview/com.tomer.fadingtextview/-fading-text-view/shuffle.html b/docs/fadingtextview/com.tomer.fadingtextview/-fading-text-view/shuffle.html new file mode 100644 index 0000000..de6dc14 --- /dev/null +++ b/docs/fadingtextview/com.tomer.fadingtextview/-fading-text-view/shuffle.html @@ -0,0 +1,72 @@ + + + + + shuffle + + + + + + + + + + + + + + + + + + +
+
+
+
+
+
+ +
+

shuffle

+
+
fun shuffle()

Shuffle the strings Each time this method is ran, the order of the strings will be randomized After you set texts dynamically you will have to call shuffle again

Throws

if you don't supply texts to the FadingTextView in your XML file. You can leave it empty by using FTV.placeholder and set it manually later using the setTexts method

+
+ +
+
+ + diff --git a/docs/fadingtextview/com.tomer.fadingtextview/-fading-text-view/start-animation.html b/docs/fadingtextview/com.tomer.fadingtextview/-fading-text-view/start-animation.html new file mode 100644 index 0000000..96c1d32 --- /dev/null +++ b/docs/fadingtextview/com.tomer.fadingtextview/-fading-text-view/start-animation.html @@ -0,0 +1,72 @@ + + + + + startAnimation + + + + + + + + + + + + + + + + + + +
+
+
+
+
+
+ +
+

startAnimation

+
+
open override fun startAnimation(animation: Animation)

This method is overridden to prevent animations from starting when the view is not shown If you want to start the animation manually, use the @see resume method

Parameters

animation

the animation to start now

+
+ +
+
+ + diff --git a/docs/fadingtextview/com.tomer.fadingtextview/-fading-text-view/stop.html b/docs/fadingtextview/com.tomer.fadingtextview/-fading-text-view/stop.html new file mode 100644 index 0000000..e156020 --- /dev/null +++ b/docs/fadingtextview/com.tomer.fadingtextview/-fading-text-view/stop.html @@ -0,0 +1,72 @@ + + + + + stop + + + + + + + + + + + + + + + + + + +
+
+
+
+
+
+ +
+

stop

+
+
fun stop()

Stops the animation Unlike the pause function, the stop method will permanently stop the animation until the view is restarted

+
+ +
+
+ + diff --git a/docs/fadingtextview/com.tomer.fadingtextview/-fading-text-view/texts.html b/docs/fadingtextview/com.tomer.fadingtextview/-fading-text-view/texts.html new file mode 100644 index 0000000..d618bb9 --- /dev/null +++ b/docs/fadingtextview/com.tomer.fadingtextview/-fading-text-view/texts.html @@ -0,0 +1,72 @@ + + + + + texts + + + + + + + + + + + + + + + + + + +
+
+
+
+
+
+ +
+

texts

+
+ +
+ +
+
+ + diff --git a/docs/fadingtextview/com.tomer.fadingtextview/index.html b/docs/fadingtextview/com.tomer.fadingtextview/index.html new file mode 100644 index 0000000..1ccfc76 --- /dev/null +++ b/docs/fadingtextview/com.tomer.fadingtextview/index.html @@ -0,0 +1,95 @@ + + + + + com.tomer.fadingtextview + + + + + + + + + + + + + + + + + + +
+
+
+
+
+
+ +
+

Package-level declarations

+
+
+
+
+
+

Types

+
+
+
+
+ + +
Link copied to clipboard
+
+
+
+
class FadingTextView @JvmOverloads constructor(context: Context, attrs: AttributeSet? = null, defStyleAttr: Int = 0) : AppCompatTextView
+
+
+
+
+
+
+
+
+
+ +
+
+ + diff --git a/docs/fadingtextview/package-list b/docs/fadingtextview/package-list new file mode 100644 index 0000000..3334f6c --- /dev/null +++ b/docs/fadingtextview/package-list @@ -0,0 +1,20 @@ +$dokka.format:html-v1 +$dokka.linkExtension:html +$dokka.location:com.tomer.fadingtextview////PointingToDeclaration/fadingtextview/com.tomer.fadingtextview/index.html +$dokka.location:com.tomer.fadingtextview/FadingTextView.Companion///PointingToDeclaration/fadingtextview/com.tomer.fadingtextview/-fading-text-view/-companion/index.html +$dokka.location:com.tomer.fadingtextview/FadingTextView///PointingToDeclaration/fadingtextview/com.tomer.fadingtextview/-fading-text-view/index.html +$dokka.location:com.tomer.fadingtextview/FadingTextView/FadingTextView/#android.content.Context#android.util.AttributeSet?#kotlin.Int/PointingToDeclaration/fadingtextview/com.tomer.fadingtextview/-fading-text-view/-fading-text-view.html +$dokka.location:com.tomer.fadingtextview/FadingTextView/fadeTo/#kotlin.Int/PointingToDeclaration/fadingtextview/com.tomer.fadingtextview/-fading-text-view/fade-to.html +$dokka.location:com.tomer.fadingtextview/FadingTextView/forceRefresh/#/PointingToDeclaration/fadingtextview/com.tomer.fadingtextview/-fading-text-view/force-refresh.html +$dokka.location:com.tomer.fadingtextview/FadingTextView/pause/#/PointingToDeclaration/fadingtextview/com.tomer.fadingtextview/-fading-text-view/pause.html +$dokka.location:com.tomer.fadingtextview/FadingTextView/restart/#/PointingToDeclaration/fadingtextview/com.tomer.fadingtextview/-fading-text-view/restart.html +$dokka.location:com.tomer.fadingtextview/FadingTextView/resume/#/PointingToDeclaration/fadingtextview/com.tomer.fadingtextview/-fading-text-view/resume.html +$dokka.location:com.tomer.fadingtextview/FadingTextView/setTexts/#kotlin.Array[kotlin.String]/PointingToDeclaration/fadingtextview/com.tomer.fadingtextview/-fading-text-view/set-texts.html +$dokka.location:com.tomer.fadingtextview/FadingTextView/setTexts/#kotlin.Int/PointingToDeclaration/fadingtextview/com.tomer.fadingtextview/-fading-text-view/set-texts.html +$dokka.location:com.tomer.fadingtextview/FadingTextView/setTimeout/#kotlin.time.Duration/PointingToDeclaration/fadingtextview/com.tomer.fadingtextview/-fading-text-view/set-timeout.html +$dokka.location:com.tomer.fadingtextview/FadingTextView/shuffle/#/PointingToDeclaration/fadingtextview/com.tomer.fadingtextview/-fading-text-view/shuffle.html +$dokka.location:com.tomer.fadingtextview/FadingTextView/startAnimation/#android.view.animation.Animation/PointingToDeclaration/fadingtextview/com.tomer.fadingtextview/-fading-text-view/start-animation.html +$dokka.location:com.tomer.fadingtextview/FadingTextView/stop/#/PointingToDeclaration/fadingtextview/com.tomer.fadingtextview/-fading-text-view/stop.html +$dokka.location:com.tomer.fadingtextview/FadingTextView/texts/#/PointingToDeclaration/fadingtextview/com.tomer.fadingtextview/-fading-text-view/texts.html +com.tomer.fadingtextview + diff --git a/docs/help-doc.html b/docs/help-doc.html deleted file mode 100644 index f3cc17e..0000000 --- a/docs/help-doc.html +++ /dev/null @@ -1,223 +0,0 @@ - - - - - -API Help - - - - - - - - - - - -
-

How This API Document Is Organized

-
This API (Application Programming Interface) document has pages corresponding to the items in the navigation bar, described as follows.
-
-
-
    -
  • -

    Package

    -

    Each package has a page that contains a list of its classes and interfaces, with a summary for each. This page can contain six categories:

    -
      -
    • Interfaces (italic)
    • -
    • Classes
    • -
    • Enums
    • -
    • Exceptions
    • -
    • Errors
    • -
    • Annotation Types
    • -
    -
  • -
  • -

    Class/Interface

    -

    Each class, interface, nested class and nested interface has its own separate page. Each of these pages has three sections consisting of a class/interface description, summary tables, and detailed member descriptions:

    -
      -
    • Class inheritance diagram
    • -
    • Direct Subclasses
    • -
    • All Known Subinterfaces
    • -
    • All Known Implementing Classes
    • -
    • Class/interface declaration
    • -
    • Class/interface description
    • -
    -
      -
    • Nested Class Summary
    • -
    • Field Summary
    • -
    • Constructor Summary
    • -
    • Method Summary
    • -
    -
      -
    • Field Detail
    • -
    • Constructor Detail
    • -
    • Method Detail
    • -
    -

    Each summary entry contains the first sentence from the detailed description for that item. The summary entries are alphabetical, while the detailed descriptions are in the order they appear in the source code. This preserves the logical groupings established by the programmer.

    -
  • -
  • -

    Annotation Type

    -

    Each annotation type has its own separate page with the following sections:

    -
      -
    • Annotation Type declaration
    • -
    • Annotation Type description
    • -
    • Required Element Summary
    • -
    • Optional Element Summary
    • -
    • Element Detail
    • -
    -
  • -
  • -

    Enum

    -

    Each enum has its own separate page with the following sections:

    -
      -
    • Enum declaration
    • -
    • Enum description
    • -
    • Enum Constant Summary
    • -
    • Enum Constant Detail
    • -
    -
  • -
  • -

    Use

    -

    Each documented package, class and interface has its own Use page. This page describes what packages, classes, methods, constructors and fields use any part of the given class or package. Given a class or interface A, its Use page includes subclasses of A, fields declared as A, methods that return A, and methods and constructors with parameters of type A. You can access this page by first going to the package, class or interface, then clicking on the "Use" link in the navigation bar.

    -
  • -
  • -

    Tree (Class Hierarchy)

    -

    There is a Class Hierarchy page for all packages, plus a hierarchy for each package. Each hierarchy page contains a list of classes and a list of interfaces. The classes are organized by inheritance structure starting with java.lang.Object. The interfaces do not inherit from java.lang.Object.

    -
      -
    • When viewing the Overview page, clicking on "Tree" displays the hierarchy for all packages.
    • -
    • When viewing a particular package, class or interface page, clicking "Tree" displays the hierarchy for only that package.
    • -
    -
  • -
  • -

    Deprecated API

    -

    The Deprecated API page lists all of the API that have been deprecated. A deprecated API is not recommended for use, generally due to improvements, and a replacement API is usually given. Deprecated APIs may be removed in future implementations.

    -
  • -
  • -

    Index

    -

    The Index contains an alphabetic list of all classes, interfaces, constructors, methods, and fields.

    -
  • -
  • -

    Prev/Next

    -

    These links take you to the next or previous class, interface, package, or related page.

    -
  • -
  • -

    Frames/No Frames

    -

    These links show and hide the HTML frames. All pages are available with or without frames.

    -
  • -
  • -

    All Classes

    -

    The All Classes link shows all classes and interfaces except non-static nested types.

    -
  • -
  • -

    Serialized Form

    -

    Each serializable or externalizable class has a description of its serialization fields and methods. This information is of interest to re-implementors, not to developers using the API. While there is no link in the navigation bar, you can get to this information by going to any serialized class and clicking "Serialized Form" in the "See also" section of the class description.

    -
  • -
  • -

    Constant Field Values

    -

    The Constant Field Values page lists the static final fields and their values.

    -
  • -
-This help file applies to API documentation generated using the standard doclet.
- - - - - - diff --git a/docs/images/anchor-copy-button.svg b/docs/images/anchor-copy-button.svg new file mode 100644 index 0000000..bab9d74 --- /dev/null +++ b/docs/images/anchor-copy-button.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/docs/images/arrow_down.svg b/docs/images/arrow_down.svg new file mode 100644 index 0000000..c0388de --- /dev/null +++ b/docs/images/arrow_down.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/docs/images/copy-icon.svg b/docs/images/copy-icon.svg new file mode 100644 index 0000000..61440f0 --- /dev/null +++ b/docs/images/copy-icon.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/docs/images/copy-successful-icon.svg b/docs/images/copy-successful-icon.svg new file mode 100644 index 0000000..1865f73 --- /dev/null +++ b/docs/images/copy-successful-icon.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/docs/images/footer-go-to-link.svg b/docs/images/footer-go-to-link.svg new file mode 100644 index 0000000..0137e22 --- /dev/null +++ b/docs/images/footer-go-to-link.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/docs/images/go-to-top-icon.svg b/docs/images/go-to-top-icon.svg new file mode 100644 index 0000000..d987f3e --- /dev/null +++ b/docs/images/go-to-top-icon.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/docs/images/logo-icon.svg b/docs/images/logo-icon.svg new file mode 100644 index 0000000..1fea087 --- /dev/null +++ b/docs/images/logo-icon.svg @@ -0,0 +1,10 @@ + + + + + + + + + + \ No newline at end of file diff --git a/docs/images/nav-icons/abstract-class-kotlin.svg b/docs/images/nav-icons/abstract-class-kotlin.svg new file mode 100644 index 0000000..a2069b8 --- /dev/null +++ b/docs/images/nav-icons/abstract-class-kotlin.svg @@ -0,0 +1,22 @@ + + + + + + + + + + + + + + + + + + + + + + diff --git a/docs/images/nav-icons/abstract-class.svg b/docs/images/nav-icons/abstract-class.svg new file mode 100644 index 0000000..6018203 --- /dev/null +++ b/docs/images/nav-icons/abstract-class.svg @@ -0,0 +1,20 @@ + + + + + + + + + + + + + + + + + + + + diff --git a/docs/images/nav-icons/annotation-kotlin.svg b/docs/images/nav-icons/annotation-kotlin.svg new file mode 100644 index 0000000..932f1d3 --- /dev/null +++ b/docs/images/nav-icons/annotation-kotlin.svg @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/docs/images/nav-icons/annotation.svg b/docs/images/nav-icons/annotation.svg new file mode 100644 index 0000000..b80c54b --- /dev/null +++ b/docs/images/nav-icons/annotation.svg @@ -0,0 +1,7 @@ + + + + + + + diff --git a/docs/images/nav-icons/class-kotlin.svg b/docs/images/nav-icons/class-kotlin.svg new file mode 100644 index 0000000..46a21f6 --- /dev/null +++ b/docs/images/nav-icons/class-kotlin.svg @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/docs/images/nav-icons/class.svg b/docs/images/nav-icons/class.svg new file mode 100644 index 0000000..3f1ad16 --- /dev/null +++ b/docs/images/nav-icons/class.svg @@ -0,0 +1,7 @@ + + + + + + + diff --git a/docs/images/nav-icons/enum-kotlin.svg b/docs/images/nav-icons/enum-kotlin.svg new file mode 100644 index 0000000..4a85459 --- /dev/null +++ b/docs/images/nav-icons/enum-kotlin.svg @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/docs/images/nav-icons/enum.svg b/docs/images/nav-icons/enum.svg new file mode 100644 index 0000000..fa7f247 --- /dev/null +++ b/docs/images/nav-icons/enum.svg @@ -0,0 +1,7 @@ + + + + + + + diff --git a/docs/images/nav-icons/exception-class.svg b/docs/images/nav-icons/exception-class.svg new file mode 100644 index 0000000..c0b2bde --- /dev/null +++ b/docs/images/nav-icons/exception-class.svg @@ -0,0 +1,7 @@ + + + + + + + diff --git a/docs/images/nav-icons/field-value.svg b/docs/images/nav-icons/field-value.svg new file mode 100644 index 0000000..20449c9 --- /dev/null +++ b/docs/images/nav-icons/field-value.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/docs/images/nav-icons/field-variable.svg b/docs/images/nav-icons/field-variable.svg new file mode 100644 index 0000000..3b07450 --- /dev/null +++ b/docs/images/nav-icons/field-variable.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/docs/images/nav-icons/function.svg b/docs/images/nav-icons/function.svg new file mode 100644 index 0000000..f0da64a --- /dev/null +++ b/docs/images/nav-icons/function.svg @@ -0,0 +1,7 @@ + + + + + + + diff --git a/docs/images/nav-icons/interface-kotlin.svg b/docs/images/nav-icons/interface-kotlin.svg new file mode 100644 index 0000000..bf07a14 --- /dev/null +++ b/docs/images/nav-icons/interface-kotlin.svg @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/docs/images/nav-icons/interface.svg b/docs/images/nav-icons/interface.svg new file mode 100644 index 0000000..32063ba --- /dev/null +++ b/docs/images/nav-icons/interface.svg @@ -0,0 +1,7 @@ + + + + + + + diff --git a/docs/images/nav-icons/object.svg b/docs/images/nav-icons/object.svg new file mode 100644 index 0000000..9f427de --- /dev/null +++ b/docs/images/nav-icons/object.svg @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/docs/images/theme-toggle.svg b/docs/images/theme-toggle.svg new file mode 100644 index 0000000..2a8d750 --- /dev/null +++ b/docs/images/theme-toggle.svg @@ -0,0 +1,4 @@ + + + \ No newline at end of file diff --git a/docs/index-files/index-1.html b/docs/index-files/index-1.html deleted file mode 100644 index be25b0e..0000000 --- a/docs/index-files/index-1.html +++ /dev/null @@ -1,127 +0,0 @@ - - - - - -C-Index - - - - - - - - -
- - - - - - - -
- - -
C D F G M O P R S  - - -

C

-
-
com.tomer.fadingtextview - package com.tomer.fadingtextview
-
 
-
-C D F G M O P R S 
- -
- - - - - - - -
- - - - diff --git a/docs/index-files/index-10.html b/docs/index-files/index-10.html deleted file mode 100644 index 3959dd4..0000000 --- a/docs/index-files/index-10.html +++ /dev/null @@ -1,135 +0,0 @@ - - - - - -R-Index - - - - - - - - -
- - - - - - - -
- - -
A C D E F G M O P R S  - - -

R

-
-
restart() - Method in class com.tomer.fadingtextview.FadingTextView
-
-
Restarting the animation - Only use this to restart the animation after stopping it using FadingTextView.stop()
-
-
resume() - Method in class com.tomer.fadingtextview.FadingTextView
-
-
Resuming the animation - Should only be used if you notice FadingTextView.onAttachedToWindow() ()} is not being executed as expected
-
-
-A C D E F G M O P R S 
- -
- - - - - - - -
- - - - diff --git a/docs/index-files/index-11.html b/docs/index-files/index-11.html deleted file mode 100644 index 4d71192..0000000 --- a/docs/index-files/index-11.html +++ /dev/null @@ -1,162 +0,0 @@ - - - - - -S-Index - - - - - - - - -
- - - - - - - -
- - -
A C D E F G M O P R S  - - -

S

-
-
SECONDS - Static variable in class com.tomer.fadingtextview.FadingTextView
-
 
-
setTexts(String[]) - Method in class com.tomer.fadingtextview.FadingTextView
-
-
Sets the texts to be shuffled using a string array
-
-
setTexts(int) - Method in class com.tomer.fadingtextview.FadingTextView
-
-
Sets the texts to be shuffled using a string array resource
-
-
setTimeout(int) - Method in class com.tomer.fadingtextview.FadingTextView
-
- -
-
setTimeout(double, int) - Method in class com.tomer.fadingtextview.FadingTextView
-
- -
-
setTimeout(long, TimeUnit) - Method in class com.tomer.fadingtextview.FadingTextView
-
 
-
startAnimation(Animation) - Method in class com.tomer.fadingtextview.FadingTextView
-
-
Start the specified animation now if should
-
-
startAnimation() - Method in class com.tomer.fadingtextview.FadingTextView
-
-
start the animation
-
-
stop() - Method in class com.tomer.fadingtextview.FadingTextView
-
-
Stopping the animation - Unlike the pause function, the stop method will permanently stop the animation until the view is restarted
-
-
-A C D E F G M O P R S 
- -
- - - - - - - -
- - - - diff --git a/docs/index-files/index-12.html b/docs/index-files/index-12.html deleted file mode 100644 index ed8153e..0000000 --- a/docs/index-files/index-12.html +++ /dev/null @@ -1,580 +0,0 @@ - - - - - -M-Index - - - - - - - - -
- - - - - - - -
- - -
A B C D E F G H I K L M N O P Q R S T U V W  - - -

M

-
-
MainActivity - Class in com.tomerrosenfeld.fadingtextview
-
 
-
MainActivity() - Constructor for class com.tomerrosenfeld.fadingtextview.MainActivity
-
 
-
masked - Static variable in class com.tomerrosenfeld.fadingtextview.R.id
-
 
-
material_blue_grey_800 - Static variable in class com.tomer.fadingtextview.R.color
-
 
-
material_blue_grey_800 - Static variable in class com.tomerrosenfeld.fadingtextview.R.color
-
 
-
material_blue_grey_900 - Static variable in class com.tomer.fadingtextview.R.color
-
 
-
material_blue_grey_900 - Static variable in class com.tomerrosenfeld.fadingtextview.R.color
-
 
-
material_blue_grey_950 - Static variable in class com.tomer.fadingtextview.R.color
-
 
-
material_blue_grey_950 - Static variable in class com.tomerrosenfeld.fadingtextview.R.color
-
 
-
material_deep_teal_200 - Static variable in class com.tomer.fadingtextview.R.color
-
 
-
material_deep_teal_200 - Static variable in class com.tomerrosenfeld.fadingtextview.R.color
-
 
-
material_deep_teal_500 - Static variable in class com.tomer.fadingtextview.R.color
-
 
-
material_deep_teal_500 - Static variable in class com.tomerrosenfeld.fadingtextview.R.color
-
 
-
material_grey_100 - Static variable in class com.tomer.fadingtextview.R.color
-
 
-
material_grey_100 - Static variable in class com.tomerrosenfeld.fadingtextview.R.color
-
 
-
material_grey_300 - Static variable in class com.tomer.fadingtextview.R.color
-
 
-
material_grey_300 - Static variable in class com.tomerrosenfeld.fadingtextview.R.color
-
 
-
material_grey_50 - Static variable in class com.tomer.fadingtextview.R.color
-
 
-
material_grey_50 - Static variable in class com.tomerrosenfeld.fadingtextview.R.color
-
 
-
material_grey_600 - Static variable in class com.tomer.fadingtextview.R.color
-
 
-
material_grey_600 - Static variable in class com.tomerrosenfeld.fadingtextview.R.color
-
 
-
material_grey_800 - Static variable in class com.tomer.fadingtextview.R.color
-
 
-
material_grey_800 - Static variable in class com.tomerrosenfeld.fadingtextview.R.color
-
 
-
material_grey_850 - Static variable in class com.tomer.fadingtextview.R.color
-
 
-
material_grey_850 - Static variable in class com.tomerrosenfeld.fadingtextview.R.color
-
 
-
material_grey_900 - Static variable in class com.tomer.fadingtextview.R.color
-
 
-
material_grey_900 - Static variable in class com.tomerrosenfeld.fadingtextview.R.color
-
 
-
maxActionInlineWidth - Static variable in class com.tomerrosenfeld.fadingtextview.R.attr
-
-
Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp".
-
-
maxButtonHeight - Static variable in class com.tomer.fadingtextview.R.attr
-
-
Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp".
-
-
maxButtonHeight - Static variable in class com.tomerrosenfeld.fadingtextview.R.attr
-
-
Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp".
-
-
measureWithLargestChild - Static variable in class com.tomer.fadingtextview.R.attr
-
-
Must be a boolean value, either "true" or "false".
-
-
measureWithLargestChild - Static variable in class com.tomerrosenfeld.fadingtextview.R.attr
-
-
Must be a boolean value, either "true" or "false".
-
-
media_actions - Static variable in class com.tomer.fadingtextview.R.id
-
 
-
media_actions - Static variable in class com.tomerrosenfeld.fadingtextview.R.id
-
 
-
menu - Static variable in class com.tomerrosenfeld.fadingtextview.R.attr
-
-
Must be a reference to another resource, in the form "@[+][package:]type:name" -or to a theme attribute in the form "?[package:][type:]name".
-
-
MenuGroup - Static variable in class com.tomer.fadingtextview.R.styleable
-
-
Attributes that can be used with a MenuGroup.
-
-
MenuGroup - Static variable in class com.tomerrosenfeld.fadingtextview.R.styleable
-
-
Attributes that can be used with a MenuGroup.
-
-
MenuGroup_android_checkableBehavior - Static variable in class com.tomer.fadingtextview.R.styleable
-
-
This symbol is the offset where the R.attr.checkableBehavior - attribute's value can be found in the MenuGroup array.
-
-
MenuGroup_android_checkableBehavior - Static variable in class com.tomerrosenfeld.fadingtextview.R.styleable
-
-
This symbol is the offset where the R.attr.checkableBehavior - attribute's value can be found in the R.styleable.MenuGroup array.
-
-
MenuGroup_android_enabled - Static variable in class com.tomer.fadingtextview.R.styleable
-
-
This symbol is the offset where the R.attr.enabled - attribute's value can be found in the MenuGroup array.
-
-
MenuGroup_android_enabled - Static variable in class com.tomerrosenfeld.fadingtextview.R.styleable
-
-
This symbol is the offset where the R.attr.enabled - attribute's value can be found in the R.styleable.MenuGroup array.
-
-
MenuGroup_android_id - Static variable in class com.tomer.fadingtextview.R.styleable
-
-
This symbol is the offset where the R.attr.id - attribute's value can be found in the MenuGroup array.
-
-
MenuGroup_android_id - Static variable in class com.tomerrosenfeld.fadingtextview.R.styleable
-
-
This symbol is the offset where the R.attr.id - attribute's value can be found in the R.styleable.MenuGroup array.
-
-
MenuGroup_android_menuCategory - Static variable in class com.tomer.fadingtextview.R.styleable
-
-
This symbol is the offset where the R.attr.menuCategory - attribute's value can be found in the MenuGroup array.
-
-
MenuGroup_android_menuCategory - Static variable in class com.tomerrosenfeld.fadingtextview.R.styleable
-
-
This symbol is the offset where the R.attr.menuCategory - attribute's value can be found in the R.styleable.MenuGroup array.
-
-
MenuGroup_android_orderInCategory - Static variable in class com.tomer.fadingtextview.R.styleable
-
-
This symbol is the offset where the R.attr.orderInCategory - attribute's value can be found in the MenuGroup array.
-
-
MenuGroup_android_orderInCategory - Static variable in class com.tomerrosenfeld.fadingtextview.R.styleable
-
-
This symbol is the offset where the R.attr.orderInCategory - attribute's value can be found in the R.styleable.MenuGroup array.
-
-
MenuGroup_android_visible - Static variable in class com.tomer.fadingtextview.R.styleable
-
-
This symbol is the offset where the R.attr.visible - attribute's value can be found in the MenuGroup array.
-
-
MenuGroup_android_visible - Static variable in class com.tomerrosenfeld.fadingtextview.R.styleable
-
-
This symbol is the offset where the R.attr.visible - attribute's value can be found in the R.styleable.MenuGroup array.
-
-
MenuItem - Static variable in class com.tomer.fadingtextview.R.styleable
-
-
Attributes that can be used with a MenuItem.
-
-
MenuItem - Static variable in class com.tomerrosenfeld.fadingtextview.R.styleable
-
-
Attributes that can be used with a MenuItem.
-
-
MenuItem_actionLayout - Static variable in class com.tomer.fadingtextview.R.styleable
-
-
This symbol is the offset where the R.attr.actionLayout - attribute's value can be found in the MenuItem array.
-
-
MenuItem_actionLayout - Static variable in class com.tomerrosenfeld.fadingtextview.R.styleable
-
-
This symbol is the offset where the R.attr.actionLayout - attribute's value can be found in the R.styleable.MenuItem array.
-
-
MenuItem_actionProviderClass - Static variable in class com.tomer.fadingtextview.R.styleable
-
-
This symbol is the offset where the R.attr.actionProviderClass - attribute's value can be found in the MenuItem array.
-
-
MenuItem_actionProviderClass - Static variable in class com.tomerrosenfeld.fadingtextview.R.styleable
-
-
This symbol is the offset where the R.attr.actionProviderClass - attribute's value can be found in the R.styleable.MenuItem array.
-
-
MenuItem_actionViewClass - Static variable in class com.tomer.fadingtextview.R.styleable
-
-
This symbol is the offset where the R.attr.actionViewClass - attribute's value can be found in the MenuItem array.
-
-
MenuItem_actionViewClass - Static variable in class com.tomerrosenfeld.fadingtextview.R.styleable
-
-
This symbol is the offset where the R.attr.actionViewClass - attribute's value can be found in the R.styleable.MenuItem array.
-
-
MenuItem_android_alphabeticShortcut - Static variable in class com.tomer.fadingtextview.R.styleable
-
-
This symbol is the offset where the R.attr.alphabeticShortcut - attribute's value can be found in the MenuItem array.
-
-
MenuItem_android_alphabeticShortcut - Static variable in class com.tomerrosenfeld.fadingtextview.R.styleable
-
-
This symbol is the offset where the R.attr.alphabeticShortcut - attribute's value can be found in the R.styleable.MenuItem array.
-
-
MenuItem_android_checkable - Static variable in class com.tomer.fadingtextview.R.styleable
-
-
This symbol is the offset where the R.attr.checkable - attribute's value can be found in the MenuItem array.
-
-
MenuItem_android_checkable - Static variable in class com.tomerrosenfeld.fadingtextview.R.styleable
-
-
This symbol is the offset where the R.attr.checkable - attribute's value can be found in the R.styleable.MenuItem array.
-
-
MenuItem_android_checked - Static variable in class com.tomer.fadingtextview.R.styleable
-
-
This symbol is the offset where the R.attr.checked - attribute's value can be found in the MenuItem array.
-
-
MenuItem_android_checked - Static variable in class com.tomerrosenfeld.fadingtextview.R.styleable
-
-
This symbol is the offset where the R.attr.checked - attribute's value can be found in the R.styleable.MenuItem array.
-
-
MenuItem_android_enabled - Static variable in class com.tomer.fadingtextview.R.styleable
-
-
This symbol is the offset where the R.attr.enabled - attribute's value can be found in the MenuItem array.
-
-
MenuItem_android_enabled - Static variable in class com.tomerrosenfeld.fadingtextview.R.styleable
-
-
This symbol is the offset where the R.attr.enabled - attribute's value can be found in the R.styleable.MenuItem array.
-
-
MenuItem_android_icon - Static variable in class com.tomer.fadingtextview.R.styleable
-
-
This symbol is the offset where the R.attr.icon - attribute's value can be found in the MenuItem array.
-
-
MenuItem_android_icon - Static variable in class com.tomerrosenfeld.fadingtextview.R.styleable
-
-
This symbol is the offset where the R.attr.icon - attribute's value can be found in the R.styleable.MenuItem array.
-
-
MenuItem_android_id - Static variable in class com.tomer.fadingtextview.R.styleable
-
-
This symbol is the offset where the R.attr.id - attribute's value can be found in the MenuItem array.
-
-
MenuItem_android_id - Static variable in class com.tomerrosenfeld.fadingtextview.R.styleable
-
-
This symbol is the offset where the R.attr.id - attribute's value can be found in the R.styleable.MenuItem array.
-
-
MenuItem_android_menuCategory - Static variable in class com.tomer.fadingtextview.R.styleable
-
-
This symbol is the offset where the R.attr.menuCategory - attribute's value can be found in the MenuItem array.
-
-
MenuItem_android_menuCategory - Static variable in class com.tomerrosenfeld.fadingtextview.R.styleable
-
-
This symbol is the offset where the R.attr.menuCategory - attribute's value can be found in the R.styleable.MenuItem array.
-
-
MenuItem_android_numericShortcut - Static variable in class com.tomer.fadingtextview.R.styleable
-
-
This symbol is the offset where the R.attr.numericShortcut - attribute's value can be found in the MenuItem array.
-
-
MenuItem_android_numericShortcut - Static variable in class com.tomerrosenfeld.fadingtextview.R.styleable
-
-
This symbol is the offset where the R.attr.numericShortcut - attribute's value can be found in the R.styleable.MenuItem array.
-
-
MenuItem_android_onClick - Static variable in class com.tomer.fadingtextview.R.styleable
-
-
This symbol is the offset where the R.attr.onClick - attribute's value can be found in the MenuItem array.
-
-
MenuItem_android_onClick - Static variable in class com.tomerrosenfeld.fadingtextview.R.styleable
-
-
This symbol is the offset where the R.attr.onClick - attribute's value can be found in the R.styleable.MenuItem array.
-
-
MenuItem_android_orderInCategory - Static variable in class com.tomer.fadingtextview.R.styleable
-
-
This symbol is the offset where the R.attr.orderInCategory - attribute's value can be found in the MenuItem array.
-
-
MenuItem_android_orderInCategory - Static variable in class com.tomerrosenfeld.fadingtextview.R.styleable
-
-
This symbol is the offset where the R.attr.orderInCategory - attribute's value can be found in the R.styleable.MenuItem array.
-
-
MenuItem_android_title - Static variable in class com.tomer.fadingtextview.R.styleable
-
-
This symbol is the offset where the R.attr.title - attribute's value can be found in the MenuItem array.
-
-
MenuItem_android_title - Static variable in class com.tomerrosenfeld.fadingtextview.R.styleable
-
-
This symbol is the offset where the R.attr.title - attribute's value can be found in the R.styleable.MenuItem array.
-
-
MenuItem_android_titleCondensed - Static variable in class com.tomer.fadingtextview.R.styleable
-
-
This symbol is the offset where the R.attr.titleCondensed - attribute's value can be found in the MenuItem array.
-
-
MenuItem_android_titleCondensed - Static variable in class com.tomerrosenfeld.fadingtextview.R.styleable
-
-
This symbol is the offset where the R.attr.titleCondensed - attribute's value can be found in the R.styleable.MenuItem array.
-
-
MenuItem_android_visible - Static variable in class com.tomer.fadingtextview.R.styleable
-
-
This symbol is the offset where the R.attr.visible - attribute's value can be found in the MenuItem array.
-
-
MenuItem_android_visible - Static variable in class com.tomerrosenfeld.fadingtextview.R.styleable
-
-
This symbol is the offset where the R.attr.visible - attribute's value can be found in the R.styleable.MenuItem array.
-
-
MenuItem_showAsAction - Static variable in class com.tomer.fadingtextview.R.styleable
-
-
This symbol is the offset where the R.attr.showAsAction - attribute's value can be found in the MenuItem array.
-
-
MenuItem_showAsAction - Static variable in class com.tomerrosenfeld.fadingtextview.R.styleable
-
-
This symbol is the offset where the R.attr.showAsAction - attribute's value can be found in the R.styleable.MenuItem array.
-
-
MenuView - Static variable in class com.tomer.fadingtextview.R.styleable
-
-
Attributes that can be used with a MenuView.
-
-
MenuView - Static variable in class com.tomerrosenfeld.fadingtextview.R.styleable
-
-
Attributes that can be used with a MenuView.
-
-
MenuView_android_headerBackground - Static variable in class com.tomer.fadingtextview.R.styleable
-
-
This symbol is the offset where the R.attr.headerBackground - attribute's value can be found in the MenuView array.
-
-
MenuView_android_headerBackground - Static variable in class com.tomerrosenfeld.fadingtextview.R.styleable
-
-
This symbol is the offset where the R.attr.headerBackground - attribute's value can be found in the R.styleable.MenuView array.
-
-
MenuView_android_horizontalDivider - Static variable in class com.tomer.fadingtextview.R.styleable
-
-
This symbol is the offset where the R.attr.horizontalDivider - attribute's value can be found in the MenuView array.
-
-
MenuView_android_horizontalDivider - Static variable in class com.tomerrosenfeld.fadingtextview.R.styleable
-
-
This symbol is the offset where the R.attr.horizontalDivider - attribute's value can be found in the R.styleable.MenuView array.
-
-
MenuView_android_itemBackground - Static variable in class com.tomer.fadingtextview.R.styleable
-
-
This symbol is the offset where the R.attr.itemBackground - attribute's value can be found in the MenuView array.
-
-
MenuView_android_itemBackground - Static variable in class com.tomerrosenfeld.fadingtextview.R.styleable
-
-
This symbol is the offset where the R.attr.itemBackground - attribute's value can be found in the R.styleable.MenuView array.
-
-
MenuView_android_itemIconDisabledAlpha - Static variable in class com.tomer.fadingtextview.R.styleable
-
-
This symbol is the offset where the R.attr.itemIconDisabledAlpha - attribute's value can be found in the MenuView array.
-
-
MenuView_android_itemIconDisabledAlpha - Static variable in class com.tomerrosenfeld.fadingtextview.R.styleable
-
-
This symbol is the offset where the R.attr.itemIconDisabledAlpha - attribute's value can be found in the R.styleable.MenuView array.
-
-
MenuView_android_itemTextAppearance - Static variable in class com.tomer.fadingtextview.R.styleable
-
-
This symbol is the offset where the R.attr.itemTextAppearance - attribute's value can be found in the MenuView array.
-
-
MenuView_android_itemTextAppearance - Static variable in class com.tomerrosenfeld.fadingtextview.R.styleable
-
-
This symbol is the offset where the R.attr.itemTextAppearance - attribute's value can be found in the R.styleable.MenuView array.
-
-
MenuView_android_verticalDivider - Static variable in class com.tomer.fadingtextview.R.styleable
-
-
This symbol is the offset where the R.attr.verticalDivider - attribute's value can be found in the MenuView array.
-
-
MenuView_android_verticalDivider - Static variable in class com.tomerrosenfeld.fadingtextview.R.styleable
-
-
This symbol is the offset where the R.attr.verticalDivider - attribute's value can be found in the R.styleable.MenuView array.
-
-
MenuView_android_windowAnimationStyle - Static variable in class com.tomer.fadingtextview.R.styleable
-
-
This symbol is the offset where the R.attr.windowAnimationStyle - attribute's value can be found in the MenuView array.
-
-
MenuView_android_windowAnimationStyle - Static variable in class com.tomerrosenfeld.fadingtextview.R.styleable
-
-
This symbol is the offset where the R.attr.windowAnimationStyle - attribute's value can be found in the R.styleable.MenuView array.
-
-
MenuView_preserveIconSpacing - Static variable in class com.tomer.fadingtextview.R.styleable
-
-
This symbol is the offset where the R.attr.preserveIconSpacing - attribute's value can be found in the MenuView array.
-
-
MenuView_preserveIconSpacing - Static variable in class com.tomerrosenfeld.fadingtextview.R.styleable
-
-
This symbol is the offset where the R.attr.preserveIconSpacing - attribute's value can be found in the R.styleable.MenuView array.
-
-
MenuView_subMenuArrow - Static variable in class com.tomer.fadingtextview.R.styleable
-
-
This symbol is the offset where the R.attr.subMenuArrow - attribute's value can be found in the MenuView array.
-
-
MenuView_subMenuArrow - Static variable in class com.tomerrosenfeld.fadingtextview.R.styleable
-
-
This symbol is the offset where the R.attr.subMenuArrow - attribute's value can be found in the R.styleable.MenuView array.
-
-
middle - Static variable in class com.tomer.fadingtextview.R.id
-
 
-
middle - Static variable in class com.tomerrosenfeld.fadingtextview.R.id
-
 
-
MILLISECONDS - Static variable in class com.tomer.fadingtextview.FadingTextView
-
 
-
mini - Static variable in class com.tomerrosenfeld.fadingtextview.R.id
-
 
-
MINUTES - Static variable in class com.tomer.fadingtextview.FadingTextView
-
 
-
mipmap() - Constructor for class com.tomerrosenfeld.fadingtextview.R.mipmap
-
 
-
multiChoiceItemLayout - Static variable in class com.tomer.fadingtextview.R.attr
-
-
Must be a reference to another resource, in the form "@[+][package:]type:name" -or to a theme attribute in the form "?[package:][type:]name".
-
-
multiChoiceItemLayout - Static variable in class com.tomerrosenfeld.fadingtextview.R.attr
-
-
Must be a reference to another resource, in the form "@[+][package:]type:name" -or to a theme attribute in the form "?[package:][type:]name".
-
-
multiply - Static variable in class com.tomer.fadingtextview.R.id
-
 
-
multiply - Static variable in class com.tomerrosenfeld.fadingtextview.R.id
-
 
-
-A B C D E F G H I K L M N O P Q R S T U V W 
- -
- - - - - - - -
- - - - diff --git a/docs/index-files/index-13.html b/docs/index-files/index-13.html deleted file mode 100644 index 9d61a58..0000000 --- a/docs/index-files/index-13.html +++ /dev/null @@ -1,415 +0,0 @@ - - - - - -N-Index - - - - - - - - -
- - - - - - - -
- - -
A B C D E F G H I K L M N O P Q R S T U V W  - - -

N

-
-
navigation_empty_icon - Static variable in class com.tomerrosenfeld.fadingtextview.R.drawable
-
 
-
navigation_header_container - Static variable in class com.tomerrosenfeld.fadingtextview.R.id
-
 
-
navigationContentDescription - Static variable in class com.tomer.fadingtextview.R.attr
-
-
Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character.
-
-
navigationContentDescription - Static variable in class com.tomerrosenfeld.fadingtextview.R.attr
-
-
Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character.
-
-
navigationIcon - Static variable in class com.tomer.fadingtextview.R.attr
-
-
Must be a reference to another resource, in the form "@[+][package:]type:name" -or to a theme attribute in the form "?[package:][type:]name".
-
-
navigationIcon - Static variable in class com.tomerrosenfeld.fadingtextview.R.attr
-
-
Must be a reference to another resource, in the form "@[+][package:]type:name" -or to a theme attribute in the form "?[package:][type:]name".
-
-
navigationMode - Static variable in class com.tomer.fadingtextview.R.attr
-
-
Must be one of the following constant values.
-
-
navigationMode - Static variable in class com.tomerrosenfeld.fadingtextview.R.attr
-
-
Must be one of the following constant values.
-
-
NavigationView - Static variable in class com.tomerrosenfeld.fadingtextview.R.styleable
-
-
Attributes that can be used with a NavigationView.
-
-
NavigationView_android_background - Static variable in class com.tomerrosenfeld.fadingtextview.R.styleable
-
-
This symbol is the offset where the R.attr.background - attribute's value can be found in the R.styleable.NavigationView array.
-
-
NavigationView_android_fitsSystemWindows - Static variable in class com.tomerrosenfeld.fadingtextview.R.styleable
-
-
This symbol is the offset where the R.attr.fitsSystemWindows - attribute's value can be found in the R.styleable.NavigationView array.
-
-
NavigationView_android_maxWidth - Static variable in class com.tomerrosenfeld.fadingtextview.R.styleable
-
-
This symbol is the offset where the R.attr.maxWidth - attribute's value can be found in the R.styleable.NavigationView array.
-
-
NavigationView_elevation - Static variable in class com.tomerrosenfeld.fadingtextview.R.styleable
-
-
This symbol is the offset where the R.attr.elevation - attribute's value can be found in the R.styleable.NavigationView array.
-
-
NavigationView_headerLayout - Static variable in class com.tomerrosenfeld.fadingtextview.R.styleable
-
-
This symbol is the offset where the R.attr.headerLayout - attribute's value can be found in the R.styleable.NavigationView array.
-
-
NavigationView_itemBackground - Static variable in class com.tomerrosenfeld.fadingtextview.R.styleable
-
-
This symbol is the offset where the R.attr.itemBackground - attribute's value can be found in the R.styleable.NavigationView array.
-
-
NavigationView_itemIconTint - Static variable in class com.tomerrosenfeld.fadingtextview.R.styleable
-
-
This symbol is the offset where the R.attr.itemIconTint - attribute's value can be found in the R.styleable.NavigationView array.
-
-
NavigationView_itemTextAppearance - Static variable in class com.tomerrosenfeld.fadingtextview.R.styleable
-
-
This symbol is the offset where the R.attr.itemTextAppearance - attribute's value can be found in the R.styleable.NavigationView array.
-
-
NavigationView_itemTextColor - Static variable in class com.tomerrosenfeld.fadingtextview.R.styleable
-
-
This symbol is the offset where the R.attr.itemTextColor - attribute's value can be found in the R.styleable.NavigationView array.
-
-
NavigationView_menu - Static variable in class com.tomerrosenfeld.fadingtextview.R.styleable
-
-
This symbol is the offset where the R.attr.menu - attribute's value can be found in the R.styleable.NavigationView array.
-
-
never - Static variable in class com.tomer.fadingtextview.R.id
-
 
-
never - Static variable in class com.tomerrosenfeld.fadingtextview.R.id
-
 
-
none - Static variable in class com.tomer.fadingtextview.R.id
-
 
-
none - Static variable in class com.tomerrosenfeld.fadingtextview.R.id
-
 
-
normal - Static variable in class com.tomer.fadingtextview.R.id
-
 
-
normal - Static variable in class com.tomerrosenfeld.fadingtextview.R.id
-
 
-
notification_action - Static variable in class com.tomer.fadingtextview.R.layout
-
 
-
notification_action - Static variable in class com.tomerrosenfeld.fadingtextview.R.layout
-
 
-
notification_action_background - Static variable in class com.tomer.fadingtextview.R.drawable
-
 
-
notification_action_background - Static variable in class com.tomerrosenfeld.fadingtextview.R.drawable
-
 
-
notification_action_color_filter - Static variable in class com.tomer.fadingtextview.R.color
-
 
-
notification_action_color_filter - Static variable in class com.tomerrosenfeld.fadingtextview.R.color
-
 
-
notification_action_icon_size - Static variable in class com.tomer.fadingtextview.R.dimen
-
 
-
notification_action_icon_size - Static variable in class com.tomerrosenfeld.fadingtextview.R.dimen
-
 
-
notification_action_text_size - Static variable in class com.tomer.fadingtextview.R.dimen
-
 
-
notification_action_text_size - Static variable in class com.tomerrosenfeld.fadingtextview.R.dimen
-
 
-
notification_action_tombstone - Static variable in class com.tomer.fadingtextview.R.layout
-
 
-
notification_action_tombstone - Static variable in class com.tomerrosenfeld.fadingtextview.R.layout
-
 
-
notification_background - Static variable in class com.tomer.fadingtextview.R.id
-
 
-
notification_background - Static variable in class com.tomerrosenfeld.fadingtextview.R.id
-
 
-
notification_bg - Static variable in class com.tomer.fadingtextview.R.drawable
-
 
-
notification_bg - Static variable in class com.tomerrosenfeld.fadingtextview.R.drawable
-
 
-
notification_bg_low - Static variable in class com.tomer.fadingtextview.R.drawable
-
 
-
notification_bg_low - Static variable in class com.tomerrosenfeld.fadingtextview.R.drawable
-
 
-
notification_bg_low_normal - Static variable in class com.tomer.fadingtextview.R.drawable
-
 
-
notification_bg_low_normal - Static variable in class com.tomerrosenfeld.fadingtextview.R.drawable
-
 
-
notification_bg_low_pressed - Static variable in class com.tomer.fadingtextview.R.drawable
-
 
-
notification_bg_low_pressed - Static variable in class com.tomerrosenfeld.fadingtextview.R.drawable
-
 
-
notification_bg_normal - Static variable in class com.tomer.fadingtextview.R.drawable
-
 
-
notification_bg_normal - Static variable in class com.tomerrosenfeld.fadingtextview.R.drawable
-
 
-
notification_bg_normal_pressed - Static variable in class com.tomer.fadingtextview.R.drawable
-
 
-
notification_bg_normal_pressed - Static variable in class com.tomerrosenfeld.fadingtextview.R.drawable
-
 
-
notification_big_circle_margin - Static variable in class com.tomer.fadingtextview.R.dimen
-
 
-
notification_big_circle_margin - Static variable in class com.tomerrosenfeld.fadingtextview.R.dimen
-
 
-
notification_content_margin_start - Static variable in class com.tomer.fadingtextview.R.dimen
-
 
-
notification_content_margin_start - Static variable in class com.tomerrosenfeld.fadingtextview.R.dimen
-
 
-
notification_icon_background - Static variable in class com.tomer.fadingtextview.R.drawable
-
 
-
notification_icon_background - Static variable in class com.tomerrosenfeld.fadingtextview.R.drawable
-
 
-
notification_icon_bg_color - Static variable in class com.tomer.fadingtextview.R.color
-
 
-
notification_icon_bg_color - Static variable in class com.tomerrosenfeld.fadingtextview.R.color
-
 
-
notification_large_icon_height - Static variable in class com.tomer.fadingtextview.R.dimen
-
 
-
notification_large_icon_height - Static variable in class com.tomerrosenfeld.fadingtextview.R.dimen
-
 
-
notification_large_icon_width - Static variable in class com.tomer.fadingtextview.R.dimen
-
 
-
notification_large_icon_width - Static variable in class com.tomerrosenfeld.fadingtextview.R.dimen
-
 
-
notification_main_column - Static variable in class com.tomer.fadingtextview.R.id
-
 
-
notification_main_column - Static variable in class com.tomerrosenfeld.fadingtextview.R.id
-
 
-
notification_main_column_container - Static variable in class com.tomer.fadingtextview.R.id
-
 
-
notification_main_column_container - Static variable in class com.tomerrosenfeld.fadingtextview.R.id
-
 
-
notification_main_column_padding_top - Static variable in class com.tomer.fadingtextview.R.dimen
-
 
-
notification_main_column_padding_top - Static variable in class com.tomerrosenfeld.fadingtextview.R.dimen
-
 
-
notification_material_background_media_default_color - Static variable in class com.tomer.fadingtextview.R.color
-
 
-
notification_material_background_media_default_color - Static variable in class com.tomerrosenfeld.fadingtextview.R.color
-
 
-
notification_media_action - Static variable in class com.tomer.fadingtextview.R.layout
-
 
-
notification_media_action - Static variable in class com.tomerrosenfeld.fadingtextview.R.layout
-
 
-
notification_media_cancel_action - Static variable in class com.tomer.fadingtextview.R.layout
-
 
-
notification_media_cancel_action - Static variable in class com.tomerrosenfeld.fadingtextview.R.layout
-
 
-
notification_media_narrow_margin - Static variable in class com.tomer.fadingtextview.R.dimen
-
 
-
notification_media_narrow_margin - Static variable in class com.tomerrosenfeld.fadingtextview.R.dimen
-
 
-
notification_right_icon_size - Static variable in class com.tomer.fadingtextview.R.dimen
-
 
-
notification_right_icon_size - Static variable in class com.tomerrosenfeld.fadingtextview.R.dimen
-
 
-
notification_right_side_padding_top - Static variable in class com.tomer.fadingtextview.R.dimen
-
 
-
notification_right_side_padding_top - Static variable in class com.tomerrosenfeld.fadingtextview.R.dimen
-
 
-
notification_small_icon_background_padding - Static variable in class com.tomer.fadingtextview.R.dimen
-
 
-
notification_small_icon_background_padding - Static variable in class com.tomerrosenfeld.fadingtextview.R.dimen
-
 
-
notification_small_icon_size_as_large - Static variable in class com.tomer.fadingtextview.R.dimen
-
 
-
notification_small_icon_size_as_large - Static variable in class com.tomerrosenfeld.fadingtextview.R.dimen
-
 
-
notification_subtext_size - Static variable in class com.tomer.fadingtextview.R.dimen
-
 
-
notification_subtext_size - Static variable in class com.tomerrosenfeld.fadingtextview.R.dimen
-
 
-
notification_template_big_media - Static variable in class com.tomer.fadingtextview.R.layout
-
 
-
notification_template_big_media - Static variable in class com.tomerrosenfeld.fadingtextview.R.layout
-
 
-
notification_template_big_media_custom - Static variable in class com.tomer.fadingtextview.R.layout
-
 
-
notification_template_big_media_custom - Static variable in class com.tomerrosenfeld.fadingtextview.R.layout
-
 
-
notification_template_big_media_narrow - Static variable in class com.tomer.fadingtextview.R.layout
-
 
-
notification_template_big_media_narrow - Static variable in class com.tomerrosenfeld.fadingtextview.R.layout
-
 
-
notification_template_big_media_narrow_custom - Static variable in class com.tomer.fadingtextview.R.layout
-
 
-
notification_template_big_media_narrow_custom - Static variable in class com.tomerrosenfeld.fadingtextview.R.layout
-
 
-
notification_template_custom_big - Static variable in class com.tomer.fadingtextview.R.layout
-
 
-
notification_template_custom_big - Static variable in class com.tomerrosenfeld.fadingtextview.R.layout
-
 
-
notification_template_icon_bg - Static variable in class com.tomer.fadingtextview.R.drawable
-
 
-
notification_template_icon_bg - Static variable in class com.tomerrosenfeld.fadingtextview.R.drawable
-
 
-
notification_template_icon_group - Static variable in class com.tomer.fadingtextview.R.layout
-
 
-
notification_template_icon_group - Static variable in class com.tomerrosenfeld.fadingtextview.R.layout
-
 
-
notification_template_icon_low_bg - Static variable in class com.tomer.fadingtextview.R.drawable
-
 
-
notification_template_icon_low_bg - Static variable in class com.tomerrosenfeld.fadingtextview.R.drawable
-
 
-
notification_template_lines_media - Static variable in class com.tomer.fadingtextview.R.layout
-
 
-
notification_template_lines_media - Static variable in class com.tomerrosenfeld.fadingtextview.R.layout
-
 
-
notification_template_media - Static variable in class com.tomer.fadingtextview.R.layout
-
 
-
notification_template_media - Static variable in class com.tomerrosenfeld.fadingtextview.R.layout
-
 
-
notification_template_media_custom - Static variable in class com.tomer.fadingtextview.R.layout
-
 
-
notification_template_media_custom - Static variable in class com.tomerrosenfeld.fadingtextview.R.layout
-
 
-
notification_template_part_chronometer - Static variable in class com.tomer.fadingtextview.R.layout
-
 
-
notification_template_part_chronometer - Static variable in class com.tomerrosenfeld.fadingtextview.R.layout
-
 
-
notification_template_part_time - Static variable in class com.tomer.fadingtextview.R.layout
-
 
-
notification_template_part_time - Static variable in class com.tomerrosenfeld.fadingtextview.R.layout
-
 
-
notification_tile_bg - Static variable in class com.tomer.fadingtextview.R.drawable
-
 
-
notification_tile_bg - Static variable in class com.tomerrosenfeld.fadingtextview.R.drawable
-
 
-
notification_top_pad - Static variable in class com.tomer.fadingtextview.R.dimen
-
 
-
notification_top_pad - Static variable in class com.tomerrosenfeld.fadingtextview.R.dimen
-
 
-
notification_top_pad_large_text - Static variable in class com.tomer.fadingtextview.R.dimen
-
 
-
notification_top_pad_large_text - Static variable in class com.tomerrosenfeld.fadingtextview.R.dimen
-
 
-
notify_panel_notification_icon_bg - Static variable in class com.tomer.fadingtextview.R.drawable
-
 
-
notify_panel_notification_icon_bg - Static variable in class com.tomerrosenfeld.fadingtextview.R.drawable
-
 
-
-A B C D E F G H I K L M N O P Q R S T U V W 
- -
- - - - - - - -
- - - - diff --git a/docs/index-files/index-14.html b/docs/index-files/index-14.html deleted file mode 100644 index 2b592a6..0000000 --- a/docs/index-files/index-14.html +++ /dev/null @@ -1,141 +0,0 @@ - - - - - -O-Index - - - - - - - - -
- - - - - - - -
- - -
A B C D E F G H I K L M N O P Q R S T U V W  - - -

O

-
-
onAttachedToWindow() - Method in class com.tomer.fadingtextview.FadingTextView
-
 
-
onCreate(Bundle) - Method in class com.tomerrosenfeld.fadingtextview.MainActivity
-
 
-
onDetachedFromWindow() - Method in class com.tomer.fadingtextview.FadingTextView
-
 
-
overlapAnchor - Static variable in class com.tomer.fadingtextview.R.attr
-
-
Must be a boolean value, either "true" or "false".
-
-
overlapAnchor - Static variable in class com.tomerrosenfeld.fadingtextview.R.attr
-
-
Must be a boolean value, either "true" or "false".
-
-
-A B C D E F G H I K L M N O P Q R S T U V W 
- -
- - - - - - - -
- - - - diff --git a/docs/index-files/index-15.html b/docs/index-files/index-15.html deleted file mode 100644 index 7036cc3..0000000 --- a/docs/index-files/index-15.html +++ /dev/null @@ -1,444 +0,0 @@ - - - - - -P-Index - - - - - - - - -
- - - - - - - -
- - -
A B C D E F G H I K L M N O P Q R S T U V W  - - -

P

-
-
paddingBottomNoButtons - Static variable in class com.tomer.fadingtextview.R.attr
-
-
Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp".
-
-
paddingBottomNoButtons - Static variable in class com.tomerrosenfeld.fadingtextview.R.attr
-
-
Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp".
-
-
paddingEnd - Static variable in class com.tomer.fadingtextview.R.attr
-
-
Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp".
-
-
paddingEnd - Static variable in class com.tomerrosenfeld.fadingtextview.R.attr
-
-
Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp".
-
-
paddingStart - Static variable in class com.tomer.fadingtextview.R.attr
-
-
Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp".
-
-
paddingStart - Static variable in class com.tomerrosenfeld.fadingtextview.R.attr
-
-
Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp".
-
-
paddingTopNoTitle - Static variable in class com.tomer.fadingtextview.R.attr
-
-
Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp".
-
-
paddingTopNoTitle - Static variable in class com.tomerrosenfeld.fadingtextview.R.attr
-
-
Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp".
-
-
panelBackground - Static variable in class com.tomer.fadingtextview.R.attr
-
-
Must be a reference to another resource, in the form "@[+][package:]type:name" -or to a theme attribute in the form "?[package:][type:]name".
-
-
panelBackground - Static variable in class com.tomerrosenfeld.fadingtextview.R.attr
-
-
Must be a reference to another resource, in the form "@[+][package:]type:name" -or to a theme attribute in the form "?[package:][type:]name".
-
-
panelMenuListTheme - Static variable in class com.tomer.fadingtextview.R.attr
-
-
Must be a reference to another resource, in the form "@[+][package:]type:name" -or to a theme attribute in the form "?[package:][type:]name".
-
-
panelMenuListTheme - Static variable in class com.tomerrosenfeld.fadingtextview.R.attr
-
-
Must be a reference to another resource, in the form "@[+][package:]type:name" -or to a theme attribute in the form "?[package:][type:]name".
-
-
panelMenuListWidth - Static variable in class com.tomer.fadingtextview.R.attr
-
-
Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp".
-
-
panelMenuListWidth - Static variable in class com.tomerrosenfeld.fadingtextview.R.attr
-
-
Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp".
-
-
parallax - Static variable in class com.tomerrosenfeld.fadingtextview.R.id
-
 
-
parentPanel - Static variable in class com.tomer.fadingtextview.R.id
-
 
-
parentPanel - Static variable in class com.tomerrosenfeld.fadingtextview.R.id
-
 
-
password_toggle_content_description - Static variable in class com.tomerrosenfeld.fadingtextview.R.string
-
 
-
passwordToggleContentDescription - Static variable in class com.tomerrosenfeld.fadingtextview.R.attr
-
-
Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character.
-
-
passwordToggleDrawable - Static variable in class com.tomerrosenfeld.fadingtextview.R.attr
-
-
Must be a reference to another resource, in the form "@[+][package:]type:name" -or to a theme attribute in the form "?[package:][type:]name".
-
-
passwordToggleEnabled - Static variable in class com.tomerrosenfeld.fadingtextview.R.attr
-
-
Must be a boolean value, either "true" or "false".
-
-
passwordToggleTint - Static variable in class com.tomerrosenfeld.fadingtextview.R.attr
-
-
Must be a color value, in the form of "#rgb", "#argb", -"#rrggbb", or "#aarrggbb".
-
-
passwordToggleTintMode - Static variable in class com.tomerrosenfeld.fadingtextview.R.attr
-
-
Must be one of the following constant values.
-
-
path_password_eye - Static variable in class com.tomerrosenfeld.fadingtextview.R.string
-
 
-
path_password_eye_mask_strike_through - Static variable in class com.tomerrosenfeld.fadingtextview.R.string
-
 
-
path_password_eye_mask_visible - Static variable in class com.tomerrosenfeld.fadingtextview.R.string
-
 
-
path_password_strike_through - Static variable in class com.tomerrosenfeld.fadingtextview.R.string
-
 
-
pause() - Method in class com.tomer.fadingtextview.FadingTextView
-
-
Pausing the animation - Should only be used if you notice FadingTextView.onDetachedFromWindow() is not being executed as expected
-
-
pin - Static variable in class com.tomerrosenfeld.fadingtextview.R.id
-
 
-
Platform_AppCompat - Static variable in class com.tomer.fadingtextview.R.style
-
 
-
Platform_AppCompat - Static variable in class com.tomerrosenfeld.fadingtextview.R.style
-
 
-
Platform_AppCompat_Light - Static variable in class com.tomer.fadingtextview.R.style
-
 
-
Platform_AppCompat_Light - Static variable in class com.tomerrosenfeld.fadingtextview.R.style
-
 
-
Platform_ThemeOverlay_AppCompat - Static variable in class com.tomer.fadingtextview.R.style
-
 
-
Platform_ThemeOverlay_AppCompat - Static variable in class com.tomerrosenfeld.fadingtextview.R.style
-
 
-
Platform_ThemeOverlay_AppCompat_Dark - Static variable in class com.tomer.fadingtextview.R.style
-
 
-
Platform_ThemeOverlay_AppCompat_Dark - Static variable in class com.tomerrosenfeld.fadingtextview.R.style
-
 
-
Platform_ThemeOverlay_AppCompat_Light - Static variable in class com.tomer.fadingtextview.R.style
-
 
-
Platform_ThemeOverlay_AppCompat_Light - Static variable in class com.tomerrosenfeld.fadingtextview.R.style
-
 
-
Platform_V11_AppCompat - Static variable in class com.tomer.fadingtextview.R.style
-
 
-
Platform_V11_AppCompat - Static variable in class com.tomerrosenfeld.fadingtextview.R.style
-
 
-
Platform_V11_AppCompat_Light - Static variable in class com.tomer.fadingtextview.R.style
-
 
-
Platform_V11_AppCompat_Light - Static variable in class com.tomerrosenfeld.fadingtextview.R.style
-
 
-
Platform_V14_AppCompat - Static variable in class com.tomer.fadingtextview.R.style
-
 
-
Platform_V14_AppCompat - Static variable in class com.tomerrosenfeld.fadingtextview.R.style
-
 
-
Platform_V14_AppCompat_Light - Static variable in class com.tomer.fadingtextview.R.style
-
 
-
Platform_V14_AppCompat_Light - Static variable in class com.tomerrosenfeld.fadingtextview.R.style
-
 
-
Platform_V21_AppCompat - Static variable in class com.tomer.fadingtextview.R.style
-
 
-
Platform_V21_AppCompat - Static variable in class com.tomerrosenfeld.fadingtextview.R.style
-
 
-
Platform_V21_AppCompat_Light - Static variable in class com.tomer.fadingtextview.R.style
-
 
-
Platform_V21_AppCompat_Light - Static variable in class com.tomerrosenfeld.fadingtextview.R.style
-
 
-
Platform_V25_AppCompat - Static variable in class com.tomer.fadingtextview.R.style
-
 
-
Platform_V25_AppCompat - Static variable in class com.tomerrosenfeld.fadingtextview.R.style
-
 
-
Platform_V25_AppCompat_Light - Static variable in class com.tomer.fadingtextview.R.style
-
 
-
Platform_V25_AppCompat_Light - Static variable in class com.tomerrosenfeld.fadingtextview.R.style
-
 
-
Platform_Widget_AppCompat_Spinner - Static variable in class com.tomer.fadingtextview.R.style
-
 
-
Platform_Widget_AppCompat_Spinner - Static variable in class com.tomerrosenfeld.fadingtextview.R.style
-
 
-
popupMenuStyle - Static variable in class com.tomer.fadingtextview.R.attr
-
-
Must be a reference to another resource, in the form "@[+][package:]type:name" -or to a theme attribute in the form "?[package:][type:]name".
-
-
popupMenuStyle - Static variable in class com.tomerrosenfeld.fadingtextview.R.attr
-
-
Must be a reference to another resource, in the form "@[+][package:]type:name" -or to a theme attribute in the form "?[package:][type:]name".
-
-
popupTheme - Static variable in class com.tomer.fadingtextview.R.attr
-
-
Must be a reference to another resource, in the form "@[+][package:]type:name" -or to a theme attribute in the form "?[package:][type:]name".
-
-
popupTheme - Static variable in class com.tomerrosenfeld.fadingtextview.R.attr
-
-
Must be a reference to another resource, in the form "@[+][package:]type:name" -or to a theme attribute in the form "?[package:][type:]name".
-
-
PopupWindow - Static variable in class com.tomer.fadingtextview.R.styleable
-
-
Attributes that can be used with a PopupWindow.
-
-
PopupWindow - Static variable in class com.tomerrosenfeld.fadingtextview.R.styleable
-
-
Attributes that can be used with a PopupWindow.
-
-
PopupWindow_android_popupAnimationStyle - Static variable in class com.tomer.fadingtextview.R.styleable
-
-
This symbol is the offset where the R.attr.popupAnimationStyle - attribute's value can be found in the PopupWindow array.
-
-
PopupWindow_android_popupAnimationStyle - Static variable in class com.tomerrosenfeld.fadingtextview.R.styleable
-
-
This symbol is the offset where the R.attr.popupAnimationStyle - attribute's value can be found in the R.styleable.PopupWindow array.
-
-
PopupWindow_android_popupBackground - Static variable in class com.tomer.fadingtextview.R.styleable
-
-
This symbol is the offset where the R.attr.popupBackground - attribute's value can be found in the PopupWindow array.
-
-
PopupWindow_android_popupBackground - Static variable in class com.tomerrosenfeld.fadingtextview.R.styleable
-
-
This symbol is the offset where the R.attr.popupBackground - attribute's value can be found in the R.styleable.PopupWindow array.
-
-
PopupWindow_overlapAnchor - Static variable in class com.tomer.fadingtextview.R.styleable
-
-
This symbol is the offset where the R.attr.overlapAnchor - attribute's value can be found in the PopupWindow array.
-
-
PopupWindow_overlapAnchor - Static variable in class com.tomerrosenfeld.fadingtextview.R.styleable
-
-
This symbol is the offset where the R.attr.overlapAnchor - attribute's value can be found in the R.styleable.PopupWindow array.
-
-
PopupWindowBackgroundState - Static variable in class com.tomer.fadingtextview.R.styleable
-
-
Attributes that can be used with a PopupWindowBackgroundState.
-
-
PopupWindowBackgroundState - Static variable in class com.tomerrosenfeld.fadingtextview.R.styleable
-
-
Attributes that can be used with a PopupWindowBackgroundState.
-
-
PopupWindowBackgroundState_state_above_anchor - Static variable in class com.tomer.fadingtextview.R.styleable
-
-
This symbol is the offset where the R.attr.state_above_anchor - attribute's value can be found in the PopupWindowBackgroundState array.
-
-
PopupWindowBackgroundState_state_above_anchor - Static variable in class com.tomerrosenfeld.fadingtextview.R.styleable
-
-
This symbol is the offset where the R.attr.state_above_anchor - attribute's value can be found in the R.styleable.PopupWindowBackgroundState array.
-
-
popupWindowStyle - Static variable in class com.tomer.fadingtextview.R.attr
-
-
Must be a reference to another resource, in the form "@[+][package:]type:name" -or to a theme attribute in the form "?[package:][type:]name".
-
-
popupWindowStyle - Static variable in class com.tomerrosenfeld.fadingtextview.R.attr
-
-
Must be a reference to another resource, in the form "@[+][package:]type:name" -or to a theme attribute in the form "?[package:][type:]name".
-
-
preserveIconSpacing - Static variable in class com.tomer.fadingtextview.R.attr
-
-
Must be a boolean value, either "true" or "false".
-
-
preserveIconSpacing - Static variable in class com.tomerrosenfeld.fadingtextview.R.attr
-
-
Must be a boolean value, either "true" or "false".
-
-
pressedTranslationZ - Static variable in class com.tomerrosenfeld.fadingtextview.R.attr
-
-
Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp".
-
-
primary_dark_material_dark - Static variable in class com.tomer.fadingtextview.R.color
-
 
-
primary_dark_material_dark - Static variable in class com.tomerrosenfeld.fadingtextview.R.color
-
 
-
primary_dark_material_light - Static variable in class com.tomer.fadingtextview.R.color
-
 
-
primary_dark_material_light - Static variable in class com.tomerrosenfeld.fadingtextview.R.color
-
 
-
primary_material_dark - Static variable in class com.tomer.fadingtextview.R.color
-
 
-
primary_material_dark - Static variable in class com.tomerrosenfeld.fadingtextview.R.color
-
 
-
primary_material_light - Static variable in class com.tomer.fadingtextview.R.color
-
 
-
primary_material_light - Static variable in class com.tomerrosenfeld.fadingtextview.R.color
-
 
-
primary_text_default_material_dark - Static variable in class com.tomer.fadingtextview.R.color
-
 
-
primary_text_default_material_dark - Static variable in class com.tomerrosenfeld.fadingtextview.R.color
-
 
-
primary_text_default_material_light - Static variable in class com.tomer.fadingtextview.R.color
-
 
-
primary_text_default_material_light - Static variable in class com.tomerrosenfeld.fadingtextview.R.color
-
 
-
primary_text_disabled_material_dark - Static variable in class com.tomer.fadingtextview.R.color
-
 
-
primary_text_disabled_material_dark - Static variable in class com.tomerrosenfeld.fadingtextview.R.color
-
 
-
primary_text_disabled_material_light - Static variable in class com.tomer.fadingtextview.R.color
-
 
-
primary_text_disabled_material_light - Static variable in class com.tomerrosenfeld.fadingtextview.R.color
-
 
-
progress_circular - Static variable in class com.tomer.fadingtextview.R.id
-
 
-
progress_circular - Static variable in class com.tomerrosenfeld.fadingtextview.R.id
-
 
-
progress_horizontal - Static variable in class com.tomer.fadingtextview.R.id
-
 
-
progress_horizontal - Static variable in class com.tomerrosenfeld.fadingtextview.R.id
-
 
-
progressBarPadding - Static variable in class com.tomer.fadingtextview.R.attr
-
-
Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp".
-
-
progressBarPadding - Static variable in class com.tomerrosenfeld.fadingtextview.R.attr
-
-
Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp".
-
-
progressBarStyle - Static variable in class com.tomer.fadingtextview.R.attr
-
-
Must be a reference to another resource, in the form "@[+][package:]type:name" -or to a theme attribute in the form "?[package:][type:]name".
-
-
progressBarStyle - Static variable in class com.tomerrosenfeld.fadingtextview.R.attr
-
-
Must be a reference to another resource, in the form "@[+][package:]type:name" -or to a theme attribute in the form "?[package:][type:]name".
-
-
-A B C D E F G H I K L M N O P Q R S T U V W 
- -
- - - - - - - -
- - - - diff --git a/docs/index-files/index-16.html b/docs/index-files/index-16.html deleted file mode 100644 index 39f0205..0000000 --- a/docs/index-files/index-16.html +++ /dev/null @@ -1,145 +0,0 @@ - - - - - -Q-Index - - - - - - - - -
- - - - - - - -
- - -
A B C D E F G H I K L M N O P Q R S T U V W  - - -

Q

-
-
queryBackground - Static variable in class com.tomer.fadingtextview.R.attr
-
-
Must be a reference to another resource, in the form "@[+][package:]type:name" -or to a theme attribute in the form "?[package:][type:]name".
-
-
queryBackground - Static variable in class com.tomerrosenfeld.fadingtextview.R.attr
-
-
Must be a reference to another resource, in the form "@[+][package:]type:name" -or to a theme attribute in the form "?[package:][type:]name".
-
-
queryHint - Static variable in class com.tomer.fadingtextview.R.attr
-
-
Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character.
-
-
queryHint - Static variable in class com.tomerrosenfeld.fadingtextview.R.attr
-
-
Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character.
-
-
-A B C D E F G H I K L M N O P Q R S T U V W 
- -
- - - - - - - -
- - - - diff --git a/docs/index-files/index-17.html b/docs/index-files/index-17.html deleted file mode 100644 index e743ad1..0000000 --- a/docs/index-files/index-17.html +++ /dev/null @@ -1,388 +0,0 @@ - - - - - -R-Index - - - - - - - - -
- - - - - - - -
- - -
A B C D E F G H I K L M N O P Q R S T U V W  - - -

R

-
-
R - Class in com.tomer.fadingtextview
-
 
-
R() - Constructor for class com.tomer.fadingtextview.R
-
 
-
R - Class in com.tomerrosenfeld.fadingtextview
-
 
-
R() - Constructor for class com.tomerrosenfeld.fadingtextview.R
-
 
-
R.anim - Class in com.tomer.fadingtextview
-
 
-
R.anim - Class in com.tomerrosenfeld.fadingtextview
-
 
-
R.animator - Class in com.tomerrosenfeld.fadingtextview
-
 
-
R.array - Class in com.tomerrosenfeld.fadingtextview
-
 
-
R.attr - Class in com.tomer.fadingtextview
-
 
-
R.attr - Class in com.tomerrosenfeld.fadingtextview
-
 
-
R.bool - Class in com.tomer.fadingtextview
-
 
-
R.bool - Class in com.tomerrosenfeld.fadingtextview
-
 
-
R.color - Class in com.tomer.fadingtextview
-
 
-
R.color - Class in com.tomerrosenfeld.fadingtextview
-
 
-
R.dimen - Class in com.tomer.fadingtextview
-
 
-
R.dimen - Class in com.tomerrosenfeld.fadingtextview
-
 
-
R.drawable - Class in com.tomer.fadingtextview
-
 
-
R.drawable - Class in com.tomerrosenfeld.fadingtextview
-
 
-
R.id - Class in com.tomer.fadingtextview
-
 
-
R.id - Class in com.tomerrosenfeld.fadingtextview
-
 
-
R.integer - Class in com.tomer.fadingtextview
-
 
-
R.integer - Class in com.tomerrosenfeld.fadingtextview
-
 
-
R.layout - Class in com.tomer.fadingtextview
-
 
-
R.layout - Class in com.tomerrosenfeld.fadingtextview
-
 
-
R.mipmap - Class in com.tomerrosenfeld.fadingtextview
-
 
-
R.string - Class in com.tomer.fadingtextview
-
 
-
R.string - Class in com.tomerrosenfeld.fadingtextview
-
 
-
R.style - Class in com.tomer.fadingtextview
-
 
-
R.style - Class in com.tomerrosenfeld.fadingtextview
-
 
-
R.styleable - Class in com.tomer.fadingtextview
-
 
-
R.styleable - Class in com.tomerrosenfeld.fadingtextview
-
 
-
radio - Static variable in class com.tomer.fadingtextview.R.id
-
 
-
radio - Static variable in class com.tomerrosenfeld.fadingtextview.R.id
-
 
-
radioButtonStyle - Static variable in class com.tomer.fadingtextview.R.attr
-
-
Must be a reference to another resource, in the form "@[+][package:]type:name" -or to a theme attribute in the form "?[package:][type:]name".
-
-
radioButtonStyle - Static variable in class com.tomerrosenfeld.fadingtextview.R.attr
-
-
Must be a reference to another resource, in the form "@[+][package:]type:name" -or to a theme attribute in the form "?[package:][type:]name".
-
-
ratingBarStyle - Static variable in class com.tomer.fadingtextview.R.attr
-
-
Must be a reference to another resource, in the form "@[+][package:]type:name" -or to a theme attribute in the form "?[package:][type:]name".
-
-
ratingBarStyle - Static variable in class com.tomerrosenfeld.fadingtextview.R.attr
-
-
Must be a reference to another resource, in the form "@[+][package:]type:name" -or to a theme attribute in the form "?[package:][type:]name".
-
-
ratingBarStyleIndicator - Static variable in class com.tomer.fadingtextview.R.attr
-
-
Must be a reference to another resource, in the form "@[+][package:]type:name" -or to a theme attribute in the form "?[package:][type:]name".
-
-
ratingBarStyleIndicator - Static variable in class com.tomerrosenfeld.fadingtextview.R.attr
-
-
Must be a reference to another resource, in the form "@[+][package:]type:name" -or to a theme attribute in the form "?[package:][type:]name".
-
-
ratingBarStyleSmall - Static variable in class com.tomer.fadingtextview.R.attr
-
-
Must be a reference to another resource, in the form "@[+][package:]type:name" -or to a theme attribute in the form "?[package:][type:]name".
-
-
ratingBarStyleSmall - Static variable in class com.tomerrosenfeld.fadingtextview.R.attr
-
-
Must be a reference to another resource, in the form "@[+][package:]type:name" -or to a theme attribute in the form "?[package:][type:]name".
-
-
RecycleListView - Static variable in class com.tomer.fadingtextview.R.styleable
-
-
Attributes that can be used with a RecycleListView.
-
-
RecycleListView - Static variable in class com.tomerrosenfeld.fadingtextview.R.styleable
-
-
Attributes that can be used with a RecycleListView.
-
-
RecycleListView_paddingBottomNoButtons - Static variable in class com.tomer.fadingtextview.R.styleable
-
-
This symbol is the offset where the R.attr.paddingBottomNoButtons - attribute's value can be found in the RecycleListView array.
-
-
RecycleListView_paddingBottomNoButtons - Static variable in class com.tomerrosenfeld.fadingtextview.R.styleable
-
-
This symbol is the offset where the R.attr.paddingBottomNoButtons - attribute's value can be found in the R.styleable.RecycleListView array.
-
-
RecycleListView_paddingTopNoTitle - Static variable in class com.tomer.fadingtextview.R.styleable
-
-
This symbol is the offset where the R.attr.paddingTopNoTitle - attribute's value can be found in the RecycleListView array.
-
-
RecycleListView_paddingTopNoTitle - Static variable in class com.tomerrosenfeld.fadingtextview.R.styleable
-
-
This symbol is the offset where the R.attr.paddingTopNoTitle - attribute's value can be found in the R.styleable.RecycleListView array.
-
-
RecyclerView - Static variable in class com.tomerrosenfeld.fadingtextview.R.styleable
-
-
Attributes that can be used with a RecyclerView.
-
-
RecyclerView_android_descendantFocusability - Static variable in class com.tomerrosenfeld.fadingtextview.R.styleable
-
-
This symbol is the offset where the R.attr.descendantFocusability - attribute's value can be found in the R.styleable.RecyclerView array.
-
-
RecyclerView_android_orientation - Static variable in class com.tomerrosenfeld.fadingtextview.R.styleable
-
-
This symbol is the offset where the R.attr.orientation - attribute's value can be found in the R.styleable.RecyclerView array.
-
-
RecyclerView_layoutManager - Static variable in class com.tomerrosenfeld.fadingtextview.R.styleable
-
-
This symbol is the offset where the R.attr.layoutManager - attribute's value can be found in the R.styleable.RecyclerView array.
-
-
RecyclerView_reverseLayout - Static variable in class com.tomerrosenfeld.fadingtextview.R.styleable
-
-
This symbol is the offset where the R.attr.reverseLayout - attribute's value can be found in the R.styleable.RecyclerView array.
-
-
RecyclerView_spanCount - Static variable in class com.tomerrosenfeld.fadingtextview.R.styleable
-
-
This symbol is the offset where the R.attr.spanCount - attribute's value can be found in the R.styleable.RecyclerView array.
-
-
RecyclerView_stackFromEnd - Static variable in class com.tomerrosenfeld.fadingtextview.R.styleable
-
-
This symbol is the offset where the R.attr.stackFromEnd - attribute's value can be found in the R.styleable.RecyclerView array.
-
-
restart() - Method in class com.tomer.fadingtextview.FadingTextView
-
-
Restarting the animation - Only use this to restart the animation after stopping it using FadingTextView.stop()
-
-
resume() - Method in class com.tomer.fadingtextview.FadingTextView
-
-
Resuming the animation - Should only be used if you notice FadingTextView.onAttachedToWindow() ()} is not being executed as expected
-
-
reverseLayout - Static variable in class com.tomerrosenfeld.fadingtextview.R.attr
-
-
Must be a boolean value, either "true" or "false".
-
-
right - Static variable in class com.tomerrosenfeld.fadingtextview.R.id
-
 
-
right_icon - Static variable in class com.tomer.fadingtextview.R.id
-
 
-
right_icon - Static variable in class com.tomerrosenfeld.fadingtextview.R.id
-
 
-
right_side - Static variable in class com.tomer.fadingtextview.R.id
-
 
-
right_side - Static variable in class com.tomerrosenfeld.fadingtextview.R.id
-
 
-
ripple_material_dark - Static variable in class com.tomer.fadingtextview.R.color
-
 
-
ripple_material_dark - Static variable in class com.tomerrosenfeld.fadingtextview.R.color
-
 
-
ripple_material_light - Static variable in class com.tomer.fadingtextview.R.color
-
 
-
ripple_material_light - Static variable in class com.tomerrosenfeld.fadingtextview.R.color
-
 
-
rippleColor - Static variable in class com.tomerrosenfeld.fadingtextview.R.attr
-
-
Must be a color value, in the form of "#rgb", "#argb", -"#rrggbb", or "#aarrggbb".
-
-
RtlOverlay_DialogWindowTitle_AppCompat - Static variable in class com.tomer.fadingtextview.R.style
-
 
-
RtlOverlay_DialogWindowTitle_AppCompat - Static variable in class com.tomerrosenfeld.fadingtextview.R.style
-
 
-
RtlOverlay_Widget_AppCompat_ActionBar_TitleItem - Static variable in class com.tomer.fadingtextview.R.style
-
 
-
RtlOverlay_Widget_AppCompat_ActionBar_TitleItem - Static variable in class com.tomerrosenfeld.fadingtextview.R.style
-
 
-
RtlOverlay_Widget_AppCompat_DialogTitle_Icon - Static variable in class com.tomer.fadingtextview.R.style
-
 
-
RtlOverlay_Widget_AppCompat_DialogTitle_Icon - Static variable in class com.tomerrosenfeld.fadingtextview.R.style
-
 
-
RtlOverlay_Widget_AppCompat_PopupMenuItem - Static variable in class com.tomer.fadingtextview.R.style
-
 
-
RtlOverlay_Widget_AppCompat_PopupMenuItem - Static variable in class com.tomerrosenfeld.fadingtextview.R.style
-
 
-
RtlOverlay_Widget_AppCompat_PopupMenuItem_InternalGroup - Static variable in class com.tomer.fadingtextview.R.style
-
 
-
RtlOverlay_Widget_AppCompat_PopupMenuItem_InternalGroup - Static variable in class com.tomerrosenfeld.fadingtextview.R.style
-
 
-
RtlOverlay_Widget_AppCompat_PopupMenuItem_Text - Static variable in class com.tomer.fadingtextview.R.style
-
 
-
RtlOverlay_Widget_AppCompat_PopupMenuItem_Text - Static variable in class com.tomerrosenfeld.fadingtextview.R.style
-
 
-
RtlOverlay_Widget_AppCompat_Search_DropDown - Static variable in class com.tomer.fadingtextview.R.style
-
 
-
RtlOverlay_Widget_AppCompat_Search_DropDown - Static variable in class com.tomerrosenfeld.fadingtextview.R.style
-
 
-
RtlOverlay_Widget_AppCompat_Search_DropDown_Icon1 - Static variable in class com.tomer.fadingtextview.R.style
-
 
-
RtlOverlay_Widget_AppCompat_Search_DropDown_Icon1 - Static variable in class com.tomerrosenfeld.fadingtextview.R.style
-
 
-
RtlOverlay_Widget_AppCompat_Search_DropDown_Icon2 - Static variable in class com.tomer.fadingtextview.R.style
-
 
-
RtlOverlay_Widget_AppCompat_Search_DropDown_Icon2 - Static variable in class com.tomerrosenfeld.fadingtextview.R.style
-
 
-
RtlOverlay_Widget_AppCompat_Search_DropDown_Query - Static variable in class com.tomer.fadingtextview.R.style
-
 
-
RtlOverlay_Widget_AppCompat_Search_DropDown_Query - Static variable in class com.tomerrosenfeld.fadingtextview.R.style
-
 
-
RtlOverlay_Widget_AppCompat_Search_DropDown_Text - Static variable in class com.tomer.fadingtextview.R.style
-
 
-
RtlOverlay_Widget_AppCompat_Search_DropDown_Text - Static variable in class com.tomerrosenfeld.fadingtextview.R.style
-
 
-
RtlOverlay_Widget_AppCompat_SearchView_MagIcon - Static variable in class com.tomer.fadingtextview.R.style
-
 
-
RtlOverlay_Widget_AppCompat_SearchView_MagIcon - Static variable in class com.tomerrosenfeld.fadingtextview.R.style
-
 
-
RtlUnderlay_Widget_AppCompat_ActionButton - Static variable in class com.tomer.fadingtextview.R.style
-
 
-
RtlUnderlay_Widget_AppCompat_ActionButton - Static variable in class com.tomerrosenfeld.fadingtextview.R.style
-
 
-
RtlUnderlay_Widget_AppCompat_ActionButton_Overflow - Static variable in class com.tomer.fadingtextview.R.style
-
 
-
RtlUnderlay_Widget_AppCompat_ActionButton_Overflow - Static variable in class com.tomerrosenfeld.fadingtextview.R.style
-
 
-
-A B C D E F G H I K L M N O P Q R S T U V W 
- -
- - - - - - - -
- - - - diff --git a/docs/index-files/index-18.html b/docs/index-files/index-18.html deleted file mode 100644 index 0b10124..0000000 --- a/docs/index-files/index-18.html +++ /dev/null @@ -1,1083 +0,0 @@ - - - - - -S-Index - - - - - - - - -
- - - - - - - -
- - -
A B C D E F G H I K L M N O P Q R S T U V W  - - -

S

-
-
screen - Static variable in class com.tomer.fadingtextview.R.id
-
 
-
screen - Static variable in class com.tomerrosenfeld.fadingtextview.R.id
-
 
-
scrimAnimationDuration - Static variable in class com.tomerrosenfeld.fadingtextview.R.attr
-
-
Must be an integer value, such as "100".
-
-
ScrimInsetsFrameLayout - Static variable in class com.tomerrosenfeld.fadingtextview.R.styleable
-
-
Attributes that can be used with a ScrimInsetsFrameLayout.
-
-
ScrimInsetsFrameLayout_insetForeground - Static variable in class com.tomerrosenfeld.fadingtextview.R.styleable
-
-
This symbol is the offset where the R.attr.insetForeground - attribute's value can be found in the R.styleable.ScrimInsetsFrameLayout array.
-
-
scrimVisibleHeightTrigger - Static variable in class com.tomerrosenfeld.fadingtextview.R.attr
-
-
Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp".
-
-
scroll - Static variable in class com.tomerrosenfeld.fadingtextview.R.id
-
 
-
scrollable - Static variable in class com.tomerrosenfeld.fadingtextview.R.id
-
 
-
scrollIndicatorDown - Static variable in class com.tomer.fadingtextview.R.id
-
 
-
scrollIndicatorDown - Static variable in class com.tomerrosenfeld.fadingtextview.R.id
-
 
-
scrollIndicatorUp - Static variable in class com.tomer.fadingtextview.R.id
-
 
-
scrollIndicatorUp - Static variable in class com.tomerrosenfeld.fadingtextview.R.id
-
 
-
ScrollingViewBehavior_Layout - Static variable in class com.tomerrosenfeld.fadingtextview.R.styleable
-
-
Attributes that can be used with a ScrollingViewBehavior_Layout.
-
-
ScrollingViewBehavior_Layout_behavior_overlapTop - Static variable in class com.tomerrosenfeld.fadingtextview.R.styleable
-
-
This symbol is the offset where the R.attr.behavior_overlapTop - attribute's value can be found in the R.styleable.ScrollingViewBehavior_Layout array.
-
-
scrollView - Static variable in class com.tomer.fadingtextview.R.id
-
 
-
scrollView - Static variable in class com.tomerrosenfeld.fadingtextview.R.id
-
 
-
search_badge - Static variable in class com.tomer.fadingtextview.R.id
-
 
-
search_badge - Static variable in class com.tomerrosenfeld.fadingtextview.R.id
-
 
-
search_bar - Static variable in class com.tomer.fadingtextview.R.id
-
 
-
search_bar - Static variable in class com.tomerrosenfeld.fadingtextview.R.id
-
 
-
search_button - Static variable in class com.tomer.fadingtextview.R.id
-
 
-
search_button - Static variable in class com.tomerrosenfeld.fadingtextview.R.id
-
 
-
search_close_btn - Static variable in class com.tomer.fadingtextview.R.id
-
 
-
search_close_btn - Static variable in class com.tomerrosenfeld.fadingtextview.R.id
-
 
-
search_edit_frame - Static variable in class com.tomer.fadingtextview.R.id
-
 
-
search_edit_frame - Static variable in class com.tomerrosenfeld.fadingtextview.R.id
-
 
-
search_go_btn - Static variable in class com.tomer.fadingtextview.R.id
-
 
-
search_go_btn - Static variable in class com.tomerrosenfeld.fadingtextview.R.id
-
 
-
search_mag_icon - Static variable in class com.tomer.fadingtextview.R.id
-
 
-
search_mag_icon - Static variable in class com.tomerrosenfeld.fadingtextview.R.id
-
 
-
search_menu_title - Static variable in class com.tomer.fadingtextview.R.string
-
 
-
search_menu_title - Static variable in class com.tomerrosenfeld.fadingtextview.R.string
-
 
-
search_plate - Static variable in class com.tomer.fadingtextview.R.id
-
 
-
search_plate - Static variable in class com.tomerrosenfeld.fadingtextview.R.id
-
 
-
search_src_text - Static variable in class com.tomer.fadingtextview.R.id
-
 
-
search_src_text - Static variable in class com.tomerrosenfeld.fadingtextview.R.id
-
 
-
search_voice_btn - Static variable in class com.tomer.fadingtextview.R.id
-
 
-
search_voice_btn - Static variable in class com.tomerrosenfeld.fadingtextview.R.id
-
 
-
searchHintIcon - Static variable in class com.tomer.fadingtextview.R.attr
-
-
Must be a reference to another resource, in the form "@[+][package:]type:name" -or to a theme attribute in the form "?[package:][type:]name".
-
-
searchHintIcon - Static variable in class com.tomerrosenfeld.fadingtextview.R.attr
-
-
Must be a reference to another resource, in the form "@[+][package:]type:name" -or to a theme attribute in the form "?[package:][type:]name".
-
-
searchIcon - Static variable in class com.tomer.fadingtextview.R.attr
-
-
Must be a reference to another resource, in the form "@[+][package:]type:name" -or to a theme attribute in the form "?[package:][type:]name".
-
-
searchIcon - Static variable in class com.tomerrosenfeld.fadingtextview.R.attr
-
-
Must be a reference to another resource, in the form "@[+][package:]type:name" -or to a theme attribute in the form "?[package:][type:]name".
-
-
SearchView - Static variable in class com.tomer.fadingtextview.R.styleable
-
-
Attributes that can be used with a SearchView.
-
-
SearchView - Static variable in class com.tomerrosenfeld.fadingtextview.R.styleable
-
-
Attributes that can be used with a SearchView.
-
-
SearchView_android_focusable - Static variable in class com.tomer.fadingtextview.R.styleable
-
-
This symbol is the offset where the R.attr.focusable - attribute's value can be found in the SearchView array.
-
-
SearchView_android_focusable - Static variable in class com.tomerrosenfeld.fadingtextview.R.styleable
-
-
This symbol is the offset where the R.attr.focusable - attribute's value can be found in the R.styleable.SearchView array.
-
-
SearchView_android_imeOptions - Static variable in class com.tomer.fadingtextview.R.styleable
-
-
This symbol is the offset where the R.attr.imeOptions - attribute's value can be found in the SearchView array.
-
-
SearchView_android_imeOptions - Static variable in class com.tomerrosenfeld.fadingtextview.R.styleable
-
-
This symbol is the offset where the R.attr.imeOptions - attribute's value can be found in the R.styleable.SearchView array.
-
-
SearchView_android_inputType - Static variable in class com.tomer.fadingtextview.R.styleable
-
-
This symbol is the offset where the R.attr.inputType - attribute's value can be found in the SearchView array.
-
-
SearchView_android_inputType - Static variable in class com.tomerrosenfeld.fadingtextview.R.styleable
-
-
This symbol is the offset where the R.attr.inputType - attribute's value can be found in the R.styleable.SearchView array.
-
-
SearchView_android_maxWidth - Static variable in class com.tomer.fadingtextview.R.styleable
-
-
This symbol is the offset where the R.attr.maxWidth - attribute's value can be found in the SearchView array.
-
-
SearchView_android_maxWidth - Static variable in class com.tomerrosenfeld.fadingtextview.R.styleable
-
-
This symbol is the offset where the R.attr.maxWidth - attribute's value can be found in the R.styleable.SearchView array.
-
-
SearchView_closeIcon - Static variable in class com.tomer.fadingtextview.R.styleable
-
-
This symbol is the offset where the R.attr.closeIcon - attribute's value can be found in the SearchView array.
-
-
SearchView_closeIcon - Static variable in class com.tomerrosenfeld.fadingtextview.R.styleable
-
-
This symbol is the offset where the R.attr.closeIcon - attribute's value can be found in the R.styleable.SearchView array.
-
-
SearchView_commitIcon - Static variable in class com.tomer.fadingtextview.R.styleable
-
-
This symbol is the offset where the R.attr.commitIcon - attribute's value can be found in the SearchView array.
-
-
SearchView_commitIcon - Static variable in class com.tomerrosenfeld.fadingtextview.R.styleable
-
-
This symbol is the offset where the R.attr.commitIcon - attribute's value can be found in the R.styleable.SearchView array.
-
-
SearchView_defaultQueryHint - Static variable in class com.tomer.fadingtextview.R.styleable
-
-
This symbol is the offset where the R.attr.defaultQueryHint - attribute's value can be found in the SearchView array.
-
-
SearchView_defaultQueryHint - Static variable in class com.tomerrosenfeld.fadingtextview.R.styleable
-
-
This symbol is the offset where the R.attr.defaultQueryHint - attribute's value can be found in the R.styleable.SearchView array.
-
-
SearchView_goIcon - Static variable in class com.tomer.fadingtextview.R.styleable
-
-
This symbol is the offset where the R.attr.goIcon - attribute's value can be found in the SearchView array.
-
-
SearchView_goIcon - Static variable in class com.tomerrosenfeld.fadingtextview.R.styleable
-
-
This symbol is the offset where the R.attr.goIcon - attribute's value can be found in the R.styleable.SearchView array.
-
-
SearchView_iconifiedByDefault - Static variable in class com.tomer.fadingtextview.R.styleable
-
-
This symbol is the offset where the R.attr.iconifiedByDefault - attribute's value can be found in the SearchView array.
-
-
SearchView_iconifiedByDefault - Static variable in class com.tomerrosenfeld.fadingtextview.R.styleable
-
-
This symbol is the offset where the R.attr.iconifiedByDefault - attribute's value can be found in the R.styleable.SearchView array.
-
-
SearchView_layout - Static variable in class com.tomer.fadingtextview.R.styleable
-
-
This symbol is the offset where the R.attr.layout - attribute's value can be found in the SearchView array.
-
-
SearchView_layout - Static variable in class com.tomerrosenfeld.fadingtextview.R.styleable
-
-
This symbol is the offset where the R.attr.layout - attribute's value can be found in the R.styleable.SearchView array.
-
-
SearchView_queryBackground - Static variable in class com.tomer.fadingtextview.R.styleable
-
-
This symbol is the offset where the R.attr.queryBackground - attribute's value can be found in the SearchView array.
-
-
SearchView_queryBackground - Static variable in class com.tomerrosenfeld.fadingtextview.R.styleable
-
-
This symbol is the offset where the R.attr.queryBackground - attribute's value can be found in the R.styleable.SearchView array.
-
-
SearchView_queryHint - Static variable in class com.tomer.fadingtextview.R.styleable
-
-
This symbol is the offset where the R.attr.queryHint - attribute's value can be found in the SearchView array.
-
-
SearchView_queryHint - Static variable in class com.tomerrosenfeld.fadingtextview.R.styleable
-
-
This symbol is the offset where the R.attr.queryHint - attribute's value can be found in the R.styleable.SearchView array.
-
-
SearchView_searchHintIcon - Static variable in class com.tomer.fadingtextview.R.styleable
-
-
This symbol is the offset where the R.attr.searchHintIcon - attribute's value can be found in the SearchView array.
-
-
SearchView_searchHintIcon - Static variable in class com.tomerrosenfeld.fadingtextview.R.styleable
-
-
This symbol is the offset where the R.attr.searchHintIcon - attribute's value can be found in the R.styleable.SearchView array.
-
-
SearchView_searchIcon - Static variable in class com.tomer.fadingtextview.R.styleable
-
-
This symbol is the offset where the R.attr.searchIcon - attribute's value can be found in the SearchView array.
-
-
SearchView_searchIcon - Static variable in class com.tomerrosenfeld.fadingtextview.R.styleable
-
-
This symbol is the offset where the R.attr.searchIcon - attribute's value can be found in the R.styleable.SearchView array.
-
-
SearchView_submitBackground - Static variable in class com.tomer.fadingtextview.R.styleable
-
-
This symbol is the offset where the R.attr.submitBackground - attribute's value can be found in the SearchView array.
-
-
SearchView_submitBackground - Static variable in class com.tomerrosenfeld.fadingtextview.R.styleable
-
-
This symbol is the offset where the R.attr.submitBackground - attribute's value can be found in the R.styleable.SearchView array.
-
-
SearchView_suggestionRowLayout - Static variable in class com.tomer.fadingtextview.R.styleable
-
-
This symbol is the offset where the R.attr.suggestionRowLayout - attribute's value can be found in the SearchView array.
-
-
SearchView_suggestionRowLayout - Static variable in class com.tomerrosenfeld.fadingtextview.R.styleable
-
-
This symbol is the offset where the R.attr.suggestionRowLayout - attribute's value can be found in the R.styleable.SearchView array.
-
-
SearchView_voiceIcon - Static variable in class com.tomer.fadingtextview.R.styleable
-
-
This symbol is the offset where the R.attr.voiceIcon - attribute's value can be found in the SearchView array.
-
-
SearchView_voiceIcon - Static variable in class com.tomerrosenfeld.fadingtextview.R.styleable
-
-
This symbol is the offset where the R.attr.voiceIcon - attribute's value can be found in the R.styleable.SearchView array.
-
-
searchViewStyle - Static variable in class com.tomer.fadingtextview.R.attr
-
-
Must be a reference to another resource, in the form "@[+][package:]type:name" -or to a theme attribute in the form "?[package:][type:]name".
-
-
searchViewStyle - Static variable in class com.tomerrosenfeld.fadingtextview.R.attr
-
-
Must be a reference to another resource, in the form "@[+][package:]type:name" -or to a theme attribute in the form "?[package:][type:]name".
-
-
secondary_text_default_material_dark - Static variable in class com.tomer.fadingtextview.R.color
-
 
-
secondary_text_default_material_dark - Static variable in class com.tomerrosenfeld.fadingtextview.R.color
-
 
-
secondary_text_default_material_light - Static variable in class com.tomer.fadingtextview.R.color
-
 
-
secondary_text_default_material_light - Static variable in class com.tomerrosenfeld.fadingtextview.R.color
-
 
-
secondary_text_disabled_material_dark - Static variable in class com.tomer.fadingtextview.R.color
-
 
-
secondary_text_disabled_material_dark - Static variable in class com.tomerrosenfeld.fadingtextview.R.color
-
 
-
secondary_text_disabled_material_light - Static variable in class com.tomer.fadingtextview.R.color
-
 
-
secondary_text_disabled_material_light - Static variable in class com.tomerrosenfeld.fadingtextview.R.color
-
 
-
SECONDS - Static variable in class com.tomer.fadingtextview.FadingTextView
-
 
-
seekBarStyle - Static variable in class com.tomer.fadingtextview.R.attr
-
-
Must be a reference to another resource, in the form "@[+][package:]type:name" -or to a theme attribute in the form "?[package:][type:]name".
-
-
seekBarStyle - Static variable in class com.tomerrosenfeld.fadingtextview.R.attr
-
-
Must be a reference to another resource, in the form "@[+][package:]type:name" -or to a theme attribute in the form "?[package:][type:]name".
-
-
select_dialog_item_material - Static variable in class com.tomer.fadingtextview.R.layout
-
 
-
select_dialog_item_material - Static variable in class com.tomerrosenfeld.fadingtextview.R.layout
-
 
-
select_dialog_listview - Static variable in class com.tomer.fadingtextview.R.id
-
 
-
select_dialog_listview - Static variable in class com.tomerrosenfeld.fadingtextview.R.id
-
 
-
select_dialog_multichoice_material - Static variable in class com.tomer.fadingtextview.R.layout
-
 
-
select_dialog_multichoice_material - Static variable in class com.tomerrosenfeld.fadingtextview.R.layout
-
 
-
select_dialog_singlechoice_material - Static variable in class com.tomer.fadingtextview.R.layout
-
 
-
select_dialog_singlechoice_material - Static variable in class com.tomerrosenfeld.fadingtextview.R.layout
-
 
-
selectableItemBackground - Static variable in class com.tomer.fadingtextview.R.attr
-
-
Must be a reference to another resource, in the form "@[+][package:]type:name" -or to a theme attribute in the form "?[package:][type:]name".
-
-
selectableItemBackground - Static variable in class com.tomerrosenfeld.fadingtextview.R.attr
-
-
Must be a reference to another resource, in the form "@[+][package:]type:name" -or to a theme attribute in the form "?[package:][type:]name".
-
-
selectableItemBackgroundBorderless - Static variable in class com.tomer.fadingtextview.R.attr
-
-
Must be a reference to another resource, in the form "@[+][package:]type:name" -or to a theme attribute in the form "?[package:][type:]name".
-
-
selectableItemBackgroundBorderless - Static variable in class com.tomerrosenfeld.fadingtextview.R.attr
-
-
Must be a reference to another resource, in the form "@[+][package:]type:name" -or to a theme attribute in the form "?[package:][type:]name".
-
-
setTexts(String[]) - Method in class com.tomer.fadingtextview.FadingTextView
-
-
Sets the texts to be shuffled using a string array
-
-
setTexts(int) - Method in class com.tomer.fadingtextview.FadingTextView
-
-
Sets the texts to be shuffled using a string array resource
-
-
setTimeout(int) - Method in class com.tomer.fadingtextview.FadingTextView
-
- -
-
setTimeout(double, int) - Method in class com.tomer.fadingtextview.FadingTextView
-
- -
-
setTimeout(long, TimeUnit) - Method in class com.tomer.fadingtextview.FadingTextView
-
 
-
shortcut - Static variable in class com.tomer.fadingtextview.R.id
-
 
-
shortcut - Static variable in class com.tomerrosenfeld.fadingtextview.R.id
-
 
-
show_password_duration - Static variable in class com.tomerrosenfeld.fadingtextview.R.integer
-
 
-
showAsAction - Static variable in class com.tomer.fadingtextview.R.attr
-
-
Must be one or more (separated by '|') of the following constant values.
-
-
showAsAction - Static variable in class com.tomerrosenfeld.fadingtextview.R.attr
-
-
Must be one or more (separated by '|') of the following constant values.
-
-
showCustom - Static variable in class com.tomer.fadingtextview.R.id
-
 
-
showCustom - Static variable in class com.tomerrosenfeld.fadingtextview.R.id
-
 
-
showDividers - Static variable in class com.tomer.fadingtextview.R.attr
-
-
Must be one or more (separated by '|') of the following constant values.
-
-
showDividers - Static variable in class com.tomerrosenfeld.fadingtextview.R.attr
-
-
Must be one or more (separated by '|') of the following constant values.
-
-
showHome - Static variable in class com.tomer.fadingtextview.R.id
-
 
-
showHome - Static variable in class com.tomerrosenfeld.fadingtextview.R.id
-
 
-
showText - Static variable in class com.tomer.fadingtextview.R.attr
-
-
Must be a boolean value, either "true" or "false".
-
-
showText - Static variable in class com.tomerrosenfeld.fadingtextview.R.attr
-
-
Must be a boolean value, either "true" or "false".
-
-
showTitle - Static variable in class com.tomer.fadingtextview.R.attr
-
-
Must be a boolean value, either "true" or "false".
-
-
showTitle - Static variable in class com.tomer.fadingtextview.R.id
-
 
-
showTitle - Static variable in class com.tomerrosenfeld.fadingtextview.R.attr
-
-
Must be a boolean value, either "true" or "false".
-
-
showTitle - Static variable in class com.tomerrosenfeld.fadingtextview.R.id
-
 
-
singleChoiceItemLayout - Static variable in class com.tomer.fadingtextview.R.attr
-
-
Must be a reference to another resource, in the form "@[+][package:]type:name" -or to a theme attribute in the form "?[package:][type:]name".
-
-
singleChoiceItemLayout - Static variable in class com.tomerrosenfeld.fadingtextview.R.attr
-
-
Must be a reference to another resource, in the form "@[+][package:]type:name" -or to a theme attribute in the form "?[package:][type:]name".
-
-
smallLabel - Static variable in class com.tomerrosenfeld.fadingtextview.R.id
-
 
-
snackbar_action - Static variable in class com.tomerrosenfeld.fadingtextview.R.id
-
 
-
snackbar_text - Static variable in class com.tomerrosenfeld.fadingtextview.R.id
-
 
-
SnackbarLayout - Static variable in class com.tomerrosenfeld.fadingtextview.R.styleable
-
-
Attributes that can be used with a SnackbarLayout.
-
-
SnackbarLayout_android_maxWidth - Static variable in class com.tomerrosenfeld.fadingtextview.R.styleable
-
-
This symbol is the offset where the R.attr.maxWidth - attribute's value can be found in the R.styleable.SnackbarLayout array.
-
-
SnackbarLayout_elevation - Static variable in class com.tomerrosenfeld.fadingtextview.R.styleable
-
-
This symbol is the offset where the R.attr.elevation - attribute's value can be found in the R.styleable.SnackbarLayout array.
-
-
SnackbarLayout_maxActionInlineWidth - Static variable in class com.tomerrosenfeld.fadingtextview.R.styleable
-
-
This symbol is the offset where the R.attr.maxActionInlineWidth - attribute's value can be found in the R.styleable.SnackbarLayout array.
-
-
snap - Static variable in class com.tomerrosenfeld.fadingtextview.R.id
-
 
-
spacer - Static variable in class com.tomer.fadingtextview.R.id
-
 
-
spacer - Static variable in class com.tomerrosenfeld.fadingtextview.R.id
-
 
-
spanCount - Static variable in class com.tomerrosenfeld.fadingtextview.R.attr
-
-
Must be an integer value, such as "100".
-
-
spinBars - Static variable in class com.tomer.fadingtextview.R.attr
-
-
Must be a boolean value, either "true" or "false".
-
-
spinBars - Static variable in class com.tomerrosenfeld.fadingtextview.R.attr
-
-
Must be a boolean value, either "true" or "false".
-
-
Spinner - Static variable in class com.tomer.fadingtextview.R.styleable
-
-
Attributes that can be used with a Spinner.
-
-
Spinner - Static variable in class com.tomerrosenfeld.fadingtextview.R.styleable
-
-
Attributes that can be used with a Spinner.
-
-
Spinner_android_dropDownWidth - Static variable in class com.tomer.fadingtextview.R.styleable
-
-
This symbol is the offset where the R.attr.dropDownWidth - attribute's value can be found in the Spinner array.
-
-
Spinner_android_dropDownWidth - Static variable in class com.tomerrosenfeld.fadingtextview.R.styleable
-
-
This symbol is the offset where the R.attr.dropDownWidth - attribute's value can be found in the R.styleable.Spinner array.
-
-
Spinner_android_entries - Static variable in class com.tomer.fadingtextview.R.styleable
-
-
This symbol is the offset where the R.attr.entries - attribute's value can be found in the Spinner array.
-
-
Spinner_android_entries - Static variable in class com.tomerrosenfeld.fadingtextview.R.styleable
-
-
This symbol is the offset where the R.attr.entries - attribute's value can be found in the R.styleable.Spinner array.
-
-
Spinner_android_popupBackground - Static variable in class com.tomer.fadingtextview.R.styleable
-
-
This symbol is the offset where the R.attr.popupBackground - attribute's value can be found in the Spinner array.
-
-
Spinner_android_popupBackground - Static variable in class com.tomerrosenfeld.fadingtextview.R.styleable
-
-
This symbol is the offset where the R.attr.popupBackground - attribute's value can be found in the R.styleable.Spinner array.
-
-
Spinner_android_prompt - Static variable in class com.tomer.fadingtextview.R.styleable
-
-
This symbol is the offset where the R.attr.prompt - attribute's value can be found in the Spinner array.
-
-
Spinner_android_prompt - Static variable in class com.tomerrosenfeld.fadingtextview.R.styleable
-
-
This symbol is the offset where the R.attr.prompt - attribute's value can be found in the R.styleable.Spinner array.
-
-
Spinner_popupTheme - Static variable in class com.tomer.fadingtextview.R.styleable
-
-
This symbol is the offset where the R.attr.popupTheme - attribute's value can be found in the Spinner array.
-
-
Spinner_popupTheme - Static variable in class com.tomerrosenfeld.fadingtextview.R.styleable
-
-
This symbol is the offset where the R.attr.popupTheme - attribute's value can be found in the R.styleable.Spinner array.
-
-
spinnerDropDownItemStyle - Static variable in class com.tomer.fadingtextview.R.attr
-
-
Must be a reference to another resource, in the form "@[+][package:]type:name" -or to a theme attribute in the form "?[package:][type:]name".
-
-
spinnerDropDownItemStyle - Static variable in class com.tomerrosenfeld.fadingtextview.R.attr
-
-
Must be a reference to another resource, in the form "@[+][package:]type:name" -or to a theme attribute in the form "?[package:][type:]name".
-
-
spinnerStyle - Static variable in class com.tomer.fadingtextview.R.attr
-
-
Must be a reference to another resource, in the form "@[+][package:]type:name" -or to a theme attribute in the form "?[package:][type:]name".
-
-
spinnerStyle - Static variable in class com.tomerrosenfeld.fadingtextview.R.attr
-
-
Must be a reference to another resource, in the form "@[+][package:]type:name" -or to a theme attribute in the form "?[package:][type:]name".
-
-
split_action_bar - Static variable in class com.tomer.fadingtextview.R.id
-
 
-
split_action_bar - Static variable in class com.tomerrosenfeld.fadingtextview.R.id
-
 
-
splitTrack - Static variable in class com.tomer.fadingtextview.R.attr
-
-
Must be a boolean value, either "true" or "false".
-
-
splitTrack - Static variable in class com.tomerrosenfeld.fadingtextview.R.attr
-
-
Must be a boolean value, either "true" or "false".
-
-
src_atop - Static variable in class com.tomer.fadingtextview.R.id
-
 
-
src_atop - Static variable in class com.tomerrosenfeld.fadingtextview.R.id
-
 
-
src_in - Static variable in class com.tomer.fadingtextview.R.id
-
 
-
src_in - Static variable in class com.tomerrosenfeld.fadingtextview.R.id
-
 
-
src_over - Static variable in class com.tomer.fadingtextview.R.id
-
 
-
src_over - Static variable in class com.tomerrosenfeld.fadingtextview.R.id
-
 
-
srcCompat - Static variable in class com.tomer.fadingtextview.R.attr
-
-
Must be a reference to another resource, in the form "@[+][package:]type:name" -or to a theme attribute in the form "?[package:][type:]name".
-
-
srcCompat - Static variable in class com.tomerrosenfeld.fadingtextview.R.attr
-
-
Must be a reference to another resource, in the form "@[+][package:]type:name" -or to a theme attribute in the form "?[package:][type:]name".
-
-
stackFromEnd - Static variable in class com.tomerrosenfeld.fadingtextview.R.attr
-
-
Must be a boolean value, either "true" or "false".
-
-
start - Static variable in class com.tomerrosenfeld.fadingtextview.R.id
-
 
-
startAnimation(Animation) - Method in class com.tomer.fadingtextview.FadingTextView
-
-
Start the specified animation now if should
-
-
startAnimation() - Method in class com.tomer.fadingtextview.FadingTextView
-
-
start the animation
-
-
state_above_anchor - Static variable in class com.tomer.fadingtextview.R.attr
-
-
Must be a boolean value, either "true" or "false".
-
-
state_above_anchor - Static variable in class com.tomerrosenfeld.fadingtextview.R.attr
-
-
Must be a boolean value, either "true" or "false".
-
-
state_collapsed - Static variable in class com.tomerrosenfeld.fadingtextview.R.attr
-
-
Must be a boolean value, either "true" or "false".
-
-
state_collapsible - Static variable in class com.tomerrosenfeld.fadingtextview.R.attr
-
-
Must be a boolean value, either "true" or "false".
-
-
status_bar_latest_event_content - Static variable in class com.tomer.fadingtextview.R.id
-
 
-
status_bar_latest_event_content - Static variable in class com.tomerrosenfeld.fadingtextview.R.id
-
 
-
status_bar_notification_info_maxnum - Static variable in class com.tomer.fadingtextview.R.integer
-
 
-
status_bar_notification_info_maxnum - Static variable in class com.tomerrosenfeld.fadingtextview.R.integer
-
 
-
status_bar_notification_info_overflow - Static variable in class com.tomer.fadingtextview.R.string
-
 
-
status_bar_notification_info_overflow - Static variable in class com.tomerrosenfeld.fadingtextview.R.string
-
 
-
statusBarBackground - Static variable in class com.tomerrosenfeld.fadingtextview.R.attr
-
-
Must be a reference to another resource, in the form "@[+][package:]type:name" -or to a theme attribute in the form "?[package:][type:]name".
-
-
statusBarScrim - Static variable in class com.tomerrosenfeld.fadingtextview.R.attr
-
-
Must be a color value, in the form of "#rgb", "#argb", -"#rrggbb", or "#aarrggbb".
-
-
stop() - Method in class com.tomer.fadingtextview.FadingTextView
-
-
Stopping the animation - Unlike the pause function, the stop method will permanently stop the animation until the view is restarted
-
-
string() - Constructor for class com.tomer.fadingtextview.R.string
-
 
-
string() - Constructor for class com.tomerrosenfeld.fadingtextview.R.string
-
 
-
style() - Constructor for class com.tomer.fadingtextview.R.style
-
 
-
style() - Constructor for class com.tomerrosenfeld.fadingtextview.R.style
-
 
-
styleable() - Constructor for class com.tomer.fadingtextview.R.styleable
-
 
-
styleable() - Constructor for class com.tomerrosenfeld.fadingtextview.R.styleable
-
 
-
subMenuArrow - Static variable in class com.tomer.fadingtextview.R.attr
-
-
Must be a reference to another resource, in the form "@[+][package:]type:name" -or to a theme attribute in the form "?[package:][type:]name".
-
-
submenuarrow - Static variable in class com.tomer.fadingtextview.R.id
-
 
-
subMenuArrow - Static variable in class com.tomerrosenfeld.fadingtextview.R.attr
-
-
Must be a reference to another resource, in the form "@[+][package:]type:name" -or to a theme attribute in the form "?[package:][type:]name".
-
-
submenuarrow - Static variable in class com.tomerrosenfeld.fadingtextview.R.id
-
 
-
submit_area - Static variable in class com.tomer.fadingtextview.R.id
-
 
-
submit_area - Static variable in class com.tomerrosenfeld.fadingtextview.R.id
-
 
-
submitBackground - Static variable in class com.tomer.fadingtextview.R.attr
-
-
Must be a reference to another resource, in the form "@[+][package:]type:name" -or to a theme attribute in the form "?[package:][type:]name".
-
-
submitBackground - Static variable in class com.tomerrosenfeld.fadingtextview.R.attr
-
-
Must be a reference to another resource, in the form "@[+][package:]type:name" -or to a theme attribute in the form "?[package:][type:]name".
-
-
subtitle - Static variable in class com.tomer.fadingtextview.R.attr
-
-
Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character.
-
-
subtitle - Static variable in class com.tomerrosenfeld.fadingtextview.R.attr
-
-
Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character.
-
-
subtitleTextAppearance - Static variable in class com.tomer.fadingtextview.R.attr
-
-
Must be a reference to another resource, in the form "@[+][package:]type:name" -or to a theme attribute in the form "?[package:][type:]name".
-
-
subtitleTextAppearance - Static variable in class com.tomerrosenfeld.fadingtextview.R.attr
-
-
Must be a reference to another resource, in the form "@[+][package:]type:name" -or to a theme attribute in the form "?[package:][type:]name".
-
-
subtitleTextColor - Static variable in class com.tomer.fadingtextview.R.attr
-
-
Must be a color value, in the form of "#rgb", "#argb", -"#rrggbb", or "#aarrggbb".
-
-
subtitleTextColor - Static variable in class com.tomerrosenfeld.fadingtextview.R.attr
-
-
Must be a color value, in the form of "#rgb", "#argb", -"#rrggbb", or "#aarrggbb".
-
-
subtitleTextStyle - Static variable in class com.tomer.fadingtextview.R.attr
-
-
Must be a reference to another resource, in the form "@[+][package:]type:name" -or to a theme attribute in the form "?[package:][type:]name".
-
-
subtitleTextStyle - Static variable in class com.tomerrosenfeld.fadingtextview.R.attr
-
-
Must be a reference to another resource, in the form "@[+][package:]type:name" -or to a theme attribute in the form "?[package:][type:]name".
-
-
suggestionRowLayout - Static variable in class com.tomer.fadingtextview.R.attr
-
-
Must be a reference to another resource, in the form "@[+][package:]type:name" -or to a theme attribute in the form "?[package:][type:]name".
-
-
suggestionRowLayout - Static variable in class com.tomerrosenfeld.fadingtextview.R.attr
-
-
Must be a reference to another resource, in the form "@[+][package:]type:name" -or to a theme attribute in the form "?[package:][type:]name".
-
-
support_simple_spinner_dropdown_item - Static variable in class com.tomer.fadingtextview.R.layout
-
 
-
support_simple_spinner_dropdown_item - Static variable in class com.tomerrosenfeld.fadingtextview.R.layout
-
 
-
switch_thumb_disabled_material_dark - Static variable in class com.tomer.fadingtextview.R.color
-
 
-
switch_thumb_disabled_material_dark - Static variable in class com.tomerrosenfeld.fadingtextview.R.color
-
 
-
switch_thumb_disabled_material_light - Static variable in class com.tomer.fadingtextview.R.color
-
 
-
switch_thumb_disabled_material_light - Static variable in class com.tomerrosenfeld.fadingtextview.R.color
-
 
-
switch_thumb_material_dark - Static variable in class com.tomer.fadingtextview.R.color
-
 
-
switch_thumb_material_dark - Static variable in class com.tomerrosenfeld.fadingtextview.R.color
-
 
-
switch_thumb_material_light - Static variable in class com.tomer.fadingtextview.R.color
-
 
-
switch_thumb_material_light - Static variable in class com.tomerrosenfeld.fadingtextview.R.color
-
 
-
switch_thumb_normal_material_dark - Static variable in class com.tomer.fadingtextview.R.color
-
 
-
switch_thumb_normal_material_dark - Static variable in class com.tomerrosenfeld.fadingtextview.R.color
-
 
-
switch_thumb_normal_material_light - Static variable in class com.tomer.fadingtextview.R.color
-
 
-
switch_thumb_normal_material_light - Static variable in class com.tomerrosenfeld.fadingtextview.R.color
-
 
-
SwitchCompat - Static variable in class com.tomer.fadingtextview.R.styleable
-
-
Attributes that can be used with a SwitchCompat.
-
-
SwitchCompat - Static variable in class com.tomerrosenfeld.fadingtextview.R.styleable
-
-
Attributes that can be used with a SwitchCompat.
-
-
SwitchCompat_android_textOff - Static variable in class com.tomer.fadingtextview.R.styleable
-
-
This symbol is the offset where the R.attr.textOff - attribute's value can be found in the SwitchCompat array.
-
-
SwitchCompat_android_textOff - Static variable in class com.tomerrosenfeld.fadingtextview.R.styleable
-
-
This symbol is the offset where the R.attr.textOff - attribute's value can be found in the R.styleable.SwitchCompat array.
-
-
SwitchCompat_android_textOn - Static variable in class com.tomer.fadingtextview.R.styleable
-
-
This symbol is the offset where the R.attr.textOn - attribute's value can be found in the SwitchCompat array.
-
-
SwitchCompat_android_textOn - Static variable in class com.tomerrosenfeld.fadingtextview.R.styleable
-
-
This symbol is the offset where the R.attr.textOn - attribute's value can be found in the R.styleable.SwitchCompat array.
-
-
SwitchCompat_android_thumb - Static variable in class com.tomer.fadingtextview.R.styleable
-
-
This symbol is the offset where the R.attr.thumb - attribute's value can be found in the SwitchCompat array.
-
-
SwitchCompat_android_thumb - Static variable in class com.tomerrosenfeld.fadingtextview.R.styleable
-
-
This symbol is the offset where the R.attr.thumb - attribute's value can be found in the R.styleable.SwitchCompat array.
-
-
SwitchCompat_showText - Static variable in class com.tomer.fadingtextview.R.styleable
-
-
This symbol is the offset where the R.attr.showText - attribute's value can be found in the SwitchCompat array.
-
-
SwitchCompat_showText - Static variable in class com.tomerrosenfeld.fadingtextview.R.styleable
-
-
This symbol is the offset where the R.attr.showText - attribute's value can be found in the R.styleable.SwitchCompat array.
-
-
SwitchCompat_splitTrack - Static variable in class com.tomer.fadingtextview.R.styleable
-
-
This symbol is the offset where the R.attr.splitTrack - attribute's value can be found in the SwitchCompat array.
-
-
SwitchCompat_splitTrack - Static variable in class com.tomerrosenfeld.fadingtextview.R.styleable
-
-
This symbol is the offset where the R.attr.splitTrack - attribute's value can be found in the R.styleable.SwitchCompat array.
-
-
SwitchCompat_switchMinWidth - Static variable in class com.tomer.fadingtextview.R.styleable
-
-
This symbol is the offset where the R.attr.switchMinWidth - attribute's value can be found in the SwitchCompat array.
-
-
SwitchCompat_switchMinWidth - Static variable in class com.tomerrosenfeld.fadingtextview.R.styleable
-
-
This symbol is the offset where the R.attr.switchMinWidth - attribute's value can be found in the R.styleable.SwitchCompat array.
-
-
SwitchCompat_switchPadding - Static variable in class com.tomer.fadingtextview.R.styleable
-
-
This symbol is the offset where the R.attr.switchPadding - attribute's value can be found in the SwitchCompat array.
-
-
SwitchCompat_switchPadding - Static variable in class com.tomerrosenfeld.fadingtextview.R.styleable
-
-
This symbol is the offset where the R.attr.switchPadding - attribute's value can be found in the R.styleable.SwitchCompat array.
-
-
SwitchCompat_switchTextAppearance - Static variable in class com.tomer.fadingtextview.R.styleable
-
-
This symbol is the offset where the R.attr.switchTextAppearance - attribute's value can be found in the SwitchCompat array.
-
-
SwitchCompat_switchTextAppearance - Static variable in class com.tomerrosenfeld.fadingtextview.R.styleable
-
-
This symbol is the offset where the R.attr.switchTextAppearance - attribute's value can be found in the R.styleable.SwitchCompat array.
-
-
SwitchCompat_thumbTextPadding - Static variable in class com.tomer.fadingtextview.R.styleable
-
-
This symbol is the offset where the R.attr.thumbTextPadding - attribute's value can be found in the SwitchCompat array.
-
-
SwitchCompat_thumbTextPadding - Static variable in class com.tomerrosenfeld.fadingtextview.R.styleable
-
-
This symbol is the offset where the R.attr.thumbTextPadding - attribute's value can be found in the R.styleable.SwitchCompat array.
-
-
SwitchCompat_thumbTint - Static variable in class com.tomer.fadingtextview.R.styleable
-
-
This symbol is the offset where the R.attr.thumbTint - attribute's value can be found in the SwitchCompat array.
-
-
SwitchCompat_thumbTint - Static variable in class com.tomerrosenfeld.fadingtextview.R.styleable
-
-
This symbol is the offset where the R.attr.thumbTint - attribute's value can be found in the R.styleable.SwitchCompat array.
-
-
SwitchCompat_thumbTintMode - Static variable in class com.tomer.fadingtextview.R.styleable
-
-
This symbol is the offset where the R.attr.thumbTintMode - attribute's value can be found in the SwitchCompat array.
-
-
SwitchCompat_thumbTintMode - Static variable in class com.tomerrosenfeld.fadingtextview.R.styleable
-
-
This symbol is the offset where the R.attr.thumbTintMode - attribute's value can be found in the R.styleable.SwitchCompat array.
-
-
SwitchCompat_track - Static variable in class com.tomer.fadingtextview.R.styleable
-
-
This symbol is the offset where the R.attr.track - attribute's value can be found in the SwitchCompat array.
-
-
SwitchCompat_track - Static variable in class com.tomerrosenfeld.fadingtextview.R.styleable
-
-
This symbol is the offset where the R.attr.track - attribute's value can be found in the R.styleable.SwitchCompat array.
-
-
SwitchCompat_trackTint - Static variable in class com.tomer.fadingtextview.R.styleable
-
-
This symbol is the offset where the R.attr.trackTint - attribute's value can be found in the SwitchCompat array.
-
-
SwitchCompat_trackTint - Static variable in class com.tomerrosenfeld.fadingtextview.R.styleable
-
-
This symbol is the offset where the R.attr.trackTint - attribute's value can be found in the R.styleable.SwitchCompat array.
-
-
SwitchCompat_trackTintMode - Static variable in class com.tomer.fadingtextview.R.styleable
-
-
This symbol is the offset where the R.attr.trackTintMode - attribute's value can be found in the SwitchCompat array.
-
-
SwitchCompat_trackTintMode - Static variable in class com.tomerrosenfeld.fadingtextview.R.styleable
-
-
This symbol is the offset where the R.attr.trackTintMode - attribute's value can be found in the R.styleable.SwitchCompat array.
-
-
switchMinWidth - Static variable in class com.tomer.fadingtextview.R.attr
-
-
Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp".
-
-
switchMinWidth - Static variable in class com.tomerrosenfeld.fadingtextview.R.attr
-
-
Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp".
-
-
switchPadding - Static variable in class com.tomer.fadingtextview.R.attr
-
-
Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp".
-
-
switchPadding - Static variable in class com.tomerrosenfeld.fadingtextview.R.attr
-
-
Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp".
-
-
switchStyle - Static variable in class com.tomer.fadingtextview.R.attr
-
-
Must be a reference to another resource, in the form "@[+][package:]type:name" -or to a theme attribute in the form "?[package:][type:]name".
-
-
switchStyle - Static variable in class com.tomerrosenfeld.fadingtextview.R.attr
-
-
Must be a reference to another resource, in the form "@[+][package:]type:name" -or to a theme attribute in the form "?[package:][type:]name".
-
-
switchTextAppearance - Static variable in class com.tomer.fadingtextview.R.attr
-
-
Must be a reference to another resource, in the form "@[+][package:]type:name" -or to a theme attribute in the form "?[package:][type:]name".
-
-
switchTextAppearance - Static variable in class com.tomerrosenfeld.fadingtextview.R.attr
-
-
Must be a reference to another resource, in the form "@[+][package:]type:name" -or to a theme attribute in the form "?[package:][type:]name".
-
-
-A B C D E F G H I K L M N O P Q R S T U V W 
- -
- - - - - - - -
- - - - diff --git a/docs/index-files/index-19.html b/docs/index-files/index-19.html deleted file mode 100644 index 13d49b7..0000000 --- a/docs/index-files/index-19.html +++ /dev/null @@ -1,1622 +0,0 @@ - - - - - -T-Index - - - - - - - - -
- - - - - - - -
- - -
A B C D E F G H I K L M N O P Q R S T U V W  - - -

T

-
-
tabBackground - Static variable in class com.tomerrosenfeld.fadingtextview.R.attr
-
-
Must be a reference to another resource, in the form "@[+][package:]type:name" -or to a theme attribute in the form "?[package:][type:]name".
-
-
tabContentStart - Static variable in class com.tomerrosenfeld.fadingtextview.R.attr
-
-
Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp".
-
-
tabGravity - Static variable in class com.tomerrosenfeld.fadingtextview.R.attr
-
-
Must be one of the following constant values.
-
-
tabIndicatorColor - Static variable in class com.tomerrosenfeld.fadingtextview.R.attr
-
-
Must be a color value, in the form of "#rgb", "#argb", -"#rrggbb", or "#aarrggbb".
-
-
tabIndicatorHeight - Static variable in class com.tomerrosenfeld.fadingtextview.R.attr
-
-
Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp".
-
-
TabItem - Static variable in class com.tomerrosenfeld.fadingtextview.R.styleable
-
-
Attributes that can be used with a TabItem.
-
-
TabItem_android_icon - Static variable in class com.tomerrosenfeld.fadingtextview.R.styleable
-
-
This symbol is the offset where the R.attr.icon - attribute's value can be found in the R.styleable.TabItem array.
-
-
TabItem_android_layout - Static variable in class com.tomerrosenfeld.fadingtextview.R.styleable
-
-
This symbol is the offset where the R.attr.layout - attribute's value can be found in the R.styleable.TabItem array.
-
-
TabItem_android_text - Static variable in class com.tomerrosenfeld.fadingtextview.R.styleable
-
-
This symbol is the offset where the R.attr.text - attribute's value can be found in the R.styleable.TabItem array.
-
-
TabLayout - Static variable in class com.tomerrosenfeld.fadingtextview.R.styleable
-
-
Attributes that can be used with a TabLayout.
-
-
TabLayout_tabBackground - Static variable in class com.tomerrosenfeld.fadingtextview.R.styleable
-
-
This symbol is the offset where the R.attr.tabBackground - attribute's value can be found in the R.styleable.TabLayout array.
-
-
TabLayout_tabContentStart - Static variable in class com.tomerrosenfeld.fadingtextview.R.styleable
-
-
This symbol is the offset where the R.attr.tabContentStart - attribute's value can be found in the R.styleable.TabLayout array.
-
-
TabLayout_tabGravity - Static variable in class com.tomerrosenfeld.fadingtextview.R.styleable
-
-
This symbol is the offset where the R.attr.tabGravity - attribute's value can be found in the R.styleable.TabLayout array.
-
-
TabLayout_tabIndicatorColor - Static variable in class com.tomerrosenfeld.fadingtextview.R.styleable
-
-
This symbol is the offset where the R.attr.tabIndicatorColor - attribute's value can be found in the R.styleable.TabLayout array.
-
-
TabLayout_tabIndicatorHeight - Static variable in class com.tomerrosenfeld.fadingtextview.R.styleable
-
-
This symbol is the offset where the R.attr.tabIndicatorHeight - attribute's value can be found in the R.styleable.TabLayout array.
-
-
TabLayout_tabMaxWidth - Static variable in class com.tomerrosenfeld.fadingtextview.R.styleable
-
-
This symbol is the offset where the R.attr.tabMaxWidth - attribute's value can be found in the R.styleable.TabLayout array.
-
-
TabLayout_tabMinWidth - Static variable in class com.tomerrosenfeld.fadingtextview.R.styleable
-
-
This symbol is the offset where the R.attr.tabMinWidth - attribute's value can be found in the R.styleable.TabLayout array.
-
-
TabLayout_tabMode - Static variable in class com.tomerrosenfeld.fadingtextview.R.styleable
-
-
This symbol is the offset where the R.attr.tabMode - attribute's value can be found in the R.styleable.TabLayout array.
-
-
TabLayout_tabPadding - Static variable in class com.tomerrosenfeld.fadingtextview.R.styleable
-
-
This symbol is the offset where the R.attr.tabPadding - attribute's value can be found in the R.styleable.TabLayout array.
-
-
TabLayout_tabPaddingBottom - Static variable in class com.tomerrosenfeld.fadingtextview.R.styleable
-
-
This symbol is the offset where the R.attr.tabPaddingBottom - attribute's value can be found in the R.styleable.TabLayout array.
-
-
TabLayout_tabPaddingEnd - Static variable in class com.tomerrosenfeld.fadingtextview.R.styleable
-
-
This symbol is the offset where the R.attr.tabPaddingEnd - attribute's value can be found in the R.styleable.TabLayout array.
-
-
TabLayout_tabPaddingStart - Static variable in class com.tomerrosenfeld.fadingtextview.R.styleable
-
-
This symbol is the offset where the R.attr.tabPaddingStart - attribute's value can be found in the R.styleable.TabLayout array.
-
-
TabLayout_tabPaddingTop - Static variable in class com.tomerrosenfeld.fadingtextview.R.styleable
-
-
This symbol is the offset where the R.attr.tabPaddingTop - attribute's value can be found in the R.styleable.TabLayout array.
-
-
TabLayout_tabSelectedTextColor - Static variable in class com.tomerrosenfeld.fadingtextview.R.styleable
-
-
This symbol is the offset where the R.attr.tabSelectedTextColor - attribute's value can be found in the R.styleable.TabLayout array.
-
-
TabLayout_tabTextAppearance - Static variable in class com.tomerrosenfeld.fadingtextview.R.styleable
-
-
This symbol is the offset where the R.attr.tabTextAppearance - attribute's value can be found in the R.styleable.TabLayout array.
-
-
TabLayout_tabTextColor - Static variable in class com.tomerrosenfeld.fadingtextview.R.styleable
-
-
This symbol is the offset where the R.attr.tabTextColor - attribute's value can be found in the R.styleable.TabLayout array.
-
-
tabMaxWidth - Static variable in class com.tomerrosenfeld.fadingtextview.R.attr
-
-
Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp".
-
-
tabMinWidth - Static variable in class com.tomerrosenfeld.fadingtextview.R.attr
-
-
Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp".
-
-
tabMode - Static variable in class com.tomer.fadingtextview.R.id
-
 
-
tabMode - Static variable in class com.tomerrosenfeld.fadingtextview.R.attr
-
-
Must be one of the following constant values.
-
-
tabMode - Static variable in class com.tomerrosenfeld.fadingtextview.R.id
-
 
-
tabPadding - Static variable in class com.tomerrosenfeld.fadingtextview.R.attr
-
-
Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp".
-
-
tabPaddingBottom - Static variable in class com.tomerrosenfeld.fadingtextview.R.attr
-
-
Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp".
-
-
tabPaddingEnd - Static variable in class com.tomerrosenfeld.fadingtextview.R.attr
-
-
Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp".
-
-
tabPaddingStart - Static variable in class com.tomerrosenfeld.fadingtextview.R.attr
-
-
Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp".
-
-
tabPaddingTop - Static variable in class com.tomerrosenfeld.fadingtextview.R.attr
-
-
Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp".
-
-
tabSelectedTextColor - Static variable in class com.tomerrosenfeld.fadingtextview.R.attr
-
-
Must be a color value, in the form of "#rgb", "#argb", -"#rrggbb", or "#aarrggbb".
-
-
tabTextAppearance - Static variable in class com.tomerrosenfeld.fadingtextview.R.attr
-
-
Must be a reference to another resource, in the form "@[+][package:]type:name" -or to a theme attribute in the form "?[package:][type:]name".
-
-
tabTextColor - Static variable in class com.tomerrosenfeld.fadingtextview.R.attr
-
-
Must be a color value, in the form of "#rgb", "#argb", -"#rrggbb", or "#aarrggbb".
-
-
text - Static variable in class com.tomer.fadingtextview.R.id
-
 
-
text - Static variable in class com.tomerrosenfeld.fadingtextview.R.id
-
 
-
text2 - Static variable in class com.tomer.fadingtextview.R.id
-
 
-
text2 - Static variable in class com.tomerrosenfeld.fadingtextview.R.id
-
 
-
text_input_password_toggle - Static variable in class com.tomerrosenfeld.fadingtextview.R.id
-
 
-
textAllCaps - Static variable in class com.tomer.fadingtextview.R.attr
-
-
May be a reference to another resource, in the form "@[+][package:]type:name" -or to a theme attribute in the form "?[package:][type:]name".
-
-
textAllCaps - Static variable in class com.tomerrosenfeld.fadingtextview.R.attr
-
-
May be a reference to another resource, in the form "@[+][package:]type:name" -or to a theme attribute in the form "?[package:][type:]name".
-
-
TextAppearance - Static variable in class com.tomer.fadingtextview.R.styleable
-
-
Attributes that can be used with a TextAppearance.
-
-
TextAppearance - Static variable in class com.tomerrosenfeld.fadingtextview.R.styleable
-
-
Attributes that can be used with a TextAppearance.
-
-
TextAppearance_android_shadowColor - Static variable in class com.tomer.fadingtextview.R.styleable
-
-
This symbol is the offset where the R.attr.shadowColor - attribute's value can be found in the TextAppearance array.
-
-
TextAppearance_android_shadowColor - Static variable in class com.tomerrosenfeld.fadingtextview.R.styleable
-
-
This symbol is the offset where the R.attr.shadowColor - attribute's value can be found in the R.styleable.TextAppearance array.
-
-
TextAppearance_android_shadowDx - Static variable in class com.tomer.fadingtextview.R.styleable
-
-
This symbol is the offset where the R.attr.shadowDx - attribute's value can be found in the TextAppearance array.
-
-
TextAppearance_android_shadowDx - Static variable in class com.tomerrosenfeld.fadingtextview.R.styleable
-
-
This symbol is the offset where the R.attr.shadowDx - attribute's value can be found in the R.styleable.TextAppearance array.
-
-
TextAppearance_android_shadowDy - Static variable in class com.tomer.fadingtextview.R.styleable
-
-
This symbol is the offset where the R.attr.shadowDy - attribute's value can be found in the TextAppearance array.
-
-
TextAppearance_android_shadowDy - Static variable in class com.tomerrosenfeld.fadingtextview.R.styleable
-
-
This symbol is the offset where the R.attr.shadowDy - attribute's value can be found in the R.styleable.TextAppearance array.
-
-
TextAppearance_android_shadowRadius - Static variable in class com.tomer.fadingtextview.R.styleable
-
-
This symbol is the offset where the R.attr.shadowRadius - attribute's value can be found in the TextAppearance array.
-
-
TextAppearance_android_shadowRadius - Static variable in class com.tomerrosenfeld.fadingtextview.R.styleable
-
-
This symbol is the offset where the R.attr.shadowRadius - attribute's value can be found in the R.styleable.TextAppearance array.
-
-
TextAppearance_android_textColor - Static variable in class com.tomer.fadingtextview.R.styleable
-
-
This symbol is the offset where the R.attr.textColor - attribute's value can be found in the TextAppearance array.
-
-
TextAppearance_android_textColor - Static variable in class com.tomerrosenfeld.fadingtextview.R.styleable
-
-
This symbol is the offset where the R.attr.textColor - attribute's value can be found in the R.styleable.TextAppearance array.
-
-
TextAppearance_android_textColorHint - Static variable in class com.tomer.fadingtextview.R.styleable
-
-
This symbol is the offset where the R.attr.textColorHint - attribute's value can be found in the TextAppearance array.
-
-
TextAppearance_android_textColorHint - Static variable in class com.tomerrosenfeld.fadingtextview.R.styleable
-
-
This symbol is the offset where the R.attr.textColorHint - attribute's value can be found in the R.styleable.TextAppearance array.
-
-
TextAppearance_android_textSize - Static variable in class com.tomer.fadingtextview.R.styleable
-
-
This symbol is the offset where the R.attr.textSize - attribute's value can be found in the TextAppearance array.
-
-
TextAppearance_android_textSize - Static variable in class com.tomerrosenfeld.fadingtextview.R.styleable
-
-
This symbol is the offset where the R.attr.textSize - attribute's value can be found in the R.styleable.TextAppearance array.
-
-
TextAppearance_android_textStyle - Static variable in class com.tomer.fadingtextview.R.styleable
-
-
This symbol is the offset where the R.attr.textStyle - attribute's value can be found in the TextAppearance array.
-
-
TextAppearance_android_textStyle - Static variable in class com.tomerrosenfeld.fadingtextview.R.styleable
-
-
This symbol is the offset where the R.attr.textStyle - attribute's value can be found in the R.styleable.TextAppearance array.
-
-
TextAppearance_android_typeface - Static variable in class com.tomer.fadingtextview.R.styleable
-
-
This symbol is the offset where the R.attr.typeface - attribute's value can be found in the TextAppearance array.
-
-
TextAppearance_android_typeface - Static variable in class com.tomerrosenfeld.fadingtextview.R.styleable
-
-
This symbol is the offset where the R.attr.typeface - attribute's value can be found in the R.styleable.TextAppearance array.
-
-
TextAppearance_AppCompat - Static variable in class com.tomer.fadingtextview.R.style
-
 
-
TextAppearance_AppCompat - Static variable in class com.tomerrosenfeld.fadingtextview.R.style
-
 
-
TextAppearance_AppCompat_Body1 - Static variable in class com.tomer.fadingtextview.R.style
-
 
-
TextAppearance_AppCompat_Body1 - Static variable in class com.tomerrosenfeld.fadingtextview.R.style
-
 
-
TextAppearance_AppCompat_Body2 - Static variable in class com.tomer.fadingtextview.R.style
-
 
-
TextAppearance_AppCompat_Body2 - Static variable in class com.tomerrosenfeld.fadingtextview.R.style
-
 
-
TextAppearance_AppCompat_Button - Static variable in class com.tomer.fadingtextview.R.style
-
 
-
TextAppearance_AppCompat_Button - Static variable in class com.tomerrosenfeld.fadingtextview.R.style
-
 
-
TextAppearance_AppCompat_Caption - Static variable in class com.tomer.fadingtextview.R.style
-
 
-
TextAppearance_AppCompat_Caption - Static variable in class com.tomerrosenfeld.fadingtextview.R.style
-
 
-
TextAppearance_AppCompat_Display1 - Static variable in class com.tomer.fadingtextview.R.style
-
 
-
TextAppearance_AppCompat_Display1 - Static variable in class com.tomerrosenfeld.fadingtextview.R.style
-
 
-
TextAppearance_AppCompat_Display2 - Static variable in class com.tomer.fadingtextview.R.style
-
 
-
TextAppearance_AppCompat_Display2 - Static variable in class com.tomerrosenfeld.fadingtextview.R.style
-
 
-
TextAppearance_AppCompat_Display3 - Static variable in class com.tomer.fadingtextview.R.style
-
 
-
TextAppearance_AppCompat_Display3 - Static variable in class com.tomerrosenfeld.fadingtextview.R.style
-
 
-
TextAppearance_AppCompat_Display4 - Static variable in class com.tomer.fadingtextview.R.style
-
 
-
TextAppearance_AppCompat_Display4 - Static variable in class com.tomerrosenfeld.fadingtextview.R.style
-
 
-
TextAppearance_AppCompat_Headline - Static variable in class com.tomer.fadingtextview.R.style
-
 
-
TextAppearance_AppCompat_Headline - Static variable in class com.tomerrosenfeld.fadingtextview.R.style
-
 
-
TextAppearance_AppCompat_Inverse - Static variable in class com.tomer.fadingtextview.R.style
-
 
-
TextAppearance_AppCompat_Inverse - Static variable in class com.tomerrosenfeld.fadingtextview.R.style
-
 
-
TextAppearance_AppCompat_Large - Static variable in class com.tomer.fadingtextview.R.style
-
 
-
TextAppearance_AppCompat_Large - Static variable in class com.tomerrosenfeld.fadingtextview.R.style
-
 
-
TextAppearance_AppCompat_Large_Inverse - Static variable in class com.tomer.fadingtextview.R.style
-
 
-
TextAppearance_AppCompat_Large_Inverse - Static variable in class com.tomerrosenfeld.fadingtextview.R.style
-
 
-
TextAppearance_AppCompat_Light_SearchResult_Subtitle - Static variable in class com.tomer.fadingtextview.R.style
-
 
-
TextAppearance_AppCompat_Light_SearchResult_Subtitle - Static variable in class com.tomerrosenfeld.fadingtextview.R.style
-
 
-
TextAppearance_AppCompat_Light_SearchResult_Title - Static variable in class com.tomer.fadingtextview.R.style
-
 
-
TextAppearance_AppCompat_Light_SearchResult_Title - Static variable in class com.tomerrosenfeld.fadingtextview.R.style
-
 
-
TextAppearance_AppCompat_Light_Widget_PopupMenu_Large - Static variable in class com.tomer.fadingtextview.R.style
-
 
-
TextAppearance_AppCompat_Light_Widget_PopupMenu_Large - Static variable in class com.tomerrosenfeld.fadingtextview.R.style
-
 
-
TextAppearance_AppCompat_Light_Widget_PopupMenu_Small - Static variable in class com.tomer.fadingtextview.R.style
-
 
-
TextAppearance_AppCompat_Light_Widget_PopupMenu_Small - Static variable in class com.tomerrosenfeld.fadingtextview.R.style
-
 
-
TextAppearance_AppCompat_Medium - Static variable in class com.tomer.fadingtextview.R.style
-
 
-
TextAppearance_AppCompat_Medium - Static variable in class com.tomerrosenfeld.fadingtextview.R.style
-
 
-
TextAppearance_AppCompat_Medium_Inverse - Static variable in class com.tomer.fadingtextview.R.style
-
 
-
TextAppearance_AppCompat_Medium_Inverse - Static variable in class com.tomerrosenfeld.fadingtextview.R.style
-
 
-
TextAppearance_AppCompat_Menu - Static variable in class com.tomer.fadingtextview.R.style
-
 
-
TextAppearance_AppCompat_Menu - Static variable in class com.tomerrosenfeld.fadingtextview.R.style
-
 
-
TextAppearance_AppCompat_Notification - Static variable in class com.tomer.fadingtextview.R.style
-
 
-
TextAppearance_AppCompat_Notification - Static variable in class com.tomerrosenfeld.fadingtextview.R.style
-
 
-
TextAppearance_AppCompat_Notification_Info - Static variable in class com.tomer.fadingtextview.R.style
-
 
-
TextAppearance_AppCompat_Notification_Info - Static variable in class com.tomerrosenfeld.fadingtextview.R.style
-
 
-
TextAppearance_AppCompat_Notification_Info_Media - Static variable in class com.tomer.fadingtextview.R.style
-
 
-
TextAppearance_AppCompat_Notification_Info_Media - Static variable in class com.tomerrosenfeld.fadingtextview.R.style
-
 
-
TextAppearance_AppCompat_Notification_Line2 - Static variable in class com.tomer.fadingtextview.R.style
-
 
-
TextAppearance_AppCompat_Notification_Line2 - Static variable in class com.tomerrosenfeld.fadingtextview.R.style
-
 
-
TextAppearance_AppCompat_Notification_Line2_Media - Static variable in class com.tomer.fadingtextview.R.style
-
 
-
TextAppearance_AppCompat_Notification_Line2_Media - Static variable in class com.tomerrosenfeld.fadingtextview.R.style
-
 
-
TextAppearance_AppCompat_Notification_Media - Static variable in class com.tomer.fadingtextview.R.style
-
 
-
TextAppearance_AppCompat_Notification_Media - Static variable in class com.tomerrosenfeld.fadingtextview.R.style
-
 
-
TextAppearance_AppCompat_Notification_Time - Static variable in class com.tomer.fadingtextview.R.style
-
 
-
TextAppearance_AppCompat_Notification_Time - Static variable in class com.tomerrosenfeld.fadingtextview.R.style
-
 
-
TextAppearance_AppCompat_Notification_Time_Media - Static variable in class com.tomer.fadingtextview.R.style
-
 
-
TextAppearance_AppCompat_Notification_Time_Media - Static variable in class com.tomerrosenfeld.fadingtextview.R.style
-
 
-
TextAppearance_AppCompat_Notification_Title - Static variable in class com.tomer.fadingtextview.R.style
-
 
-
TextAppearance_AppCompat_Notification_Title - Static variable in class com.tomerrosenfeld.fadingtextview.R.style
-
 
-
TextAppearance_AppCompat_Notification_Title_Media - Static variable in class com.tomer.fadingtextview.R.style
-
 
-
TextAppearance_AppCompat_Notification_Title_Media - Static variable in class com.tomerrosenfeld.fadingtextview.R.style
-
 
-
TextAppearance_AppCompat_SearchResult_Subtitle - Static variable in class com.tomer.fadingtextview.R.style
-
 
-
TextAppearance_AppCompat_SearchResult_Subtitle - Static variable in class com.tomerrosenfeld.fadingtextview.R.style
-
 
-
TextAppearance_AppCompat_SearchResult_Title - Static variable in class com.tomer.fadingtextview.R.style
-
 
-
TextAppearance_AppCompat_SearchResult_Title - Static variable in class com.tomerrosenfeld.fadingtextview.R.style
-
 
-
TextAppearance_AppCompat_Small - Static variable in class com.tomer.fadingtextview.R.style
-
 
-
TextAppearance_AppCompat_Small - Static variable in class com.tomerrosenfeld.fadingtextview.R.style
-
 
-
TextAppearance_AppCompat_Small_Inverse - Static variable in class com.tomer.fadingtextview.R.style
-
 
-
TextAppearance_AppCompat_Small_Inverse - Static variable in class com.tomerrosenfeld.fadingtextview.R.style
-
 
-
TextAppearance_AppCompat_Subhead - Static variable in class com.tomer.fadingtextview.R.style
-
 
-
TextAppearance_AppCompat_Subhead - Static variable in class com.tomerrosenfeld.fadingtextview.R.style
-
 
-
TextAppearance_AppCompat_Subhead_Inverse - Static variable in class com.tomer.fadingtextview.R.style
-
 
-
TextAppearance_AppCompat_Subhead_Inverse - Static variable in class com.tomerrosenfeld.fadingtextview.R.style
-
 
-
TextAppearance_AppCompat_Title - Static variable in class com.tomer.fadingtextview.R.style
-
 
-
TextAppearance_AppCompat_Title - Static variable in class com.tomerrosenfeld.fadingtextview.R.style
-
 
-
TextAppearance_AppCompat_Title_Inverse - Static variable in class com.tomer.fadingtextview.R.style
-
 
-
TextAppearance_AppCompat_Title_Inverse - Static variable in class com.tomerrosenfeld.fadingtextview.R.style
-
 
-
TextAppearance_AppCompat_Widget_ActionBar_Menu - Static variable in class com.tomer.fadingtextview.R.style
-
 
-
TextAppearance_AppCompat_Widget_ActionBar_Menu - Static variable in class com.tomerrosenfeld.fadingtextview.R.style
-
 
-
TextAppearance_AppCompat_Widget_ActionBar_Subtitle - Static variable in class com.tomer.fadingtextview.R.style
-
 
-
TextAppearance_AppCompat_Widget_ActionBar_Subtitle - Static variable in class com.tomerrosenfeld.fadingtextview.R.style
-
 
-
TextAppearance_AppCompat_Widget_ActionBar_Subtitle_Inverse - Static variable in class com.tomer.fadingtextview.R.style
-
 
-
TextAppearance_AppCompat_Widget_ActionBar_Subtitle_Inverse - Static variable in class com.tomerrosenfeld.fadingtextview.R.style
-
 
-
TextAppearance_AppCompat_Widget_ActionBar_Title - Static variable in class com.tomer.fadingtextview.R.style
-
 
-
TextAppearance_AppCompat_Widget_ActionBar_Title - Static variable in class com.tomerrosenfeld.fadingtextview.R.style
-
 
-
TextAppearance_AppCompat_Widget_ActionBar_Title_Inverse - Static variable in class com.tomer.fadingtextview.R.style
-
 
-
TextAppearance_AppCompat_Widget_ActionBar_Title_Inverse - Static variable in class com.tomerrosenfeld.fadingtextview.R.style
-
 
-
TextAppearance_AppCompat_Widget_ActionMode_Subtitle - Static variable in class com.tomer.fadingtextview.R.style
-
 
-
TextAppearance_AppCompat_Widget_ActionMode_Subtitle - Static variable in class com.tomerrosenfeld.fadingtextview.R.style
-
 
-
TextAppearance_AppCompat_Widget_ActionMode_Subtitle_Inverse - Static variable in class com.tomer.fadingtextview.R.style
-
 
-
TextAppearance_AppCompat_Widget_ActionMode_Subtitle_Inverse - Static variable in class com.tomerrosenfeld.fadingtextview.R.style
-
 
-
TextAppearance_AppCompat_Widget_ActionMode_Title - Static variable in class com.tomer.fadingtextview.R.style
-
 
-
TextAppearance_AppCompat_Widget_ActionMode_Title - Static variable in class com.tomerrosenfeld.fadingtextview.R.style
-
 
-
TextAppearance_AppCompat_Widget_ActionMode_Title_Inverse - Static variable in class com.tomer.fadingtextview.R.style
-
 
-
TextAppearance_AppCompat_Widget_ActionMode_Title_Inverse - Static variable in class com.tomerrosenfeld.fadingtextview.R.style
-
 
-
TextAppearance_AppCompat_Widget_Button - Static variable in class com.tomer.fadingtextview.R.style
-
 
-
TextAppearance_AppCompat_Widget_Button - Static variable in class com.tomerrosenfeld.fadingtextview.R.style
-
 
-
TextAppearance_AppCompat_Widget_Button_Borderless_Colored - Static variable in class com.tomer.fadingtextview.R.style
-
 
-
TextAppearance_AppCompat_Widget_Button_Borderless_Colored - Static variable in class com.tomerrosenfeld.fadingtextview.R.style
-
 
-
TextAppearance_AppCompat_Widget_Button_Colored - Static variable in class com.tomer.fadingtextview.R.style
-
 
-
TextAppearance_AppCompat_Widget_Button_Colored - Static variable in class com.tomerrosenfeld.fadingtextview.R.style
-
 
-
TextAppearance_AppCompat_Widget_Button_Inverse - Static variable in class com.tomer.fadingtextview.R.style
-
 
-
TextAppearance_AppCompat_Widget_Button_Inverse - Static variable in class com.tomerrosenfeld.fadingtextview.R.style
-
 
-
TextAppearance_AppCompat_Widget_DropDownItem - Static variable in class com.tomer.fadingtextview.R.style
-
 
-
TextAppearance_AppCompat_Widget_DropDownItem - Static variable in class com.tomerrosenfeld.fadingtextview.R.style
-
 
-
TextAppearance_AppCompat_Widget_PopupMenu_Header - Static variable in class com.tomer.fadingtextview.R.style
-
 
-
TextAppearance_AppCompat_Widget_PopupMenu_Header - Static variable in class com.tomerrosenfeld.fadingtextview.R.style
-
 
-
TextAppearance_AppCompat_Widget_PopupMenu_Large - Static variable in class com.tomer.fadingtextview.R.style
-
 
-
TextAppearance_AppCompat_Widget_PopupMenu_Large - Static variable in class com.tomerrosenfeld.fadingtextview.R.style
-
 
-
TextAppearance_AppCompat_Widget_PopupMenu_Small - Static variable in class com.tomer.fadingtextview.R.style
-
 
-
TextAppearance_AppCompat_Widget_PopupMenu_Small - Static variable in class com.tomerrosenfeld.fadingtextview.R.style
-
 
-
TextAppearance_AppCompat_Widget_Switch - Static variable in class com.tomer.fadingtextview.R.style
-
 
-
TextAppearance_AppCompat_Widget_Switch - Static variable in class com.tomerrosenfeld.fadingtextview.R.style
-
 
-
TextAppearance_AppCompat_Widget_TextView_SpinnerItem - Static variable in class com.tomer.fadingtextview.R.style
-
 
-
TextAppearance_AppCompat_Widget_TextView_SpinnerItem - Static variable in class com.tomerrosenfeld.fadingtextview.R.style
-
 
-
TextAppearance_Design_CollapsingToolbar_Expanded - Static variable in class com.tomerrosenfeld.fadingtextview.R.style
-
 
-
TextAppearance_Design_Counter - Static variable in class com.tomerrosenfeld.fadingtextview.R.style
-
 
-
TextAppearance_Design_Counter_Overflow - Static variable in class com.tomerrosenfeld.fadingtextview.R.style
-
 
-
TextAppearance_Design_Error - Static variable in class com.tomerrosenfeld.fadingtextview.R.style
-
 
-
TextAppearance_Design_Hint - Static variable in class com.tomerrosenfeld.fadingtextview.R.style
-
 
-
TextAppearance_Design_Snackbar_Message - Static variable in class com.tomerrosenfeld.fadingtextview.R.style
-
 
-
TextAppearance_Design_Tab - Static variable in class com.tomerrosenfeld.fadingtextview.R.style
-
 
-
TextAppearance_StatusBar_EventContent - Static variable in class com.tomer.fadingtextview.R.style
-
 
-
TextAppearance_StatusBar_EventContent - Static variable in class com.tomerrosenfeld.fadingtextview.R.style
-
 
-
TextAppearance_StatusBar_EventContent_Info - Static variable in class com.tomer.fadingtextview.R.style
-
 
-
TextAppearance_StatusBar_EventContent_Info - Static variable in class com.tomerrosenfeld.fadingtextview.R.style
-
 
-
TextAppearance_StatusBar_EventContent_Line2 - Static variable in class com.tomer.fadingtextview.R.style
-
 
-
TextAppearance_StatusBar_EventContent_Line2 - Static variable in class com.tomerrosenfeld.fadingtextview.R.style
-
 
-
TextAppearance_StatusBar_EventContent_Time - Static variable in class com.tomer.fadingtextview.R.style
-
 
-
TextAppearance_StatusBar_EventContent_Time - Static variable in class com.tomerrosenfeld.fadingtextview.R.style
-
 
-
TextAppearance_StatusBar_EventContent_Title - Static variable in class com.tomer.fadingtextview.R.style
-
 
-
TextAppearance_StatusBar_EventContent_Title - Static variable in class com.tomerrosenfeld.fadingtextview.R.style
-
 
-
TextAppearance_textAllCaps - Static variable in class com.tomer.fadingtextview.R.styleable
-
-
This symbol is the offset where the R.attr.textAllCaps - attribute's value can be found in the TextAppearance array.
-
-
TextAppearance_textAllCaps - Static variable in class com.tomerrosenfeld.fadingtextview.R.styleable
-
-
This symbol is the offset where the R.attr.textAllCaps - attribute's value can be found in the R.styleable.TextAppearance array.
-
-
TextAppearance_Widget_AppCompat_ExpandedMenu_Item - Static variable in class com.tomer.fadingtextview.R.style
-
 
-
TextAppearance_Widget_AppCompat_ExpandedMenu_Item - Static variable in class com.tomerrosenfeld.fadingtextview.R.style
-
 
-
TextAppearance_Widget_AppCompat_Toolbar_Subtitle - Static variable in class com.tomer.fadingtextview.R.style
-
 
-
TextAppearance_Widget_AppCompat_Toolbar_Subtitle - Static variable in class com.tomerrosenfeld.fadingtextview.R.style
-
 
-
TextAppearance_Widget_AppCompat_Toolbar_Title - Static variable in class com.tomer.fadingtextview.R.style
-
 
-
TextAppearance_Widget_AppCompat_Toolbar_Title - Static variable in class com.tomerrosenfeld.fadingtextview.R.style
-
 
-
textAppearanceLargePopupMenu - Static variable in class com.tomer.fadingtextview.R.attr
-
-
Must be a reference to another resource, in the form "@[+][package:]type:name" -or to a theme attribute in the form "?[package:][type:]name".
-
-
textAppearanceLargePopupMenu - Static variable in class com.tomerrosenfeld.fadingtextview.R.attr
-
-
Must be a reference to another resource, in the form "@[+][package:]type:name" -or to a theme attribute in the form "?[package:][type:]name".
-
-
textAppearanceListItem - Static variable in class com.tomer.fadingtextview.R.attr
-
-
Must be a reference to another resource, in the form "@[+][package:]type:name" -or to a theme attribute in the form "?[package:][type:]name".
-
-
textAppearanceListItem - Static variable in class com.tomerrosenfeld.fadingtextview.R.attr
-
-
Must be a reference to another resource, in the form "@[+][package:]type:name" -or to a theme attribute in the form "?[package:][type:]name".
-
-
textAppearanceListItemSecondary - Static variable in class com.tomer.fadingtextview.R.attr
-
-
Must be a reference to another resource, in the form "@[+][package:]type:name" -or to a theme attribute in the form "?[package:][type:]name".
-
-
textAppearanceListItemSecondary - Static variable in class com.tomerrosenfeld.fadingtextview.R.attr
-
-
Must be a reference to another resource, in the form "@[+][package:]type:name" -or to a theme attribute in the form "?[package:][type:]name".
-
-
textAppearanceListItemSmall - Static variable in class com.tomer.fadingtextview.R.attr
-
-
Must be a reference to another resource, in the form "@[+][package:]type:name" -or to a theme attribute in the form "?[package:][type:]name".
-
-
textAppearanceListItemSmall - Static variable in class com.tomerrosenfeld.fadingtextview.R.attr
-
-
Must be a reference to another resource, in the form "@[+][package:]type:name" -or to a theme attribute in the form "?[package:][type:]name".
-
-
textAppearancePopupMenuHeader - Static variable in class com.tomer.fadingtextview.R.attr
-
-
Must be a reference to another resource, in the form "@[+][package:]type:name" -or to a theme attribute in the form "?[package:][type:]name".
-
-
textAppearancePopupMenuHeader - Static variable in class com.tomerrosenfeld.fadingtextview.R.attr
-
-
Must be a reference to another resource, in the form "@[+][package:]type:name" -or to a theme attribute in the form "?[package:][type:]name".
-
-
textAppearanceSearchResultSubtitle - Static variable in class com.tomer.fadingtextview.R.attr
-
-
Must be a reference to another resource, in the form "@[+][package:]type:name" -or to a theme attribute in the form "?[package:][type:]name".
-
-
textAppearanceSearchResultSubtitle - Static variable in class com.tomerrosenfeld.fadingtextview.R.attr
-
-
Must be a reference to another resource, in the form "@[+][package:]type:name" -or to a theme attribute in the form "?[package:][type:]name".
-
-
textAppearanceSearchResultTitle - Static variable in class com.tomer.fadingtextview.R.attr
-
-
Must be a reference to another resource, in the form "@[+][package:]type:name" -or to a theme attribute in the form "?[package:][type:]name".
-
-
textAppearanceSearchResultTitle - Static variable in class com.tomerrosenfeld.fadingtextview.R.attr
-
-
Must be a reference to another resource, in the form "@[+][package:]type:name" -or to a theme attribute in the form "?[package:][type:]name".
-
-
textAppearanceSmallPopupMenu - Static variable in class com.tomer.fadingtextview.R.attr
-
-
Must be a reference to another resource, in the form "@[+][package:]type:name" -or to a theme attribute in the form "?[package:][type:]name".
-
-
textAppearanceSmallPopupMenu - Static variable in class com.tomerrosenfeld.fadingtextview.R.attr
-
-
Must be a reference to another resource, in the form "@[+][package:]type:name" -or to a theme attribute in the form "?[package:][type:]name".
-
-
textColorAlertDialogListItem - Static variable in class com.tomer.fadingtextview.R.attr
-
-
May be a reference to another resource, in the form "@[+][package:]type:name" -or to a theme attribute in the form "?[package:][type:]name".
-
-
textColorAlertDialogListItem - Static variable in class com.tomerrosenfeld.fadingtextview.R.attr
-
-
May be a reference to another resource, in the form "@[+][package:]type:name" -or to a theme attribute in the form "?[package:][type:]name".
-
-
textColorError - Static variable in class com.tomerrosenfeld.fadingtextview.R.attr
-
-
Must be a color value, in the form of "#rgb", "#argb", -"#rrggbb", or "#aarrggbb".
-
-
textColorSearchUrl - Static variable in class com.tomer.fadingtextview.R.attr
-
-
May be a reference to another resource, in the form "@[+][package:]type:name" -or to a theme attribute in the form "?[package:][type:]name".
-
-
textColorSearchUrl - Static variable in class com.tomerrosenfeld.fadingtextview.R.attr
-
-
May be a reference to another resource, in the form "@[+][package:]type:name" -or to a theme attribute in the form "?[package:][type:]name".
-
-
textinput_counter - Static variable in class com.tomerrosenfeld.fadingtextview.R.id
-
 
-
textinput_error - Static variable in class com.tomerrosenfeld.fadingtextview.R.id
-
 
-
TextInputLayout - Static variable in class com.tomerrosenfeld.fadingtextview.R.styleable
-
-
Attributes that can be used with a TextInputLayout.
-
-
TextInputLayout_android_hint - Static variable in class com.tomerrosenfeld.fadingtextview.R.styleable
-
-
This symbol is the offset where the R.attr.hint - attribute's value can be found in the R.styleable.TextInputLayout array.
-
-
TextInputLayout_android_textColorHint - Static variable in class com.tomerrosenfeld.fadingtextview.R.styleable
-
-
This symbol is the offset where the R.attr.textColorHint - attribute's value can be found in the R.styleable.TextInputLayout array.
-
-
TextInputLayout_counterEnabled - Static variable in class com.tomerrosenfeld.fadingtextview.R.styleable
-
-
This symbol is the offset where the R.attr.counterEnabled - attribute's value can be found in the R.styleable.TextInputLayout array.
-
-
TextInputLayout_counterMaxLength - Static variable in class com.tomerrosenfeld.fadingtextview.R.styleable
-
-
This symbol is the offset where the R.attr.counterMaxLength - attribute's value can be found in the R.styleable.TextInputLayout array.
-
-
TextInputLayout_counterOverflowTextAppearance - Static variable in class com.tomerrosenfeld.fadingtextview.R.styleable
-
-
This symbol is the offset where the R.attr.counterOverflowTextAppearance - attribute's value can be found in the R.styleable.TextInputLayout array.
-
-
TextInputLayout_counterTextAppearance - Static variable in class com.tomerrosenfeld.fadingtextview.R.styleable
-
-
This symbol is the offset where the R.attr.counterTextAppearance - attribute's value can be found in the R.styleable.TextInputLayout array.
-
-
TextInputLayout_errorEnabled - Static variable in class com.tomerrosenfeld.fadingtextview.R.styleable
-
-
This symbol is the offset where the R.attr.errorEnabled - attribute's value can be found in the R.styleable.TextInputLayout array.
-
-
TextInputLayout_errorTextAppearance - Static variable in class com.tomerrosenfeld.fadingtextview.R.styleable
-
-
This symbol is the offset where the R.attr.errorTextAppearance - attribute's value can be found in the R.styleable.TextInputLayout array.
-
-
TextInputLayout_hintAnimationEnabled - Static variable in class com.tomerrosenfeld.fadingtextview.R.styleable
-
-
This symbol is the offset where the R.attr.hintAnimationEnabled - attribute's value can be found in the R.styleable.TextInputLayout array.
-
-
TextInputLayout_hintEnabled - Static variable in class com.tomerrosenfeld.fadingtextview.R.styleable
-
-
This symbol is the offset where the R.attr.hintEnabled - attribute's value can be found in the R.styleable.TextInputLayout array.
-
-
TextInputLayout_hintTextAppearance - Static variable in class com.tomerrosenfeld.fadingtextview.R.styleable
-
-
This symbol is the offset where the R.attr.hintTextAppearance - attribute's value can be found in the R.styleable.TextInputLayout array.
-
-
TextInputLayout_passwordToggleContentDescription - Static variable in class com.tomerrosenfeld.fadingtextview.R.styleable
-
-
This symbol is the offset where the R.attr.passwordToggleContentDescription - attribute's value can be found in the R.styleable.TextInputLayout array.
-
-
TextInputLayout_passwordToggleDrawable - Static variable in class com.tomerrosenfeld.fadingtextview.R.styleable
-
-
This symbol is the offset where the R.attr.passwordToggleDrawable - attribute's value can be found in the R.styleable.TextInputLayout array.
-
-
TextInputLayout_passwordToggleEnabled - Static variable in class com.tomerrosenfeld.fadingtextview.R.styleable
-
-
This symbol is the offset where the R.attr.passwordToggleEnabled - attribute's value can be found in the R.styleable.TextInputLayout array.
-
-
TextInputLayout_passwordToggleTint - Static variable in class com.tomerrosenfeld.fadingtextview.R.styleable
-
-
This symbol is the offset where the R.attr.passwordToggleTint - attribute's value can be found in the R.styleable.TextInputLayout array.
-
-
TextInputLayout_passwordToggleTintMode - Static variable in class com.tomerrosenfeld.fadingtextview.R.styleable
-
-
This symbol is the offset where the R.attr.passwordToggleTintMode - attribute's value can be found in the R.styleable.TextInputLayout array.
-
-
texts - Static variable in class com.tomer.fadingtextview.R.attr
-
-
Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character.
-
-
texts - Static variable in class com.tomerrosenfeld.fadingtextview.R.attr
-
-
Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character.
-
-
textSpacerNoButtons - Static variable in class com.tomer.fadingtextview.R.id
-
 
-
textSpacerNoButtons - Static variable in class com.tomerrosenfeld.fadingtextview.R.id
-
 
-
textSpacerNoTitle - Static variable in class com.tomer.fadingtextview.R.id
-
 
-
textSpacerNoTitle - Static variable in class com.tomerrosenfeld.fadingtextview.R.id
-
 
-
theme - Static variable in class com.tomer.fadingtextview.R.attr
-
-
Must be a reference to another resource, in the form "@[+][package:]type:name" -or to a theme attribute in the form "?[package:][type:]name".
-
-
theme - Static variable in class com.tomerrosenfeld.fadingtextview.R.attr
-
-
Must be a reference to another resource, in the form "@[+][package:]type:name" -or to a theme attribute in the form "?[package:][type:]name".
-
-
Theme - Static variable in class com.tomerrosenfeld.fadingtextview.R.styleable
-
-
Attributes that can be used with a Theme.
-
-
Theme_AppCompat - Static variable in class com.tomer.fadingtextview.R.style
-
 
-
Theme_AppCompat - Static variable in class com.tomerrosenfeld.fadingtextview.R.style
-
 
-
Theme_AppCompat_CompactMenu - Static variable in class com.tomer.fadingtextview.R.style
-
 
-
Theme_AppCompat_CompactMenu - Static variable in class com.tomerrosenfeld.fadingtextview.R.style
-
 
-
Theme_AppCompat_DayNight - Static variable in class com.tomer.fadingtextview.R.style
-
 
-
Theme_AppCompat_DayNight - Static variable in class com.tomerrosenfeld.fadingtextview.R.style
-
 
-
Theme_AppCompat_DayNight_DarkActionBar - Static variable in class com.tomer.fadingtextview.R.style
-
 
-
Theme_AppCompat_DayNight_DarkActionBar - Static variable in class com.tomerrosenfeld.fadingtextview.R.style
-
 
-
Theme_AppCompat_DayNight_Dialog - Static variable in class com.tomer.fadingtextview.R.style
-
 
-
Theme_AppCompat_DayNight_Dialog - Static variable in class com.tomerrosenfeld.fadingtextview.R.style
-
 
-
Theme_AppCompat_DayNight_Dialog_Alert - Static variable in class com.tomer.fadingtextview.R.style
-
 
-
Theme_AppCompat_DayNight_Dialog_Alert - Static variable in class com.tomerrosenfeld.fadingtextview.R.style
-
 
-
Theme_AppCompat_DayNight_Dialog_MinWidth - Static variable in class com.tomer.fadingtextview.R.style
-
 
-
Theme_AppCompat_DayNight_Dialog_MinWidth - Static variable in class com.tomerrosenfeld.fadingtextview.R.style
-
 
-
Theme_AppCompat_DayNight_DialogWhenLarge - Static variable in class com.tomer.fadingtextview.R.style
-
 
-
Theme_AppCompat_DayNight_DialogWhenLarge - Static variable in class com.tomerrosenfeld.fadingtextview.R.style
-
 
-
Theme_AppCompat_DayNight_NoActionBar - Static variable in class com.tomer.fadingtextview.R.style
-
 
-
Theme_AppCompat_DayNight_NoActionBar - Static variable in class com.tomerrosenfeld.fadingtextview.R.style
-
 
-
Theme_AppCompat_Dialog - Static variable in class com.tomer.fadingtextview.R.style
-
 
-
Theme_AppCompat_Dialog - Static variable in class com.tomerrosenfeld.fadingtextview.R.style
-
 
-
Theme_AppCompat_Dialog_Alert - Static variable in class com.tomer.fadingtextview.R.style
-
 
-
Theme_AppCompat_Dialog_Alert - Static variable in class com.tomerrosenfeld.fadingtextview.R.style
-
 
-
Theme_AppCompat_Dialog_MinWidth - Static variable in class com.tomer.fadingtextview.R.style
-
 
-
Theme_AppCompat_Dialog_MinWidth - Static variable in class com.tomerrosenfeld.fadingtextview.R.style
-
 
-
Theme_AppCompat_DialogWhenLarge - Static variable in class com.tomer.fadingtextview.R.style
-
 
-
Theme_AppCompat_DialogWhenLarge - Static variable in class com.tomerrosenfeld.fadingtextview.R.style
-
 
-
Theme_AppCompat_Light - Static variable in class com.tomer.fadingtextview.R.style
-
 
-
Theme_AppCompat_Light - Static variable in class com.tomerrosenfeld.fadingtextview.R.style
-
 
-
Theme_AppCompat_Light_DarkActionBar - Static variable in class com.tomer.fadingtextview.R.style
-
 
-
Theme_AppCompat_Light_DarkActionBar - Static variable in class com.tomerrosenfeld.fadingtextview.R.style
-
 
-
Theme_AppCompat_Light_Dialog - Static variable in class com.tomer.fadingtextview.R.style
-
 
-
Theme_AppCompat_Light_Dialog - Static variable in class com.tomerrosenfeld.fadingtextview.R.style
-
 
-
Theme_AppCompat_Light_Dialog_Alert - Static variable in class com.tomer.fadingtextview.R.style
-
 
-
Theme_AppCompat_Light_Dialog_Alert - Static variable in class com.tomerrosenfeld.fadingtextview.R.style
-
 
-
Theme_AppCompat_Light_Dialog_MinWidth - Static variable in class com.tomer.fadingtextview.R.style
-
 
-
Theme_AppCompat_Light_Dialog_MinWidth - Static variable in class com.tomerrosenfeld.fadingtextview.R.style
-
 
-
Theme_AppCompat_Light_DialogWhenLarge - Static variable in class com.tomer.fadingtextview.R.style
-
 
-
Theme_AppCompat_Light_DialogWhenLarge - Static variable in class com.tomerrosenfeld.fadingtextview.R.style
-
 
-
Theme_AppCompat_Light_NoActionBar - Static variable in class com.tomer.fadingtextview.R.style
-
 
-
Theme_AppCompat_Light_NoActionBar - Static variable in class com.tomerrosenfeld.fadingtextview.R.style
-
 
-
Theme_AppCompat_NoActionBar - Static variable in class com.tomer.fadingtextview.R.style
-
 
-
Theme_AppCompat_NoActionBar - Static variable in class com.tomerrosenfeld.fadingtextview.R.style
-
 
-
Theme_Design - Static variable in class com.tomerrosenfeld.fadingtextview.R.style
-
 
-
Theme_Design_BottomSheetDialog - Static variable in class com.tomerrosenfeld.fadingtextview.R.style
-
 
-
Theme_Design_Light - Static variable in class com.tomerrosenfeld.fadingtextview.R.style
-
 
-
Theme_Design_Light_BottomSheetDialog - Static variable in class com.tomerrosenfeld.fadingtextview.R.style
-
 
-
Theme_Design_Light_NoActionBar - Static variable in class com.tomerrosenfeld.fadingtextview.R.style
-
 
-
Theme_Design_NoActionBar - Static variable in class com.tomerrosenfeld.fadingtextview.R.style
-
 
-
Theme_discreteSeekBarStyle - Static variable in class com.tomerrosenfeld.fadingtextview.R.styleable
-
-
This symbol is the offset where the R.attr.discreteSeekBarStyle - attribute's value can be found in the R.styleable.Theme array.
-
-
ThemeOverlay_AppCompat - Static variable in class com.tomer.fadingtextview.R.style
-
 
-
ThemeOverlay_AppCompat - Static variable in class com.tomerrosenfeld.fadingtextview.R.style
-
 
-
ThemeOverlay_AppCompat_ActionBar - Static variable in class com.tomer.fadingtextview.R.style
-
 
-
ThemeOverlay_AppCompat_ActionBar - Static variable in class com.tomerrosenfeld.fadingtextview.R.style
-
 
-
ThemeOverlay_AppCompat_Dark - Static variable in class com.tomer.fadingtextview.R.style
-
 
-
ThemeOverlay_AppCompat_Dark - Static variable in class com.tomerrosenfeld.fadingtextview.R.style
-
 
-
ThemeOverlay_AppCompat_Dark_ActionBar - Static variable in class com.tomer.fadingtextview.R.style
-
 
-
ThemeOverlay_AppCompat_Dark_ActionBar - Static variable in class com.tomerrosenfeld.fadingtextview.R.style
-
 
-
ThemeOverlay_AppCompat_Dialog - Static variable in class com.tomer.fadingtextview.R.style
-
 
-
ThemeOverlay_AppCompat_Dialog - Static variable in class com.tomerrosenfeld.fadingtextview.R.style
-
 
-
ThemeOverlay_AppCompat_Dialog_Alert - Static variable in class com.tomer.fadingtextview.R.style
-
 
-
ThemeOverlay_AppCompat_Dialog_Alert - Static variable in class com.tomerrosenfeld.fadingtextview.R.style
-
 
-
ThemeOverlay_AppCompat_Light - Static variable in class com.tomer.fadingtextview.R.style
-
 
-
ThemeOverlay_AppCompat_Light - Static variable in class com.tomerrosenfeld.fadingtextview.R.style
-
 
-
thickness - Static variable in class com.tomer.fadingtextview.R.attr
-
-
Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp".
-
-
thickness - Static variable in class com.tomerrosenfeld.fadingtextview.R.attr
-
-
Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp".
-
-
thumbTextPadding - Static variable in class com.tomer.fadingtextview.R.attr
-
-
Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp".
-
-
thumbTextPadding - Static variable in class com.tomerrosenfeld.fadingtextview.R.attr
-
-
Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp".
-
-
thumbTint - Static variable in class com.tomer.fadingtextview.R.attr
-
-
Must be a color value, in the form of "#rgb", "#argb", -"#rrggbb", or "#aarrggbb".
-
-
thumbTint - Static variable in class com.tomerrosenfeld.fadingtextview.R.attr
-
-
Must be a color value, in the form of "#rgb", "#argb", -"#rrggbb", or "#aarrggbb".
-
-
thumbTintMode - Static variable in class com.tomer.fadingtextview.R.attr
-
-
Must be one of the following constant values.
-
-
thumbTintMode - Static variable in class com.tomerrosenfeld.fadingtextview.R.attr
-
-
Must be one of the following constant values.
-
-
tickMark - Static variable in class com.tomer.fadingtextview.R.attr
-
-
Must be a reference to another resource, in the form "@[+][package:]type:name" -or to a theme attribute in the form "?[package:][type:]name".
-
-
tickMark - Static variable in class com.tomerrosenfeld.fadingtextview.R.attr
-
-
Must be a reference to another resource, in the form "@[+][package:]type:name" -or to a theme attribute in the form "?[package:][type:]name".
-
-
tickMarkTint - Static variable in class com.tomer.fadingtextview.R.attr
-
-
Must be a color value, in the form of "#rgb", "#argb", -"#rrggbb", or "#aarrggbb".
-
-
tickMarkTint - Static variable in class com.tomerrosenfeld.fadingtextview.R.attr
-
-
Must be a color value, in the form of "#rgb", "#argb", -"#rrggbb", or "#aarrggbb".
-
-
tickMarkTintMode - Static variable in class com.tomer.fadingtextview.R.attr
-
-
Must be one of the following constant values.
-
-
tickMarkTintMode - Static variable in class com.tomerrosenfeld.fadingtextview.R.attr
-
-
Must be one of the following constant values.
-
-
time - Static variable in class com.tomer.fadingtextview.R.id
-
 
-
time - Static variable in class com.tomerrosenfeld.fadingtextview.R.id
-
 
-
timeout - Static variable in class com.tomer.fadingtextview.R.attr
-
-
Must be an integer value, such as "100".
-
-
timeout - Static variable in class com.tomerrosenfeld.fadingtextview.R.attr
-
-
Must be an integer value, such as "100".
-
-
timeout_bar - Static variable in class com.tomerrosenfeld.fadingtextview.R.id
-
 
-
tint - Static variable in class com.tomer.fadingtextview.R.attr
-
-
Must be a color value, in the form of "#rgb", "#argb", -"#rrggbb", or "#aarrggbb".
-
-
tint - Static variable in class com.tomerrosenfeld.fadingtextview.R.attr
-
-
Must be a color value, in the form of "#rgb", "#argb", -"#rrggbb", or "#aarrggbb".
-
-
tintMode - Static variable in class com.tomer.fadingtextview.R.attr
-
-
Must be one of the following constant values.
-
-
tintMode - Static variable in class com.tomerrosenfeld.fadingtextview.R.attr
-
-
Must be one of the following constant values.
-
-
title - Static variable in class com.tomer.fadingtextview.R.attr
-
-
Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character.
-
-
title - Static variable in class com.tomer.fadingtextview.R.id
-
 
-
title - Static variable in class com.tomerrosenfeld.fadingtextview.R.attr
-
-
Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character.
-
-
title - Static variable in class com.tomerrosenfeld.fadingtextview.R.id
-
 
-
title_activity_main - Static variable in class com.tomerrosenfeld.fadingtextview.R.string
-
 
-
title_template - Static variable in class com.tomer.fadingtextview.R.id
-
 
-
title_template - Static variable in class com.tomerrosenfeld.fadingtextview.R.id
-
 
-
titleDividerNoCustom - Static variable in class com.tomer.fadingtextview.R.id
-
 
-
titleDividerNoCustom - Static variable in class com.tomerrosenfeld.fadingtextview.R.id
-
 
-
titleEnabled - Static variable in class com.tomerrosenfeld.fadingtextview.R.attr
-
-
Must be a boolean value, either "true" or "false".
-
-
titleMargin - Static variable in class com.tomer.fadingtextview.R.attr
-
-
Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp".
-
-
titleMargin - Static variable in class com.tomerrosenfeld.fadingtextview.R.attr
-
-
Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp".
-
-
titleMarginBottom - Static variable in class com.tomer.fadingtextview.R.attr
-
-
Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp".
-
-
titleMarginBottom - Static variable in class com.tomerrosenfeld.fadingtextview.R.attr
-
-
Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp".
-
-
titleMarginEnd - Static variable in class com.tomer.fadingtextview.R.attr
-
-
Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp".
-
-
titleMarginEnd - Static variable in class com.tomerrosenfeld.fadingtextview.R.attr
-
-
Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp".
-
-
titleMargins - Static variable in class com.tomer.fadingtextview.R.attr
-
-
Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp".
-
-
titleMargins - Static variable in class com.tomerrosenfeld.fadingtextview.R.attr
-
-
Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp".
-
-
titleMarginStart - Static variable in class com.tomer.fadingtextview.R.attr
-
-
Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp".
-
-
titleMarginStart - Static variable in class com.tomerrosenfeld.fadingtextview.R.attr
-
-
Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp".
-
-
titleMarginTop - Static variable in class com.tomer.fadingtextview.R.attr
-
-
Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp".
-
-
titleMarginTop - Static variable in class com.tomerrosenfeld.fadingtextview.R.attr
-
-
Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp".
-
-
titleTextAppearance - Static variable in class com.tomer.fadingtextview.R.attr
-
-
Must be a reference to another resource, in the form "@[+][package:]type:name" -or to a theme attribute in the form "?[package:][type:]name".
-
-
titleTextAppearance - Static variable in class com.tomerrosenfeld.fadingtextview.R.attr
-
-
Must be a reference to another resource, in the form "@[+][package:]type:name" -or to a theme attribute in the form "?[package:][type:]name".
-
-
titleTextColor - Static variable in class com.tomer.fadingtextview.R.attr
-
-
Must be a color value, in the form of "#rgb", "#argb", -"#rrggbb", or "#aarrggbb".
-
-
titleTextColor - Static variable in class com.tomerrosenfeld.fadingtextview.R.attr
-
-
Must be a color value, in the form of "#rgb", "#argb", -"#rrggbb", or "#aarrggbb".
-
-
titleTextStyle - Static variable in class com.tomer.fadingtextview.R.attr
-
-
Must be a reference to another resource, in the form "@[+][package:]type:name" -or to a theme attribute in the form "?[package:][type:]name".
-
-
titleTextStyle - Static variable in class com.tomerrosenfeld.fadingtextview.R.attr
-
-
Must be a reference to another resource, in the form "@[+][package:]type:name" -or to a theme attribute in the form "?[package:][type:]name".
-
-
Toolbar - Static variable in class com.tomer.fadingtextview.R.styleable
-
-
Attributes that can be used with a Toolbar.
-
-
toolbar - Static variable in class com.tomerrosenfeld.fadingtextview.R.id
-
 
-
Toolbar - Static variable in class com.tomerrosenfeld.fadingtextview.R.styleable
-
-
Attributes that can be used with a Toolbar.
-
-
Toolbar_android_gravity - Static variable in class com.tomer.fadingtextview.R.styleable
-
-
This symbol is the offset where the R.attr.gravity - attribute's value can be found in the Toolbar array.
-
-
Toolbar_android_gravity - Static variable in class com.tomerrosenfeld.fadingtextview.R.styleable
-
-
This symbol is the offset where the R.attr.gravity - attribute's value can be found in the R.styleable.Toolbar array.
-
-
Toolbar_android_minHeight - Static variable in class com.tomer.fadingtextview.R.styleable
-
-
This symbol is the offset where the R.attr.minHeight - attribute's value can be found in the Toolbar array.
-
-
Toolbar_android_minHeight - Static variable in class com.tomerrosenfeld.fadingtextview.R.styleable
-
-
This symbol is the offset where the R.attr.minHeight - attribute's value can be found in the R.styleable.Toolbar array.
-
-
Toolbar_buttonGravity - Static variable in class com.tomer.fadingtextview.R.styleable
-
-
This symbol is the offset where the R.attr.buttonGravity - attribute's value can be found in the Toolbar array.
-
-
Toolbar_buttonGravity - Static variable in class com.tomerrosenfeld.fadingtextview.R.styleable
-
-
This symbol is the offset where the R.attr.buttonGravity - attribute's value can be found in the R.styleable.Toolbar array.
-
-
Toolbar_collapseContentDescription - Static variable in class com.tomer.fadingtextview.R.styleable
-
-
This symbol is the offset where the R.attr.collapseContentDescription - attribute's value can be found in the Toolbar array.
-
-
Toolbar_collapseContentDescription - Static variable in class com.tomerrosenfeld.fadingtextview.R.styleable
-
-
This symbol is the offset where the R.attr.collapseContentDescription - attribute's value can be found in the R.styleable.Toolbar array.
-
-
Toolbar_collapseIcon - Static variable in class com.tomer.fadingtextview.R.styleable
-
-
This symbol is the offset where the R.attr.collapseIcon - attribute's value can be found in the Toolbar array.
-
-
Toolbar_collapseIcon - Static variable in class com.tomerrosenfeld.fadingtextview.R.styleable
-
-
This symbol is the offset where the R.attr.collapseIcon - attribute's value can be found in the R.styleable.Toolbar array.
-
-
Toolbar_contentInsetEnd - Static variable in class com.tomer.fadingtextview.R.styleable
-
-
This symbol is the offset where the R.attr.contentInsetEnd - attribute's value can be found in the Toolbar array.
-
-
Toolbar_contentInsetEnd - Static variable in class com.tomerrosenfeld.fadingtextview.R.styleable
-
-
This symbol is the offset where the R.attr.contentInsetEnd - attribute's value can be found in the R.styleable.Toolbar array.
-
-
Toolbar_contentInsetEndWithActions - Static variable in class com.tomer.fadingtextview.R.styleable
-
-
This symbol is the offset where the R.attr.contentInsetEndWithActions - attribute's value can be found in the Toolbar array.
-
-
Toolbar_contentInsetEndWithActions - Static variable in class com.tomerrosenfeld.fadingtextview.R.styleable
-
-
This symbol is the offset where the R.attr.contentInsetEndWithActions - attribute's value can be found in the R.styleable.Toolbar array.
-
-
Toolbar_contentInsetLeft - Static variable in class com.tomer.fadingtextview.R.styleable
-
-
This symbol is the offset where the R.attr.contentInsetLeft - attribute's value can be found in the Toolbar array.
-
-
Toolbar_contentInsetLeft - Static variable in class com.tomerrosenfeld.fadingtextview.R.styleable
-
-
This symbol is the offset where the R.attr.contentInsetLeft - attribute's value can be found in the R.styleable.Toolbar array.
-
-
Toolbar_contentInsetRight - Static variable in class com.tomer.fadingtextview.R.styleable
-
-
This symbol is the offset where the R.attr.contentInsetRight - attribute's value can be found in the Toolbar array.
-
-
Toolbar_contentInsetRight - Static variable in class com.tomerrosenfeld.fadingtextview.R.styleable
-
-
This symbol is the offset where the R.attr.contentInsetRight - attribute's value can be found in the R.styleable.Toolbar array.
-
-
Toolbar_contentInsetStart - Static variable in class com.tomer.fadingtextview.R.styleable
-
-
This symbol is the offset where the R.attr.contentInsetStart - attribute's value can be found in the Toolbar array.
-
-
Toolbar_contentInsetStart - Static variable in class com.tomerrosenfeld.fadingtextview.R.styleable
-
-
This symbol is the offset where the R.attr.contentInsetStart - attribute's value can be found in the R.styleable.Toolbar array.
-
-
Toolbar_contentInsetStartWithNavigation - Static variable in class com.tomer.fadingtextview.R.styleable
-
-
This symbol is the offset where the R.attr.contentInsetStartWithNavigation - attribute's value can be found in the Toolbar array.
-
-
Toolbar_contentInsetStartWithNavigation - Static variable in class com.tomerrosenfeld.fadingtextview.R.styleable
-
-
This symbol is the offset where the R.attr.contentInsetStartWithNavigation - attribute's value can be found in the R.styleable.Toolbar array.
-
-
Toolbar_logo - Static variable in class com.tomer.fadingtextview.R.styleable
-
-
This symbol is the offset where the R.attr.logo - attribute's value can be found in the Toolbar array.
-
-
Toolbar_logo - Static variable in class com.tomerrosenfeld.fadingtextview.R.styleable
-
-
This symbol is the offset where the R.attr.logo - attribute's value can be found in the R.styleable.Toolbar array.
-
-
Toolbar_logoDescription - Static variable in class com.tomer.fadingtextview.R.styleable
-
-
This symbol is the offset where the R.attr.logoDescription - attribute's value can be found in the Toolbar array.
-
-
Toolbar_logoDescription - Static variable in class com.tomerrosenfeld.fadingtextview.R.styleable
-
-
This symbol is the offset where the R.attr.logoDescription - attribute's value can be found in the R.styleable.Toolbar array.
-
-
Toolbar_maxButtonHeight - Static variable in class com.tomer.fadingtextview.R.styleable
-
-
This symbol is the offset where the R.attr.maxButtonHeight - attribute's value can be found in the Toolbar array.
-
-
Toolbar_maxButtonHeight - Static variable in class com.tomerrosenfeld.fadingtextview.R.styleable
-
-
This symbol is the offset where the R.attr.maxButtonHeight - attribute's value can be found in the R.styleable.Toolbar array.
-
-
Toolbar_navigationContentDescription - Static variable in class com.tomer.fadingtextview.R.styleable
-
-
This symbol is the offset where the R.attr.navigationContentDescription - attribute's value can be found in the Toolbar array.
-
-
Toolbar_navigationContentDescription - Static variable in class com.tomerrosenfeld.fadingtextview.R.styleable
-
-
This symbol is the offset where the R.attr.navigationContentDescription - attribute's value can be found in the R.styleable.Toolbar array.
-
-
Toolbar_navigationIcon - Static variable in class com.tomer.fadingtextview.R.styleable
-
-
This symbol is the offset where the R.attr.navigationIcon - attribute's value can be found in the Toolbar array.
-
-
Toolbar_navigationIcon - Static variable in class com.tomerrosenfeld.fadingtextview.R.styleable
-
-
This symbol is the offset where the R.attr.navigationIcon - attribute's value can be found in the R.styleable.Toolbar array.
-
-
Toolbar_popupTheme - Static variable in class com.tomer.fadingtextview.R.styleable
-
-
This symbol is the offset where the R.attr.popupTheme - attribute's value can be found in the Toolbar array.
-
-
Toolbar_popupTheme - Static variable in class com.tomerrosenfeld.fadingtextview.R.styleable
-
-
This symbol is the offset where the R.attr.popupTheme - attribute's value can be found in the R.styleable.Toolbar array.
-
-
Toolbar_subtitle - Static variable in class com.tomer.fadingtextview.R.styleable
-
-
This symbol is the offset where the R.attr.subtitle - attribute's value can be found in the Toolbar array.
-
-
Toolbar_subtitle - Static variable in class com.tomerrosenfeld.fadingtextview.R.styleable
-
-
This symbol is the offset where the R.attr.subtitle - attribute's value can be found in the R.styleable.Toolbar array.
-
-
Toolbar_subtitleTextAppearance - Static variable in class com.tomer.fadingtextview.R.styleable
-
-
This symbol is the offset where the R.attr.subtitleTextAppearance - attribute's value can be found in the Toolbar array.
-
-
Toolbar_subtitleTextAppearance - Static variable in class com.tomerrosenfeld.fadingtextview.R.styleable
-
-
This symbol is the offset where the R.attr.subtitleTextAppearance - attribute's value can be found in the R.styleable.Toolbar array.
-
-
Toolbar_subtitleTextColor - Static variable in class com.tomer.fadingtextview.R.styleable
-
-
This symbol is the offset where the R.attr.subtitleTextColor - attribute's value can be found in the Toolbar array.
-
-
Toolbar_subtitleTextColor - Static variable in class com.tomerrosenfeld.fadingtextview.R.styleable
-
-
This symbol is the offset where the R.attr.subtitleTextColor - attribute's value can be found in the R.styleable.Toolbar array.
-
-
Toolbar_title - Static variable in class com.tomer.fadingtextview.R.styleable
-
-
This symbol is the offset where the R.attr.title - attribute's value can be found in the Toolbar array.
-
-
Toolbar_title - Static variable in class com.tomerrosenfeld.fadingtextview.R.styleable
-
-
This symbol is the offset where the R.attr.title - attribute's value can be found in the R.styleable.Toolbar array.
-
-
Toolbar_titleMargin - Static variable in class com.tomer.fadingtextview.R.styleable
-
-
This symbol is the offset where the R.attr.titleMargin - attribute's value can be found in the Toolbar array.
-
-
Toolbar_titleMargin - Static variable in class com.tomerrosenfeld.fadingtextview.R.styleable
-
-
This symbol is the offset where the R.attr.titleMargin - attribute's value can be found in the R.styleable.Toolbar array.
-
-
Toolbar_titleMarginBottom - Static variable in class com.tomer.fadingtextview.R.styleable
-
-
This symbol is the offset where the R.attr.titleMarginBottom - attribute's value can be found in the Toolbar array.
-
-
Toolbar_titleMarginBottom - Static variable in class com.tomerrosenfeld.fadingtextview.R.styleable
-
-
This symbol is the offset where the R.attr.titleMarginBottom - attribute's value can be found in the R.styleable.Toolbar array.
-
-
Toolbar_titleMarginEnd - Static variable in class com.tomer.fadingtextview.R.styleable
-
-
This symbol is the offset where the R.attr.titleMarginEnd - attribute's value can be found in the Toolbar array.
-
-
Toolbar_titleMarginEnd - Static variable in class com.tomerrosenfeld.fadingtextview.R.styleable
-
-
This symbol is the offset where the R.attr.titleMarginEnd - attribute's value can be found in the R.styleable.Toolbar array.
-
-
Toolbar_titleMargins - Static variable in class com.tomer.fadingtextview.R.styleable
-
-
This symbol is the offset where the R.attr.titleMargins - attribute's value can be found in the Toolbar array.
-
-
Toolbar_titleMargins - Static variable in class com.tomerrosenfeld.fadingtextview.R.styleable
-
-
This symbol is the offset where the R.attr.titleMargins - attribute's value can be found in the R.styleable.Toolbar array.
-
-
Toolbar_titleMarginStart - Static variable in class com.tomer.fadingtextview.R.styleable
-
-
This symbol is the offset where the R.attr.titleMarginStart - attribute's value can be found in the Toolbar array.
-
-
Toolbar_titleMarginStart - Static variable in class com.tomerrosenfeld.fadingtextview.R.styleable
-
-
This symbol is the offset where the R.attr.titleMarginStart - attribute's value can be found in the R.styleable.Toolbar array.
-
-
Toolbar_titleMarginTop - Static variable in class com.tomer.fadingtextview.R.styleable
-
-
This symbol is the offset where the R.attr.titleMarginTop - attribute's value can be found in the Toolbar array.
-
-
Toolbar_titleMarginTop - Static variable in class com.tomerrosenfeld.fadingtextview.R.styleable
-
-
This symbol is the offset where the R.attr.titleMarginTop - attribute's value can be found in the R.styleable.Toolbar array.
-
-
Toolbar_titleTextAppearance - Static variable in class com.tomer.fadingtextview.R.styleable
-
-
This symbol is the offset where the R.attr.titleTextAppearance - attribute's value can be found in the Toolbar array.
-
-
Toolbar_titleTextAppearance - Static variable in class com.tomerrosenfeld.fadingtextview.R.styleable
-
-
This symbol is the offset where the R.attr.titleTextAppearance - attribute's value can be found in the R.styleable.Toolbar array.
-
-
Toolbar_titleTextColor - Static variable in class com.tomer.fadingtextview.R.styleable
-
-
This symbol is the offset where the R.attr.titleTextColor - attribute's value can be found in the Toolbar array.
-
-
Toolbar_titleTextColor - Static variable in class com.tomerrosenfeld.fadingtextview.R.styleable
-
-
This symbol is the offset where the R.attr.titleTextColor - attribute's value can be found in the R.styleable.Toolbar array.
-
-
toolbarId - Static variable in class com.tomerrosenfeld.fadingtextview.R.attr
-
-
Must be a reference to another resource, in the form "@[+][package:]type:name" -or to a theme attribute in the form "?[package:][type:]name".
-
-
toolbarNavigationButtonStyle - Static variable in class com.tomer.fadingtextview.R.attr
-
-
Must be a reference to another resource, in the form "@[+][package:]type:name" -or to a theme attribute in the form "?[package:][type:]name".
-
-
toolbarNavigationButtonStyle - Static variable in class com.tomerrosenfeld.fadingtextview.R.attr
-
-
Must be a reference to another resource, in the form "@[+][package:]type:name" -or to a theme attribute in the form "?[package:][type:]name".
-
-
toolbarStyle - Static variable in class com.tomer.fadingtextview.R.attr
-
-
Must be a reference to another resource, in the form "@[+][package:]type:name" -or to a theme attribute in the form "?[package:][type:]name".
-
-
toolbarStyle - Static variable in class com.tomerrosenfeld.fadingtextview.R.attr
-
-
Must be a reference to another resource, in the form "@[+][package:]type:name" -or to a theme attribute in the form "?[package:][type:]name".
-
-
top - Static variable in class com.tomer.fadingtextview.R.id
-
 
-
top - Static variable in class com.tomerrosenfeld.fadingtextview.R.id
-
 
-
topPanel - Static variable in class com.tomer.fadingtextview.R.id
-
 
-
topPanel - Static variable in class com.tomerrosenfeld.fadingtextview.R.id
-
 
-
touch_outside - Static variable in class com.tomerrosenfeld.fadingtextview.R.id
-
 
-
track - Static variable in class com.tomer.fadingtextview.R.attr
-
-
Must be a reference to another resource, in the form "@[+][package:]type:name" -or to a theme attribute in the form "?[package:][type:]name".
-
-
track - Static variable in class com.tomerrosenfeld.fadingtextview.R.attr
-
-
Must be a reference to another resource, in the form "@[+][package:]type:name" -or to a theme attribute in the form "?[package:][type:]name".
-
-
trackTint - Static variable in class com.tomer.fadingtextview.R.attr
-
-
Must be a color value, in the form of "#rgb", "#argb", -"#rrggbb", or "#aarrggbb".
-
-
trackTint - Static variable in class com.tomerrosenfeld.fadingtextview.R.attr
-
-
Must be a color value, in the form of "#rgb", "#argb", -"#rrggbb", or "#aarrggbb".
-
-
trackTintMode - Static variable in class com.tomer.fadingtextview.R.attr
-
-
Must be one of the following constant values.
-
-
trackTintMode - Static variable in class com.tomerrosenfeld.fadingtextview.R.attr
-
-
Must be one of the following constant values.
-
-
transition_current_scene - Static variable in class com.tomerrosenfeld.fadingtextview.R.id
-
 
-
transition_scene_layoutid_cache - Static variable in class com.tomerrosenfeld.fadingtextview.R.id
-
 
-
-A B C D E F G H I K L M N O P Q R S T U V W 
- -
- - - - - - - -
- - - - diff --git a/docs/index-files/index-2.html b/docs/index-files/index-2.html deleted file mode 100644 index e8f0fa1..0000000 --- a/docs/index-files/index-2.html +++ /dev/null @@ -1,127 +0,0 @@ - - - - - -D-Index - - - - - - - - -
- - - - - - - -
- - -
C D F G M O P R S  - - -

D

-
-
DEFAULT_TIME_OUT - Static variable in class com.tomer.fadingtextview.FadingTextView
-
 
-
-C D F G M O P R S 
- -
- - - - - - - -
- - - - diff --git a/docs/index-files/index-20.html b/docs/index-files/index-20.html deleted file mode 100644 index 53fdb7d..0000000 --- a/docs/index-files/index-20.html +++ /dev/null @@ -1,141 +0,0 @@ - - - - - -U-Index - - - - - - - - -
- - - - - - - -
- - -
A B C D E F G H I K L M N O P Q R S T U V W  - - -

U

-
-
up - Static variable in class com.tomer.fadingtextview.R.id
-
 
-
up - Static variable in class com.tomerrosenfeld.fadingtextview.R.id
-
 
-
useAppContext() - Method in class com.tomerrosenfeld.fadingtextview.ExampleInstrumentedTest
-
 
-
useCompatPadding - Static variable in class com.tomerrosenfeld.fadingtextview.R.attr
-
-
Must be a boolean value, either "true" or "false".
-
-
useLogo - Static variable in class com.tomer.fadingtextview.R.id
-
 
-
useLogo - Static variable in class com.tomerrosenfeld.fadingtextview.R.id
-
 
-
-A B C D E F G H I K L M N O P Q R S T U V W 
- -
- - - - - - - -
- - - - diff --git a/docs/index-files/index-21.html b/docs/index-files/index-21.html deleted file mode 100644 index 82d0fa1..0000000 --- a/docs/index-files/index-21.html +++ /dev/null @@ -1,283 +0,0 @@ - - - - - -V-Index - - - - - - - - -
- - - - - - - -
- - -
A B C D E F G H I K L M N O P Q R S T U V W  - - -

V

-
-
VERSION_CODE - Static variable in class com.tomer.fadingtextview.BuildConfig
-
 
-
VERSION_CODE - Static variable in class com.tomerrosenfeld.fadingtextview.BuildConfig
-
 
-
VERSION_NAME - Static variable in class com.tomer.fadingtextview.BuildConfig
-
 
-
VERSION_NAME - Static variable in class com.tomerrosenfeld.fadingtextview.BuildConfig
-
 
-
View - Static variable in class com.tomer.fadingtextview.R.styleable
-
-
Attributes that can be used with a View.
-
-
View - Static variable in class com.tomerrosenfeld.fadingtextview.R.styleable
-
-
Attributes that can be used with a View.
-
-
View_android_focusable - Static variable in class com.tomer.fadingtextview.R.styleable
-
-
This symbol is the offset where the R.attr.focusable - attribute's value can be found in the View array.
-
-
View_android_focusable - Static variable in class com.tomerrosenfeld.fadingtextview.R.styleable
-
-
This symbol is the offset where the R.attr.focusable - attribute's value can be found in the R.styleable.View array.
-
-
View_android_theme - Static variable in class com.tomer.fadingtextview.R.styleable
-
-
This symbol is the offset where the R.attr.theme - attribute's value can be found in the View array.
-
-
View_android_theme - Static variable in class com.tomerrosenfeld.fadingtextview.R.styleable
-
-
This symbol is the offset where the R.attr.theme - attribute's value can be found in the R.styleable.View array.
-
-
view_offset_helper - Static variable in class com.tomerrosenfeld.fadingtextview.R.id
-
 
-
View_paddingEnd - Static variable in class com.tomer.fadingtextview.R.styleable
-
-
This symbol is the offset where the R.attr.paddingEnd - attribute's value can be found in the View array.
-
-
View_paddingEnd - Static variable in class com.tomerrosenfeld.fadingtextview.R.styleable
-
-
This symbol is the offset where the R.attr.paddingEnd - attribute's value can be found in the R.styleable.View array.
-
-
View_paddingStart - Static variable in class com.tomer.fadingtextview.R.styleable
-
-
This symbol is the offset where the R.attr.paddingStart - attribute's value can be found in the View array.
-
-
View_paddingStart - Static variable in class com.tomerrosenfeld.fadingtextview.R.styleable
-
-
This symbol is the offset where the R.attr.paddingStart - attribute's value can be found in the R.styleable.View array.
-
-
View_theme - Static variable in class com.tomer.fadingtextview.R.styleable
-
-
This symbol is the offset where the R.attr.theme - attribute's value can be found in the View array.
-
-
View_theme - Static variable in class com.tomerrosenfeld.fadingtextview.R.styleable
-
-
This symbol is the offset where the R.attr.theme - attribute's value can be found in the R.styleable.View array.
-
-
ViewBackgroundHelper - Static variable in class com.tomer.fadingtextview.R.styleable
-
-
Attributes that can be used with a ViewBackgroundHelper.
-
-
ViewBackgroundHelper - Static variable in class com.tomerrosenfeld.fadingtextview.R.styleable
-
-
Attributes that can be used with a ViewBackgroundHelper.
-
-
ViewBackgroundHelper_android_background - Static variable in class com.tomer.fadingtextview.R.styleable
-
-
This symbol is the offset where the R.attr.background - attribute's value can be found in the ViewBackgroundHelper array.
-
-
ViewBackgroundHelper_android_background - Static variable in class com.tomerrosenfeld.fadingtextview.R.styleable
-
-
This symbol is the offset where the R.attr.background - attribute's value can be found in the R.styleable.ViewBackgroundHelper array.
-
-
ViewBackgroundHelper_backgroundTint - Static variable in class com.tomer.fadingtextview.R.styleable
-
-
This symbol is the offset where the R.attr.backgroundTint - attribute's value can be found in the ViewBackgroundHelper array.
-
-
ViewBackgroundHelper_backgroundTint - Static variable in class com.tomerrosenfeld.fadingtextview.R.styleable
-
-
This symbol is the offset where the R.attr.backgroundTint - attribute's value can be found in the R.styleable.ViewBackgroundHelper array.
-
-
ViewBackgroundHelper_backgroundTintMode - Static variable in class com.tomer.fadingtextview.R.styleable
-
-
This symbol is the offset where the R.attr.backgroundTintMode - attribute's value can be found in the ViewBackgroundHelper array.
-
-
ViewBackgroundHelper_backgroundTintMode - Static variable in class com.tomerrosenfeld.fadingtextview.R.styleable
-
-
This symbol is the offset where the R.attr.backgroundTintMode - attribute's value can be found in the R.styleable.ViewBackgroundHelper array.
-
-
ViewStubCompat - Static variable in class com.tomer.fadingtextview.R.styleable
-
-
Attributes that can be used with a ViewStubCompat.
-
-
ViewStubCompat - Static variable in class com.tomerrosenfeld.fadingtextview.R.styleable
-
-
Attributes that can be used with a ViewStubCompat.
-
-
ViewStubCompat_android_id - Static variable in class com.tomer.fadingtextview.R.styleable
-
-
This symbol is the offset where the R.attr.id - attribute's value can be found in the ViewStubCompat array.
-
-
ViewStubCompat_android_id - Static variable in class com.tomerrosenfeld.fadingtextview.R.styleable
-
-
This symbol is the offset where the R.attr.id - attribute's value can be found in the R.styleable.ViewStubCompat array.
-
-
ViewStubCompat_android_inflatedId - Static variable in class com.tomer.fadingtextview.R.styleable
-
-
This symbol is the offset where the R.attr.inflatedId - attribute's value can be found in the ViewStubCompat array.
-
-
ViewStubCompat_android_inflatedId - Static variable in class com.tomerrosenfeld.fadingtextview.R.styleable
-
-
This symbol is the offset where the R.attr.inflatedId - attribute's value can be found in the R.styleable.ViewStubCompat array.
-
-
ViewStubCompat_android_layout - Static variable in class com.tomer.fadingtextview.R.styleable
-
-
This symbol is the offset where the R.attr.layout - attribute's value can be found in the ViewStubCompat array.
-
-
ViewStubCompat_android_layout - Static variable in class com.tomerrosenfeld.fadingtextview.R.styleable
-
-
This symbol is the offset where the R.attr.layout - attribute's value can be found in the R.styleable.ViewStubCompat array.
-
-
visible - Static variable in class com.tomerrosenfeld.fadingtextview.R.id
-
 
-
voiceIcon - Static variable in class com.tomer.fadingtextview.R.attr
-
-
Must be a reference to another resource, in the form "@[+][package:]type:name" -or to a theme attribute in the form "?[package:][type:]name".
-
-
voiceIcon - Static variable in class com.tomerrosenfeld.fadingtextview.R.attr
-
-
Must be a reference to another resource, in the form "@[+][package:]type:name" -or to a theme attribute in the form "?[package:][type:]name".
-
-
-A B C D E F G H I K L M N O P Q R S T U V W 
- -
- - - - - - - -
- - - - diff --git a/docs/index-files/index-22.html b/docs/index-files/index-22.html deleted file mode 100644 index 71770b7..0000000 --- a/docs/index-files/index-22.html +++ /dev/null @@ -1,537 +0,0 @@ - - - - - -W-Index - - - - - - - - -
- - - - - - - -
- - -
A B C D E F G H I K L M N O P Q R S T U V W  - - -

W

-
-
Widget_AppCompat_ActionBar - Static variable in class com.tomer.fadingtextview.R.style
-
 
-
Widget_AppCompat_ActionBar - Static variable in class com.tomerrosenfeld.fadingtextview.R.style
-
 
-
Widget_AppCompat_ActionBar_Solid - Static variable in class com.tomer.fadingtextview.R.style
-
 
-
Widget_AppCompat_ActionBar_Solid - Static variable in class com.tomerrosenfeld.fadingtextview.R.style
-
 
-
Widget_AppCompat_ActionBar_TabBar - Static variable in class com.tomer.fadingtextview.R.style
-
 
-
Widget_AppCompat_ActionBar_TabBar - Static variable in class com.tomerrosenfeld.fadingtextview.R.style
-
 
-
Widget_AppCompat_ActionBar_TabText - Static variable in class com.tomer.fadingtextview.R.style
-
 
-
Widget_AppCompat_ActionBar_TabText - Static variable in class com.tomerrosenfeld.fadingtextview.R.style
-
 
-
Widget_AppCompat_ActionBar_TabView - Static variable in class com.tomer.fadingtextview.R.style
-
 
-
Widget_AppCompat_ActionBar_TabView - Static variable in class com.tomerrosenfeld.fadingtextview.R.style
-
 
-
Widget_AppCompat_ActionButton - Static variable in class com.tomer.fadingtextview.R.style
-
 
-
Widget_AppCompat_ActionButton - Static variable in class com.tomerrosenfeld.fadingtextview.R.style
-
 
-
Widget_AppCompat_ActionButton_CloseMode - Static variable in class com.tomer.fadingtextview.R.style
-
 
-
Widget_AppCompat_ActionButton_CloseMode - Static variable in class com.tomerrosenfeld.fadingtextview.R.style
-
 
-
Widget_AppCompat_ActionButton_Overflow - Static variable in class com.tomer.fadingtextview.R.style
-
 
-
Widget_AppCompat_ActionButton_Overflow - Static variable in class com.tomerrosenfeld.fadingtextview.R.style
-
 
-
Widget_AppCompat_ActionMode - Static variable in class com.tomer.fadingtextview.R.style
-
 
-
Widget_AppCompat_ActionMode - Static variable in class com.tomerrosenfeld.fadingtextview.R.style
-
 
-
Widget_AppCompat_ActivityChooserView - Static variable in class com.tomer.fadingtextview.R.style
-
 
-
Widget_AppCompat_ActivityChooserView - Static variable in class com.tomerrosenfeld.fadingtextview.R.style
-
 
-
Widget_AppCompat_AutoCompleteTextView - Static variable in class com.tomer.fadingtextview.R.style
-
 
-
Widget_AppCompat_AutoCompleteTextView - Static variable in class com.tomerrosenfeld.fadingtextview.R.style
-
 
-
Widget_AppCompat_Button - Static variable in class com.tomer.fadingtextview.R.style
-
 
-
Widget_AppCompat_Button - Static variable in class com.tomerrosenfeld.fadingtextview.R.style
-
 
-
Widget_AppCompat_Button_Borderless - Static variable in class com.tomer.fadingtextview.R.style
-
 
-
Widget_AppCompat_Button_Borderless - Static variable in class com.tomerrosenfeld.fadingtextview.R.style
-
 
-
Widget_AppCompat_Button_Borderless_Colored - Static variable in class com.tomer.fadingtextview.R.style
-
 
-
Widget_AppCompat_Button_Borderless_Colored - Static variable in class com.tomerrosenfeld.fadingtextview.R.style
-
 
-
Widget_AppCompat_Button_ButtonBar_AlertDialog - Static variable in class com.tomer.fadingtextview.R.style
-
 
-
Widget_AppCompat_Button_ButtonBar_AlertDialog - Static variable in class com.tomerrosenfeld.fadingtextview.R.style
-
 
-
Widget_AppCompat_Button_Colored - Static variable in class com.tomer.fadingtextview.R.style
-
 
-
Widget_AppCompat_Button_Colored - Static variable in class com.tomerrosenfeld.fadingtextview.R.style
-
 
-
Widget_AppCompat_Button_Small - Static variable in class com.tomer.fadingtextview.R.style
-
 
-
Widget_AppCompat_Button_Small - Static variable in class com.tomerrosenfeld.fadingtextview.R.style
-
 
-
Widget_AppCompat_ButtonBar - Static variable in class com.tomer.fadingtextview.R.style
-
 
-
Widget_AppCompat_ButtonBar - Static variable in class com.tomerrosenfeld.fadingtextview.R.style
-
 
-
Widget_AppCompat_ButtonBar_AlertDialog - Static variable in class com.tomer.fadingtextview.R.style
-
 
-
Widget_AppCompat_ButtonBar_AlertDialog - Static variable in class com.tomerrosenfeld.fadingtextview.R.style
-
 
-
Widget_AppCompat_CompoundButton_CheckBox - Static variable in class com.tomer.fadingtextview.R.style
-
 
-
Widget_AppCompat_CompoundButton_CheckBox - Static variable in class com.tomerrosenfeld.fadingtextview.R.style
-
 
-
Widget_AppCompat_CompoundButton_RadioButton - Static variable in class com.tomer.fadingtextview.R.style
-
 
-
Widget_AppCompat_CompoundButton_RadioButton - Static variable in class com.tomerrosenfeld.fadingtextview.R.style
-
 
-
Widget_AppCompat_CompoundButton_Switch - Static variable in class com.tomer.fadingtextview.R.style
-
 
-
Widget_AppCompat_CompoundButton_Switch - Static variable in class com.tomerrosenfeld.fadingtextview.R.style
-
 
-
Widget_AppCompat_DrawerArrowToggle - Static variable in class com.tomer.fadingtextview.R.style
-
 
-
Widget_AppCompat_DrawerArrowToggle - Static variable in class com.tomerrosenfeld.fadingtextview.R.style
-
 
-
Widget_AppCompat_DropDownItem_Spinner - Static variable in class com.tomer.fadingtextview.R.style
-
 
-
Widget_AppCompat_DropDownItem_Spinner - Static variable in class com.tomerrosenfeld.fadingtextview.R.style
-
 
-
Widget_AppCompat_EditText - Static variable in class com.tomer.fadingtextview.R.style
-
 
-
Widget_AppCompat_EditText - Static variable in class com.tomerrosenfeld.fadingtextview.R.style
-
 
-
Widget_AppCompat_ImageButton - Static variable in class com.tomer.fadingtextview.R.style
-
 
-
Widget_AppCompat_ImageButton - Static variable in class com.tomerrosenfeld.fadingtextview.R.style
-
 
-
Widget_AppCompat_Light_ActionBar - Static variable in class com.tomer.fadingtextview.R.style
-
 
-
Widget_AppCompat_Light_ActionBar - Static variable in class com.tomerrosenfeld.fadingtextview.R.style
-
 
-
Widget_AppCompat_Light_ActionBar_Solid - Static variable in class com.tomer.fadingtextview.R.style
-
 
-
Widget_AppCompat_Light_ActionBar_Solid - Static variable in class com.tomerrosenfeld.fadingtextview.R.style
-
 
-
Widget_AppCompat_Light_ActionBar_Solid_Inverse - Static variable in class com.tomer.fadingtextview.R.style
-
 
-
Widget_AppCompat_Light_ActionBar_Solid_Inverse - Static variable in class com.tomerrosenfeld.fadingtextview.R.style
-
 
-
Widget_AppCompat_Light_ActionBar_TabBar - Static variable in class com.tomer.fadingtextview.R.style
-
 
-
Widget_AppCompat_Light_ActionBar_TabBar - Static variable in class com.tomerrosenfeld.fadingtextview.R.style
-
 
-
Widget_AppCompat_Light_ActionBar_TabBar_Inverse - Static variable in class com.tomer.fadingtextview.R.style
-
 
-
Widget_AppCompat_Light_ActionBar_TabBar_Inverse - Static variable in class com.tomerrosenfeld.fadingtextview.R.style
-
 
-
Widget_AppCompat_Light_ActionBar_TabText - Static variable in class com.tomer.fadingtextview.R.style
-
 
-
Widget_AppCompat_Light_ActionBar_TabText - Static variable in class com.tomerrosenfeld.fadingtextview.R.style
-
 
-
Widget_AppCompat_Light_ActionBar_TabText_Inverse - Static variable in class com.tomer.fadingtextview.R.style
-
 
-
Widget_AppCompat_Light_ActionBar_TabText_Inverse - Static variable in class com.tomerrosenfeld.fadingtextview.R.style
-
 
-
Widget_AppCompat_Light_ActionBar_TabView - Static variable in class com.tomer.fadingtextview.R.style
-
 
-
Widget_AppCompat_Light_ActionBar_TabView - Static variable in class com.tomerrosenfeld.fadingtextview.R.style
-
 
-
Widget_AppCompat_Light_ActionBar_TabView_Inverse - Static variable in class com.tomer.fadingtextview.R.style
-
 
-
Widget_AppCompat_Light_ActionBar_TabView_Inverse - Static variable in class com.tomerrosenfeld.fadingtextview.R.style
-
 
-
Widget_AppCompat_Light_ActionButton - Static variable in class com.tomer.fadingtextview.R.style
-
 
-
Widget_AppCompat_Light_ActionButton - Static variable in class com.tomerrosenfeld.fadingtextview.R.style
-
 
-
Widget_AppCompat_Light_ActionButton_CloseMode - Static variable in class com.tomer.fadingtextview.R.style
-
 
-
Widget_AppCompat_Light_ActionButton_CloseMode - Static variable in class com.tomerrosenfeld.fadingtextview.R.style
-
 
-
Widget_AppCompat_Light_ActionButton_Overflow - Static variable in class com.tomer.fadingtextview.R.style
-
 
-
Widget_AppCompat_Light_ActionButton_Overflow - Static variable in class com.tomerrosenfeld.fadingtextview.R.style
-
 
-
Widget_AppCompat_Light_ActionMode_Inverse - Static variable in class com.tomer.fadingtextview.R.style
-
 
-
Widget_AppCompat_Light_ActionMode_Inverse - Static variable in class com.tomerrosenfeld.fadingtextview.R.style
-
 
-
Widget_AppCompat_Light_ActivityChooserView - Static variable in class com.tomer.fadingtextview.R.style
-
 
-
Widget_AppCompat_Light_ActivityChooserView - Static variable in class com.tomerrosenfeld.fadingtextview.R.style
-
 
-
Widget_AppCompat_Light_AutoCompleteTextView - Static variable in class com.tomer.fadingtextview.R.style
-
 
-
Widget_AppCompat_Light_AutoCompleteTextView - Static variable in class com.tomerrosenfeld.fadingtextview.R.style
-
 
-
Widget_AppCompat_Light_DropDownItem_Spinner - Static variable in class com.tomer.fadingtextview.R.style
-
 
-
Widget_AppCompat_Light_DropDownItem_Spinner - Static variable in class com.tomerrosenfeld.fadingtextview.R.style
-
 
-
Widget_AppCompat_Light_ListPopupWindow - Static variable in class com.tomer.fadingtextview.R.style
-
 
-
Widget_AppCompat_Light_ListPopupWindow - Static variable in class com.tomerrosenfeld.fadingtextview.R.style
-
 
-
Widget_AppCompat_Light_ListView_DropDown - Static variable in class com.tomer.fadingtextview.R.style
-
 
-
Widget_AppCompat_Light_ListView_DropDown - Static variable in class com.tomerrosenfeld.fadingtextview.R.style
-
 
-
Widget_AppCompat_Light_PopupMenu - Static variable in class com.tomer.fadingtextview.R.style
-
 
-
Widget_AppCompat_Light_PopupMenu - Static variable in class com.tomerrosenfeld.fadingtextview.R.style
-
 
-
Widget_AppCompat_Light_PopupMenu_Overflow - Static variable in class com.tomer.fadingtextview.R.style
-
 
-
Widget_AppCompat_Light_PopupMenu_Overflow - Static variable in class com.tomerrosenfeld.fadingtextview.R.style
-
 
-
Widget_AppCompat_Light_SearchView - Static variable in class com.tomer.fadingtextview.R.style
-
 
-
Widget_AppCompat_Light_SearchView - Static variable in class com.tomerrosenfeld.fadingtextview.R.style
-
 
-
Widget_AppCompat_Light_Spinner_DropDown_ActionBar - Static variable in class com.tomer.fadingtextview.R.style
-
 
-
Widget_AppCompat_Light_Spinner_DropDown_ActionBar - Static variable in class com.tomerrosenfeld.fadingtextview.R.style
-
 
-
Widget_AppCompat_ListMenuView - Static variable in class com.tomer.fadingtextview.R.style
-
 
-
Widget_AppCompat_ListMenuView - Static variable in class com.tomerrosenfeld.fadingtextview.R.style
-
 
-
Widget_AppCompat_ListPopupWindow - Static variable in class com.tomer.fadingtextview.R.style
-
 
-
Widget_AppCompat_ListPopupWindow - Static variable in class com.tomerrosenfeld.fadingtextview.R.style
-
 
-
Widget_AppCompat_ListView - Static variable in class com.tomer.fadingtextview.R.style
-
 
-
Widget_AppCompat_ListView - Static variable in class com.tomerrosenfeld.fadingtextview.R.style
-
 
-
Widget_AppCompat_ListView_DropDown - Static variable in class com.tomer.fadingtextview.R.style
-
 
-
Widget_AppCompat_ListView_DropDown - Static variable in class com.tomerrosenfeld.fadingtextview.R.style
-
 
-
Widget_AppCompat_ListView_Menu - Static variable in class com.tomer.fadingtextview.R.style
-
 
-
Widget_AppCompat_ListView_Menu - Static variable in class com.tomerrosenfeld.fadingtextview.R.style
-
 
-
Widget_AppCompat_NotificationActionContainer - Static variable in class com.tomer.fadingtextview.R.style
-
 
-
Widget_AppCompat_NotificationActionContainer - Static variable in class com.tomerrosenfeld.fadingtextview.R.style
-
 
-
Widget_AppCompat_NotificationActionText - Static variable in class com.tomer.fadingtextview.R.style
-
 
-
Widget_AppCompat_NotificationActionText - Static variable in class com.tomerrosenfeld.fadingtextview.R.style
-
 
-
Widget_AppCompat_PopupMenu - Static variable in class com.tomer.fadingtextview.R.style
-
 
-
Widget_AppCompat_PopupMenu - Static variable in class com.tomerrosenfeld.fadingtextview.R.style
-
 
-
Widget_AppCompat_PopupMenu_Overflow - Static variable in class com.tomer.fadingtextview.R.style
-
 
-
Widget_AppCompat_PopupMenu_Overflow - Static variable in class com.tomerrosenfeld.fadingtextview.R.style
-
 
-
Widget_AppCompat_PopupWindow - Static variable in class com.tomer.fadingtextview.R.style
-
 
-
Widget_AppCompat_PopupWindow - Static variable in class com.tomerrosenfeld.fadingtextview.R.style
-
 
-
Widget_AppCompat_ProgressBar - Static variable in class com.tomer.fadingtextview.R.style
-
 
-
Widget_AppCompat_ProgressBar - Static variable in class com.tomerrosenfeld.fadingtextview.R.style
-
 
-
Widget_AppCompat_ProgressBar_Horizontal - Static variable in class com.tomer.fadingtextview.R.style
-
 
-
Widget_AppCompat_ProgressBar_Horizontal - Static variable in class com.tomerrosenfeld.fadingtextview.R.style
-
 
-
Widget_AppCompat_RatingBar - Static variable in class com.tomer.fadingtextview.R.style
-
 
-
Widget_AppCompat_RatingBar - Static variable in class com.tomerrosenfeld.fadingtextview.R.style
-
 
-
Widget_AppCompat_RatingBar_Indicator - Static variable in class com.tomer.fadingtextview.R.style
-
 
-
Widget_AppCompat_RatingBar_Indicator - Static variable in class com.tomerrosenfeld.fadingtextview.R.style
-
 
-
Widget_AppCompat_RatingBar_Small - Static variable in class com.tomer.fadingtextview.R.style
-
 
-
Widget_AppCompat_RatingBar_Small - Static variable in class com.tomerrosenfeld.fadingtextview.R.style
-
 
-
Widget_AppCompat_SearchView - Static variable in class com.tomer.fadingtextview.R.style
-
 
-
Widget_AppCompat_SearchView - Static variable in class com.tomerrosenfeld.fadingtextview.R.style
-
 
-
Widget_AppCompat_SearchView_ActionBar - Static variable in class com.tomer.fadingtextview.R.style
-
 
-
Widget_AppCompat_SearchView_ActionBar - Static variable in class com.tomerrosenfeld.fadingtextview.R.style
-
 
-
Widget_AppCompat_SeekBar - Static variable in class com.tomer.fadingtextview.R.style
-
 
-
Widget_AppCompat_SeekBar - Static variable in class com.tomerrosenfeld.fadingtextview.R.style
-
 
-
Widget_AppCompat_SeekBar_Discrete - Static variable in class com.tomer.fadingtextview.R.style
-
 
-
Widget_AppCompat_SeekBar_Discrete - Static variable in class com.tomerrosenfeld.fadingtextview.R.style
-
 
-
Widget_AppCompat_Spinner - Static variable in class com.tomer.fadingtextview.R.style
-
 
-
Widget_AppCompat_Spinner - Static variable in class com.tomerrosenfeld.fadingtextview.R.style
-
 
-
Widget_AppCompat_Spinner_DropDown - Static variable in class com.tomer.fadingtextview.R.style
-
 
-
Widget_AppCompat_Spinner_DropDown - Static variable in class com.tomerrosenfeld.fadingtextview.R.style
-
 
-
Widget_AppCompat_Spinner_DropDown_ActionBar - Static variable in class com.tomer.fadingtextview.R.style
-
 
-
Widget_AppCompat_Spinner_DropDown_ActionBar - Static variable in class com.tomerrosenfeld.fadingtextview.R.style
-
 
-
Widget_AppCompat_Spinner_Underlined - Static variable in class com.tomer.fadingtextview.R.style
-
 
-
Widget_AppCompat_Spinner_Underlined - Static variable in class com.tomerrosenfeld.fadingtextview.R.style
-
 
-
Widget_AppCompat_TextView_SpinnerItem - Static variable in class com.tomer.fadingtextview.R.style
-
 
-
Widget_AppCompat_TextView_SpinnerItem - Static variable in class com.tomerrosenfeld.fadingtextview.R.style
-
 
-
Widget_AppCompat_Toolbar - Static variable in class com.tomer.fadingtextview.R.style
-
 
-
Widget_AppCompat_Toolbar - Static variable in class com.tomerrosenfeld.fadingtextview.R.style
-
 
-
Widget_AppCompat_Toolbar_Button_Navigation - Static variable in class com.tomer.fadingtextview.R.style
-
 
-
Widget_AppCompat_Toolbar_Button_Navigation - Static variable in class com.tomerrosenfeld.fadingtextview.R.style
-
 
-
Widget_Design_AppBarLayout - Static variable in class com.tomerrosenfeld.fadingtextview.R.style
-
 
-
Widget_Design_BottomNavigationView - Static variable in class com.tomerrosenfeld.fadingtextview.R.style
-
 
-
Widget_Design_BottomSheet_Modal - Static variable in class com.tomerrosenfeld.fadingtextview.R.style
-
 
-
Widget_Design_CollapsingToolbar - Static variable in class com.tomerrosenfeld.fadingtextview.R.style
-
 
-
Widget_Design_CoordinatorLayout - Static variable in class com.tomerrosenfeld.fadingtextview.R.style
-
 
-
Widget_Design_FloatingActionButton - Static variable in class com.tomerrosenfeld.fadingtextview.R.style
-
 
-
Widget_Design_NavigationView - Static variable in class com.tomerrosenfeld.fadingtextview.R.style
-
 
-
Widget_Design_ScrimInsetsFrameLayout - Static variable in class com.tomerrosenfeld.fadingtextview.R.style
-
 
-
Widget_Design_Snackbar - Static variable in class com.tomerrosenfeld.fadingtextview.R.style
-
 
-
Widget_Design_TabLayout - Static variable in class com.tomerrosenfeld.fadingtextview.R.style
-
 
-
Widget_Design_TextInputLayout - Static variable in class com.tomerrosenfeld.fadingtextview.R.style
-
 
-
Widget_DiscreteIndicatorTextAppearance - Static variable in class com.tomerrosenfeld.fadingtextview.R.style
-
 
-
Widget_DiscreteSeekBar - Static variable in class com.tomerrosenfeld.fadingtextview.R.style
-
 
-
windowActionBar - Static variable in class com.tomer.fadingtextview.R.attr
-
-
Must be a boolean value, either "true" or "false".
-
-
windowActionBar - Static variable in class com.tomerrosenfeld.fadingtextview.R.attr
-
-
Must be a boolean value, either "true" or "false".
-
-
windowActionBarOverlay - Static variable in class com.tomer.fadingtextview.R.attr
-
-
Must be a boolean value, either "true" or "false".
-
-
windowActionBarOverlay - Static variable in class com.tomerrosenfeld.fadingtextview.R.attr
-
-
Must be a boolean value, either "true" or "false".
-
-
windowActionModeOverlay - Static variable in class com.tomer.fadingtextview.R.attr
-
-
Must be a boolean value, either "true" or "false".
-
-
windowActionModeOverlay - Static variable in class com.tomerrosenfeld.fadingtextview.R.attr
-
-
Must be a boolean value, either "true" or "false".
-
-
windowFixedHeightMajor - Static variable in class com.tomer.fadingtextview.R.attr
-
-
May be a dimension value, which is a floating point number appended with a unit such as "14.5sp".
-
-
windowFixedHeightMajor - Static variable in class com.tomerrosenfeld.fadingtextview.R.attr
-
-
May be a dimension value, which is a floating point number appended with a unit such as "14.5sp".
-
-
windowFixedHeightMinor - Static variable in class com.tomer.fadingtextview.R.attr
-
-
May be a dimension value, which is a floating point number appended with a unit such as "14.5sp".
-
-
windowFixedHeightMinor - Static variable in class com.tomerrosenfeld.fadingtextview.R.attr
-
-
May be a dimension value, which is a floating point number appended with a unit such as "14.5sp".
-
-
windowFixedWidthMajor - Static variable in class com.tomer.fadingtextview.R.attr
-
-
May be a dimension value, which is a floating point number appended with a unit such as "14.5sp".
-
-
windowFixedWidthMajor - Static variable in class com.tomerrosenfeld.fadingtextview.R.attr
-
-
May be a dimension value, which is a floating point number appended with a unit such as "14.5sp".
-
-
windowFixedWidthMinor - Static variable in class com.tomer.fadingtextview.R.attr
-
-
May be a dimension value, which is a floating point number appended with a unit such as "14.5sp".
-
-
windowFixedWidthMinor - Static variable in class com.tomerrosenfeld.fadingtextview.R.attr
-
-
May be a dimension value, which is a floating point number appended with a unit such as "14.5sp".
-
-
windowMinWidthMajor - Static variable in class com.tomer.fadingtextview.R.attr
-
-
May be a dimension value, which is a floating point number appended with a unit such as "14.5sp".
-
-
windowMinWidthMajor - Static variable in class com.tomerrosenfeld.fadingtextview.R.attr
-
-
May be a dimension value, which is a floating point number appended with a unit such as "14.5sp".
-
-
windowMinWidthMinor - Static variable in class com.tomer.fadingtextview.R.attr
-
-
May be a dimension value, which is a floating point number appended with a unit such as "14.5sp".
-
-
windowMinWidthMinor - Static variable in class com.tomerrosenfeld.fadingtextview.R.attr
-
-
May be a dimension value, which is a floating point number appended with a unit such as "14.5sp".
-
-
windowNoTitle - Static variable in class com.tomer.fadingtextview.R.attr
-
-
Must be a boolean value, either "true" or "false".
-
-
windowNoTitle - Static variable in class com.tomerrosenfeld.fadingtextview.R.attr
-
-
Must be a boolean value, either "true" or "false".
-
-
withText - Static variable in class com.tomer.fadingtextview.R.id
-
 
-
withText - Static variable in class com.tomerrosenfeld.fadingtextview.R.id
-
 
-
wrap_content - Static variable in class com.tomer.fadingtextview.R.id
-
 
-
wrap_content - Static variable in class com.tomerrosenfeld.fadingtextview.R.id
-
 
-
-A B C D E F G H I K L M N O P Q R S T U V W 
- -
- - - - - - - -
- - - - diff --git a/docs/index-files/index-3.html b/docs/index-files/index-3.html deleted file mode 100644 index f113cd7..0000000 --- a/docs/index-files/index-3.html +++ /dev/null @@ -1,142 +0,0 @@ - - - - - -F-Index - - - - - - - - -
- - - - - - - -
- - -
C D F G M O P R S  - - -

F

-
-
FadingTextView - Class in com.tomer.fadingtextview
-
 
-
FadingTextView(Context) - Constructor for class com.tomer.fadingtextview.FadingTextView
-
 
-
FadingTextView(Context, AttributeSet) - Constructor for class com.tomer.fadingtextview.FadingTextView
-
 
-
FadingTextView(Context, AttributeSet, int) - Constructor for class com.tomer.fadingtextview.FadingTextView
-
 
-
FadingTextView(Context, AttributeSet, int, int) - Constructor for class com.tomer.fadingtextview.FadingTextView
-
 
-
FadingTextView.TimeUnit - Annotation Type in com.tomer.fadingtextview
-
 
-
forceRefresh() - Method in class com.tomer.fadingtextview.FadingTextView
-
-
This method should only be used to forcefully apply timeout changes - It will dismiss the currently queued animation change and start a new animation
-
-
-C D F G M O P R S 
- -
- - - - - - - -
- - - - diff --git a/docs/index-files/index-4.html b/docs/index-files/index-4.html deleted file mode 100644 index 265c67f..0000000 --- a/docs/index-files/index-4.html +++ /dev/null @@ -1,129 +0,0 @@ - - - - - -G-Index - - - - - - - - -
- - - - - - - -
- - -
C D F G M O P R S  - - -

G

-
-
getTexts() - Method in class com.tomer.fadingtextview.FadingTextView
-
-
Get the list of texts
-
-
-C D F G M O P R S 
- -
- - - - - - - -
- - - - diff --git a/docs/index-files/index-5.html b/docs/index-files/index-5.html deleted file mode 100644 index 50d40a0..0000000 --- a/docs/index-files/index-5.html +++ /dev/null @@ -1,129 +0,0 @@ - - - - - -M-Index - - - - - - - - -
- - - - - - - -
- - -
C D F G M O P R S  - - -

M

-
-
MILLISECONDS - Static variable in class com.tomer.fadingtextview.FadingTextView
-
 
-
MINUTES - Static variable in class com.tomer.fadingtextview.FadingTextView
-
 
-
-C D F G M O P R S 
- -
- - - - - - - -
- - - - diff --git a/docs/index-files/index-6.html b/docs/index-files/index-6.html deleted file mode 100644 index 483c898..0000000 --- a/docs/index-files/index-6.html +++ /dev/null @@ -1,129 +0,0 @@ - - - - - -O-Index - - - - - - - - -
- - - - - - - -
- - -
C D F G M O P R S  - - -

O

-
-
onAttachedToWindow() - Method in class com.tomer.fadingtextview.FadingTextView
-
 
-
onDetachedFromWindow() - Method in class com.tomer.fadingtextview.FadingTextView
-
 
-
-C D F G M O P R S 
- -
- - - - - - - -
- - - - diff --git a/docs/index-files/index-7.html b/docs/index-files/index-7.html deleted file mode 100644 index 4fa56f4..0000000 --- a/docs/index-files/index-7.html +++ /dev/null @@ -1,130 +0,0 @@ - - - - - -P-Index - - - - - - - - -
- - - - - - - -
- - -
C D F G M O P R S  - - -

P

-
-
pause() - Method in class com.tomer.fadingtextview.FadingTextView
-
-
Pausing the animation - Should only be used if you notice FadingTextView.onDetachedFromWindow() is not being executed as expected
-
-
-C D F G M O P R S 
- -
- - - - - - - -
- - - - diff --git a/docs/index-files/index-8.html b/docs/index-files/index-8.html deleted file mode 100644 index cee13aa..0000000 --- a/docs/index-files/index-8.html +++ /dev/null @@ -1,135 +0,0 @@ - - - - - -R-Index - - - - - - - - -
- - - - - - - -
- - -
C D F G M O P R S  - - -

R

-
-
restart() - Method in class com.tomer.fadingtextview.FadingTextView
-
-
Restarting the animation - Only use this to restart the animation after stopping it using FadingTextView.stop()
-
-
resume() - Method in class com.tomer.fadingtextview.FadingTextView
-
-
Resuming the animation - Should only be used if you notice FadingTextView.onAttachedToWindow() ()} is not being executed as expected
-
-
-C D F G M O P R S 
- -
- - - - - - - -
- - - - diff --git a/docs/index-files/index-9.html b/docs/index-files/index-9.html deleted file mode 100644 index 4b82064..0000000 --- a/docs/index-files/index-9.html +++ /dev/null @@ -1,162 +0,0 @@ - - - - - -S-Index - - - - - - - - -
- - - - - - - -
- - -
C D F G M O P R S  - - -

S

-
-
SECONDS - Static variable in class com.tomer.fadingtextview.FadingTextView
-
 
-
setTexts(String[]) - Method in class com.tomer.fadingtextview.FadingTextView
-
-
Sets the texts to be shuffled using a string array
-
-
setTexts(int) - Method in class com.tomer.fadingtextview.FadingTextView
-
-
Sets the texts to be shuffled using a string array resource
-
-
setTimeout(int) - Method in class com.tomer.fadingtextview.FadingTextView
-
- -
-
setTimeout(double, int) - Method in class com.tomer.fadingtextview.FadingTextView
-
- -
-
setTimeout(long, TimeUnit) - Method in class com.tomer.fadingtextview.FadingTextView
-
 
-
startAnimation(Animation) - Method in class com.tomer.fadingtextview.FadingTextView
-
-
Start the specified animation now if should
-
-
startAnimation() - Method in class com.tomer.fadingtextview.FadingTextView
-
-
start the animation
-
-
stop() - Method in class com.tomer.fadingtextview.FadingTextView
-
-
Stopping the animation - Unlike the pause function, the stop method will permanently stop the animation until the view is restarted
-
-
-C D F G M O P R S 
- -
- - - - - - - -
- - - - diff --git a/docs/index.html b/docs/index.html index 965234d..ffc73cf 100644 --- a/docs/index.html +++ b/docs/index.html @@ -1,72 +1,91 @@ - - - + + - -Generated Documentation (Untitled) - + + + + + + + + + + + + + + - - - - -<noscript> -<div>JavaScript is disabled on your browser.</div> -</noscript> -<h2>Frame Alert</h2> -<p>This document is designed to be viewed using the frames feature. If you see this message, you are using a non-frame-capable web client. Link to <a href="com/tomer/fadingtextview/package-summary.html">Non-frame version</a>.</p> - - + + +
+
+
+
+
+
+ +
+

fadingtextview

+
+

Packages

+
+
+
+
+
+ + +
Link copied to clipboard
+
+
+
+ +
+
+
+
+
+
+
+
+ +
+
+ diff --git a/docs/navigation.html b/docs/navigation.html new file mode 100644 index 0000000..a5e3c0e --- /dev/null +++ b/docs/navigation.html @@ -0,0 +1,13 @@ + + diff --git a/docs/overview-frame.html b/docs/overview-frame.html deleted file mode 100644 index 5350156..0000000 --- a/docs/overview-frame.html +++ /dev/null @@ -1,22 +0,0 @@ - - - - - -Overview List - - - - - - - -

 

- - diff --git a/docs/overview-summary.html b/docs/overview-summary.html deleted file mode 100644 index 69a201f..0000000 --- a/docs/overview-summary.html +++ /dev/null @@ -1,139 +0,0 @@ - - - - - -Overview - - - - - - - - -
- - - - - - - -
- - -
- - - - - - - - - - - - - - - - -
Packages 
PackageDescription
com.tomer.fadingtextview 
com.tomerrosenfeld.fadingtextview 
-
- -
- - - - - - - -
- - - - diff --git a/docs/overview-tree.html b/docs/overview-tree.html deleted file mode 100644 index 25a6ddf..0000000 --- a/docs/overview-tree.html +++ /dev/null @@ -1,151 +0,0 @@ - - - - - -Class Hierarchy - - - - - - - - - - - -
-

Hierarchy For All Packages

-Package Hierarchies: - -
-
-

Class Hierarchy

-
    -
  • java.lang.Object -
      -
    • android.view.View (implements android.view.accessibility.AccessibilityEventSource, android.graphics.drawable.Drawable.Callback, android.view.KeyEvent.Callback) -
        -
      • android.widget.TextView (implements android.view.ViewTreeObserver.OnPreDrawListener) -
          -
        • android.support.v7.widget.AppCompatTextView (implements android.support.v4.view.TintableBackgroundView) - -
        • -
        -
      • -
      -
    • -
    -
  • -
-

Annotation Type Hierarchy

- -
- - - - - - diff --git a/docs/package-list b/docs/package-list deleted file mode 100644 index 4b1c507..0000000 --- a/docs/package-list +++ /dev/null @@ -1 +0,0 @@ -com.tomer.fadingtextview diff --git a/docs/script.js b/docs/script.js deleted file mode 100644 index b346356..0000000 --- a/docs/script.js +++ /dev/null @@ -1,30 +0,0 @@ -function show(type) -{ - count = 0; - for (var key in methods) { - var row = document.getElementById(key); - if ((methods[key] & type) != 0) { - row.style.display = ''; - row.className = (count++ % 2) ? rowColor : altColor; - } - else - row.style.display = 'none'; - } - updateTabs(type); -} - -function updateTabs(type) -{ - for (var value in tabs) { - var sNode = document.getElementById(tabs[value][0]); - var spanNode = sNode.firstChild; - if (value == type) { - sNode.className = activeTableTab; - spanNode.innerHTML = tabs[value][1]; - } - else { - sNode.className = tableTab; - spanNode.innerHTML = "" + tabs[value][1] + ""; - } - } -} diff --git a/docs/scripts/clipboard.js b/docs/scripts/clipboard.js new file mode 100644 index 0000000..b00ce24 --- /dev/null +++ b/docs/scripts/clipboard.js @@ -0,0 +1,52 @@ +window.addEventListener('load', () => { + document.querySelectorAll('span.copy-icon').forEach(element => { + element.addEventListener('click', (el) => copyElementsContentToClipboard(element)); + }) + + document.querySelectorAll('span.anchor-icon').forEach(element => { + element.addEventListener('click', (el) => { + if(element.hasAttribute('pointing-to')){ + const location = hrefWithoutCurrentlyUsedAnchor() + '#' + element.getAttribute('pointing-to') + copyTextToClipboard(element, location) + } + }); + }) +}) + +const copyElementsContentToClipboard = (element) => { + const selection = window.getSelection(); + const range = document.createRange(); + range.selectNodeContents(element.parentNode.parentNode); + selection.removeAllRanges(); + selection.addRange(range); + + copyAndShowPopup(element, () => selection.removeAllRanges()) +} + +const copyTextToClipboard = (element, text) => { + var textarea = document.createElement("textarea"); + textarea.textContent = text; + textarea.style.position = "fixed"; + document.body.appendChild(textarea); + textarea.select(); + + copyAndShowPopup(element, () => document.body.removeChild(textarea)) +} + +const copyAndShowPopup = (element, after) => { + try { + document.execCommand('copy'); + element.nextElementSibling.classList.add('active-popup'); + setTimeout(() => { + element.nextElementSibling.classList.remove('active-popup'); + }, 1200); + } catch (e) { + console.error('Failed to write to clipboard:', e) + } + finally { + if(after) after() + } +} + +const hrefWithoutCurrentlyUsedAnchor = () => window.location.href.split('#')[0] + diff --git a/docs/scripts/main.js b/docs/scripts/main.js new file mode 100644 index 0000000..ca7ae01 --- /dev/null +++ b/docs/scripts/main.js @@ -0,0 +1,44 @@ +(()=>{var e={8527:e=>{e.exports=''},5570:e=>{e.exports=''},107:e=>{e.exports=''},7224:e=>{e.exports=''},538:e=>{e.exports=''},1924:(e,n,t)=>{"use strict";var r=t(210),o=t(5559),i=o(r("String.prototype.indexOf"));e.exports=function(e,n){var t=r(e,!!n);return"function"==typeof t&&i(e,".prototype.")>-1?o(t):t}},5559:(e,n,t)=>{"use strict";var r=t(8612),o=t(210),i=o("%Function.prototype.apply%"),a=o("%Function.prototype.call%"),l=o("%Reflect.apply%",!0)||r.call(a,i),c=o("%Object.getOwnPropertyDescriptor%",!0),u=o("%Object.defineProperty%",!0),s=o("%Math.max%");if(u)try{u({},"a",{value:1})}catch(e){u=null}e.exports=function(e){var n=l(r,a,arguments);if(c&&u){var t=c(n,"length");t.configurable&&u(n,"length",{value:1+s(0,e.length-(arguments.length-1))})}return n};var f=function(){return l(r,i,arguments)};u?u(e.exports,"apply",{value:f}):e.exports.apply=f},4184:(e,n)=>{var t; +/*! + Copyright (c) 2018 Jed Watson. + Licensed under the MIT License (MIT), see + http://jedwatson.github.io/classnames +*/!function(){"use strict";var r={}.hasOwnProperty;function o(){for(var e=[],n=0;n{"use strict";e.exports=function(e,n){var t=this,r=t.constructor;return t.options=Object.assign({storeInstancesGlobally:!0},n||{}),t.callbacks={},t.directMap={},t.sequenceLevels={},t.resetTimer=null,t.ignoreNextKeyup=!1,t.ignoreNextKeypress=!1,t.nextExpectedAction=!1,t.element=e,t.addEvents(),t.options.storeInstancesGlobally&&r.instances.push(t),t},e.exports.prototype.bind=t(2207),e.exports.prototype.bindMultiple=t(3396),e.exports.prototype.unbind=t(9208),e.exports.prototype.trigger=t(9855),e.exports.prototype.reset=t(6214),e.exports.prototype.stopCallback=t(3450),e.exports.prototype.handleKey=t(3067),e.exports.prototype.addEvents=t(718),e.exports.prototype.bindSingle=t(8763),e.exports.prototype.getKeyInfo=t(5825),e.exports.prototype.pickBestAction=t(8608),e.exports.prototype.getReverseMap=t(3956),e.exports.prototype.getMatches=t(3373),e.exports.prototype.resetSequences=t(3346),e.exports.prototype.fireCallback=t(2684),e.exports.prototype.bindSequence=t(7103),e.exports.prototype.resetSequenceTimer=t(7309),e.exports.prototype.detach=t(7554),e.exports.instances=[],e.exports.reset=t(1822),e.exports.REVERSE_MAP=null},718:(e,n,t)=>{"use strict";e.exports=function(){var e=this,n=t(4323),r=e.element;e.eventHandler=t(9646).bind(e),n(r,"keypress",e.eventHandler),n(r,"keydown",e.eventHandler),n(r,"keyup",e.eventHandler)}},2207:e=>{"use strict";e.exports=function(e,n,t){return e=e instanceof Array?e:[e],this.bindMultiple(e,n,t),this}},3396:e=>{"use strict";e.exports=function(e,n,t){for(var r=0;r{"use strict";e.exports=function(e,n,r,o){var i=this;function a(n){return function(){i.nextExpectedAction=n,++i.sequenceLevels[e],i.resetSequenceTimer()}}function l(n){var a;i.fireCallback(r,n,e),"keyup"!==o&&(a=t(6770),i.ignoreNextKeyup=a(n)),setTimeout((function(){i.resetSequences()}),10)}i.sequenceLevels[e]=0;for(var c=0;c{"use strict";e.exports=function(e,n,t,r,o){var i=this;i.directMap[e+":"+t]=n;var a,l=(e=e.replace(/\s+/g," ")).split(" ");l.length>1?i.bindSequence(e,l,n,t):(a=i.getKeyInfo(e,t),i.callbacks[a.key]=i.callbacks[a.key]||[],i.getMatches(a.key,a.modifiers,{type:a.action},r,e,o),i.callbacks[a.key][r?"unshift":"push"]({callback:n,modifiers:a.modifiers,action:a.action,seq:r,level:o,combo:e}))}},7554:(e,n,t)=>{var r=t(4323).off;e.exports=function(){var e=this,n=e.element;r(n,"keypress",e.eventHandler),r(n,"keydown",e.eventHandler),r(n,"keyup",e.eventHandler)}},4323:e=>{function n(e,n,t,r){return!e.addEventListener&&(n="on"+n),(e.addEventListener||e.attachEvent).call(e,n,t,r),t}e.exports=n,e.exports.on=n,e.exports.off=function(e,n,t,r){return!e.removeEventListener&&(n="on"+n),(e.removeEventListener||e.detachEvent).call(e,n,t,r),t}},2684:(e,n,t)=>{"use strict";e.exports=function(e,n,r,o){this.stopCallback(n,n.target||n.srcElement,r,o)||!1===e(n,r)&&(t(1350)(n),t(6103)(n))}},5825:(e,n,t)=>{"use strict";e.exports=function(e,n){var r,o,i,a,l,c,u=[];for(r=t(4520)(e),a=t(7549),l=t(5355),c=t(8581),i=0;i{"use strict";e.exports=function(e,n,r,o,i,a){var l,c,u,s,f=this,p=[],d=r.type;"keypress"!==d||r.code&&"Arrow"===r.code.slice(0,5)||(f.callbacks["any-character"]||[]).forEach((function(e){p.push(e)}));if(!f.callbacks[e])return p;for(u=t(8581),"keyup"===d&&u(e)&&(n=[e]),l=0;l{"use strict";e.exports=function(){var e,n=this.constructor;if(!n.REVERSE_MAP)for(var r in n.REVERSE_MAP={},e=t(4766))r>95&&r<112||e.hasOwnProperty(r)&&(n.REVERSE_MAP[e[r]]=r);return n.REVERSE_MAP}},3067:(e,n,t)=>{"use strict";e.exports=function(e,n,r){var o,i,a,l,c=this,u={},s=0,f=!1;for(o=c.getMatches(e,n,r),i=0;i{"use strict";e.exports=function(e){var n,r=this;"number"!=typeof e.which&&(e.which=e.keyCode);var o=t(6770)(e);void 0!==o&&("keyup"!==e.type||r.ignoreNextKeyup!==o?(n=t(4610),r.handleKey(o,n(e),e)):r.ignoreNextKeyup=!1)}},5532:e=>{"use strict";e.exports=function(e,n){return e.sort().join(",")===n.sort().join(",")}},8608:e=>{"use strict";e.exports=function(e,n,t){return t||(t=this.getReverseMap()[e]?"keydown":"keypress"),"keypress"===t&&n.length&&(t="keydown"),t}},6214:e=>{"use strict";e.exports=function(){return this.callbacks={},this.directMap={},this}},7309:e=>{"use strict";e.exports=function(){var e=this;clearTimeout(e.resetTimer),e.resetTimer=setTimeout((function(){e.resetSequences()}),1e3)}},3346:e=>{"use strict";e.exports=function(e){var n=this;e=e||{};var t,r=!1;for(t in n.sequenceLevels)e[t]?r=!0:n.sequenceLevels[t]=0;r||(n.nextExpectedAction=!1)}},3450:e=>{"use strict";e.exports=function(e,n){if((" "+n.className+" ").indexOf(" combokeys ")>-1)return!1;var t=n.tagName.toLowerCase();return"input"===t||"select"===t||"textarea"===t||n.isContentEditable}},9855:e=>{"use strict";e.exports=function(e,n){return this.directMap[e+":"+n]&&this.directMap[e+":"+n]({},e),this}},9208:e=>{"use strict";e.exports=function(e,n){return this.bind(e,(function(){}),n)}},1822:e=>{"use strict";e.exports=function(){this.instances.forEach((function(e){e.reset()}))}},6770:(e,n,t)=>{"use strict";e.exports=function(e){var n,r;if(n=t(4766),r=t(5295),"keypress"===e.type){var o=String.fromCharCode(e.which);return e.shiftKey||(o=o.toLowerCase()),o}return void 0!==n[e.which]?n[e.which]:void 0!==r[e.which]?r[e.which]:String.fromCharCode(e.which).toLowerCase()}},4610:e=>{"use strict";e.exports=function(e){var n=[];return e.shiftKey&&n.push("shift"),e.altKey&&n.push("alt"),e.ctrlKey&&n.push("ctrl"),e.metaKey&&n.push("meta"),n}},8581:e=>{"use strict";e.exports=function(e){return"shift"===e||"ctrl"===e||"alt"===e||"meta"===e}},4520:e=>{"use strict";e.exports=function(e){return"+"===e?["+"]:e.split("+")}},1350:e=>{"use strict";e.exports=function(e){e.preventDefault?e.preventDefault():e.returnValue=!1}},5355:e=>{"use strict";e.exports={"~":"`","!":"1","@":"2","#":"3",$:"4","%":"5","^":"6","&":"7","*":"8","(":"9",")":"0",_:"-","+":"=",":":";",'"':"'","<":",",">":".","?":"/","|":"\\"}},7549:e=>{"use strict";e.exports={option:"alt",command:"meta",return:"enter",escape:"esc",mod:/Mac|iPod|iPhone|iPad/.test(navigator.platform)?"meta":"ctrl"}},5295:e=>{"use strict";e.exports={106:"*",107:"plus",109:"minus",110:".",111:"/",186:";",187:"=",188:",",189:"-",190:".",191:"/",192:"`",219:"[",220:"\\",221:"]",222:"'"}},4766:e=>{"use strict";e.exports={8:"backspace",9:"tab",13:"enter",16:"shift",17:"ctrl",18:"alt",20:"capslock",27:"esc",32:"space",33:"pageup",34:"pagedown",35:"end",36:"home",37:"left",38:"up",39:"right",40:"down",45:"ins",46:"del",91:"meta",93:"meta",173:"minus",187:"plus",189:"minus",224:"meta"};for(var n=1;n<20;++n)e.exports[111+n]="f"+n;for(n=0;n<=9;++n)e.exports[n+96]=n},6103:e=>{"use strict";e.exports=function(e){e.stopPropagation?e.stopPropagation():e.cancelBubble=!0}},3362:()=>{var e;!function(){var e=Math.PI,n=2*e,t=e/180,r=document.createElement("div");document.head.appendChild(r);var o=self.ConicGradient=function(e){o.all.push(this),e=e||{},this.canvas=document.createElement("canvas"),this.context=this.canvas.getContext("2d"),this.repeating=!!e.repeating,this.size=e.size||Math.max(innerWidth,innerHeight),this.canvas.width=this.canvas.height=this.size;var n=e.stops;this.stops=(n||"").split(/\s*,(?![^(]*\))\s*/),this.from=0;for(var t=0;t0){var i=this.stops[0].clone();i.pos=0,this.stops.unshift(i)}if(void 0===this.stops[this.stops.length-1].pos)this.stops[this.stops.length-1].pos=1;else if(!this.repeating&&this.stops[this.stops.length-1].pos<1){var a=this.stops[this.stops.length-1].clone();a.pos=1,this.stops.push(a)}if(this.stops.forEach((function(e,n){if(void 0===e.pos){for(var t=n+1;this[t];t++)if(void 0!==this[t].pos){e.pos=this[n-1].pos+(this[t].pos-this[n-1].pos)/(t-n+1);break}}else n>0&&(e.pos=Math.max(e.pos,this[n-1].pos))}),this.stops),this.repeating){var l=(n=this.stops.slice())[n.length-1].pos-n[0].pos;for(t=0;this.stops[this.stops.length-1].pos<1&&t<1e4;t++)for(var c=0;c'},get png(){return this.canvas.toDataURL()},get r(){return Math.sqrt(2)*this.size/2},paint:function(){var e,n,r,o=this.context,i=this.r,a=this.size/2,l=0,c=this.stops[l];o.translate(this.size/2,this.size/2),o.rotate(-90*t),o.rotate(this.from*t),o.translate(-this.size/2,-this.size/2);for(var u=0;u<360;){if(u/360+1e-5>=c.pos){do{e=c,l++,c=this.stops[l]}while(c&&c!=e&&c.pos===e.pos);if(!c)break;var s=e.color+""==c.color+""&&e!=c;n=e.color.map((function(e,n){return c.color[n]-e}))}r=(u/360-e.pos)/(c.pos-e.pos);var f=s?c.color:n.map((function(n,t){var o=n*r+e.color[t];return t<3?255&o:o}));if(o.fillStyle="rgba("+f.join(",")+")",o.beginPath(),o.moveTo(a,a),s)var p=360*(c.pos-e.pos);else p=.5;var d=u*t,h=(d=Math.min(360*t,d))+p*t;h=Math.min(360*t,h+.02),o.arc(a,a,i,d,h),o.closePath(),o.fill(),u+=p}}},o.ColorStop=function(e,t){if(this.gradient=e,t){var r=t.match(/^(.+?)(?:\s+([\d.]+)(%|deg|turn|grad|rad)?)?(?:\s+([\d.]+)(%|deg|turn|grad|rad)?)?\s*$/);if(this.color=o.ColorStop.colorToRGBA(r[1]),r[2]){var i=r[3];"%"==i||"0"===r[2]&&!i?this.pos=r[2]/100:"turn"==i?this.pos=+r[2]:"deg"==i?this.pos=r[2]/360:"grad"==i?this.pos=r[2]/400:"rad"==i&&(this.pos=r[2]/n)}r[4]&&(this.next=new o.ColorStop(e,r[1]+" "+r[4]+r[5]))}},o.ColorStop.prototype={clone:function(){var e=new o.ColorStop(this.gradient);return e.color=this.color,e.pos=this.pos,e},toString:function(){return"rgba("+this.color.join(", ")+") "+100*this.pos+"%"}},o.ColorStop.colorToRGBA=function(e){if(!Array.isArray(e)&&-1==e.indexOf("from")){r.style.color=e;var n=getComputedStyle(r).color.match(/rgba?\(([\d.]+), ([\d.]+), ([\d.]+)(?:, ([\d.]+))?\)/);return n&&(n.shift(),(n=n.map((function(e){return+e})))[3]=isNaN(n[3])?1:n[3]),n||[0,0,0,0]}return e}}(),self.StyleFix&&((e=document.createElement("p")).style.backgroundImage="conic-gradient(white, black)",e.style.backgroundImage=PrefixFree.prefix+"conic-gradient(white, black)",e.style.backgroundImage||StyleFix.register((function(e,n){return e.indexOf("conic-gradient")>-1&&(e=e.replace(/(?:repeating-)?conic-gradient\(\s*((?:\([^()]+\)|[^;()}])+?)\)/g,(function(e,n){return new ConicGradient({stops:n,repeating:e.indexOf("repeating-")>-1})}))),e})))},9662:(e,n,t)=>{var r=t(7854),o=t(614),i=t(6330),a=r.TypeError;e.exports=function(e){if(o(e))return e;throw a(i(e)+" is not a function")}},9483:(e,n,t)=>{var r=t(7854),o=t(4411),i=t(6330),a=r.TypeError;e.exports=function(e){if(o(e))return e;throw a(i(e)+" is not a constructor")}},6077:(e,n,t)=>{var r=t(7854),o=t(614),i=r.String,a=r.TypeError;e.exports=function(e){if("object"==typeof e||o(e))return e;throw a("Can't set "+i(e)+" as a prototype")}},1223:(e,n,t)=>{var r=t(5112),o=t(30),i=t(3070),a=r("unscopables"),l=Array.prototype;null==l[a]&&i.f(l,a,{configurable:!0,value:o(null)}),e.exports=function(e){l[a][e]=!0}},1530:(e,n,t)=>{"use strict";var r=t(8710).charAt;e.exports=function(e,n,t){return n+(t?r(e,n).length:1)}},5787:(e,n,t)=>{var r=t(7854),o=t(7976),i=r.TypeError;e.exports=function(e,n){if(o(n,e))return e;throw i("Incorrect invocation")}},9670:(e,n,t)=>{var r=t(7854),o=t(111),i=r.String,a=r.TypeError;e.exports=function(e){if(o(e))return e;throw a(i(e)+" is not an object")}},7556:(e,n,t)=>{var r=t(7293);e.exports=r((function(){if("function"==typeof ArrayBuffer){var e=new ArrayBuffer(8);Object.isExtensible(e)&&Object.defineProperty(e,"a",{value:8})}}))},8533:(e,n,t)=>{"use strict";var r=t(2092).forEach,o=t(9341)("forEach");e.exports=o?[].forEach:function(e){return r(this,e,arguments.length>1?arguments[1]:void 0)}},8457:(e,n,t)=>{"use strict";var r=t(7854),o=t(9974),i=t(6916),a=t(7908),l=t(3411),c=t(7659),u=t(4411),s=t(6244),f=t(6135),p=t(8554),d=t(1246),h=r.Array;e.exports=function(e){var n=a(e),t=u(this),r=arguments.length,g=r>1?arguments[1]:void 0,v=void 0!==g;v&&(g=o(g,r>2?arguments[2]:void 0));var A,b,m,y,E,_,C=d(n),w=0;if(!C||this==h&&c(C))for(A=s(n),b=t?new this(A):h(A);A>w;w++)_=v?g(n[w],w):n[w],f(b,w,_);else for(E=(y=p(n,C)).next,b=t?new this:[];!(m=i(E,y)).done;w++)_=v?l(y,g,[m.value,w],!0):m.value,f(b,w,_);return b.length=w,b}},1318:(e,n,t)=>{var r=t(5656),o=t(1400),i=t(6244),a=function(e){return function(n,t,a){var l,c=r(n),u=i(c),s=o(a,u);if(e&&t!=t){for(;u>s;)if((l=c[s++])!=l)return!0}else for(;u>s;s++)if((e||s in c)&&c[s]===t)return e||s||0;return!e&&-1}};e.exports={includes:a(!0),indexOf:a(!1)}},2092:(e,n,t)=>{var r=t(9974),o=t(1702),i=t(8361),a=t(7908),l=t(6244),c=t(5417),u=o([].push),s=function(e){var n=1==e,t=2==e,o=3==e,s=4==e,f=6==e,p=7==e,d=5==e||f;return function(h,g,v,A){for(var b,m,y=a(h),E=i(y),_=r(g,v),C=l(E),w=0,x=A||c,k=n?x(h,C):t||p?x(h,0):void 0;C>w;w++)if((d||w in E)&&(m=_(b=E[w],w,y),e))if(n)k[w]=m;else if(m)switch(e){case 3:return!0;case 5:return b;case 6:return w;case 2:u(k,b)}else switch(e){case 4:return!1;case 7:u(k,b)}return f?-1:o||s?s:k}};e.exports={forEach:s(0),map:s(1),filter:s(2),some:s(3),every:s(4),find:s(5),findIndex:s(6),filterReject:s(7)}},1194:(e,n,t)=>{var r=t(7293),o=t(5112),i=t(7392),a=o("species");e.exports=function(e){return i>=51||!r((function(){var n=[];return(n.constructor={})[a]=function(){return{foo:1}},1!==n[e](Boolean).foo}))}},9341:(e,n,t)=>{"use strict";var r=t(7293);e.exports=function(e,n){var t=[][e];return!!t&&r((function(){t.call(null,n||function(){throw 1},1)}))}},3671:(e,n,t)=>{var r=t(7854),o=t(9662),i=t(7908),a=t(8361),l=t(6244),c=r.TypeError,u=function(e){return function(n,t,r,u){o(t);var s=i(n),f=a(s),p=l(s),d=e?p-1:0,h=e?-1:1;if(r<2)for(;;){if(d in f){u=f[d],d+=h;break}if(d+=h,e?d<0:p<=d)throw c("Reduce of empty array with no initial value")}for(;e?d>=0:p>d;d+=h)d in f&&(u=t(u,f[d],d,s));return u}};e.exports={left:u(!1),right:u(!0)}},206:(e,n,t)=>{var r=t(1702);e.exports=r([].slice)},4362:(e,n,t)=>{var r=t(206),o=Math.floor,i=function(e,n){var t=e.length,c=o(t/2);return t<8?a(e,n):l(e,i(r(e,0,c),n),i(r(e,c),n),n)},a=function(e,n){for(var t,r,o=e.length,i=1;i0;)e[r]=e[--r];r!==i++&&(e[r]=t)}return e},l=function(e,n,t,r){for(var o=n.length,i=t.length,a=0,l=0;a{var r=t(7854),o=t(3157),i=t(4411),a=t(111),l=t(5112)("species"),c=r.Array;e.exports=function(e){var n;return o(e)&&(n=e.constructor,(i(n)&&(n===c||o(n.prototype))||a(n)&&null===(n=n[l]))&&(n=void 0)),void 0===n?c:n}},5417:(e,n,t)=>{var r=t(7475);e.exports=function(e,n){return new(r(e))(0===n?0:n)}},3411:(e,n,t)=>{var r=t(9670),o=t(9212);e.exports=function(e,n,t,i){try{return i?n(r(t)[0],t[1]):n(t)}catch(n){o(e,"throw",n)}}},7072:(e,n,t)=>{var r=t(5112)("iterator"),o=!1;try{var i=0,a={next:function(){return{done:!!i++}},return:function(){o=!0}};a[r]=function(){return this},Array.from(a,(function(){throw 2}))}catch(e){}e.exports=function(e,n){if(!n&&!o)return!1;var t=!1;try{var i={};i[r]=function(){return{next:function(){return{done:t=!0}}}},e(i)}catch(e){}return t}},4326:(e,n,t)=>{var r=t(1702),o=r({}.toString),i=r("".slice);e.exports=function(e){return i(o(e),8,-1)}},648:(e,n,t)=>{var r=t(7854),o=t(1694),i=t(614),a=t(4326),l=t(5112)("toStringTag"),c=r.Object,u="Arguments"==a(function(){return arguments}());e.exports=o?a:function(e){var n,t,r;return void 0===e?"Undefined":null===e?"Null":"string"==typeof(t=function(e,n){try{return e[n]}catch(e){}}(n=c(e),l))?t:u?a(n):"Object"==(r=a(n))&&i(n.callee)?"Arguments":r}},5631:(e,n,t)=>{"use strict";var r=t(3070).f,o=t(30),i=t(2248),a=t(9974),l=t(5787),c=t(408),u=t(654),s=t(6340),f=t(9781),p=t(2423).fastKey,d=t(9909),h=d.set,g=d.getterFor;e.exports={getConstructor:function(e,n,t,u){var s=e((function(e,r){l(e,d),h(e,{type:n,index:o(null),first:void 0,last:void 0,size:0}),f||(e.size=0),null!=r&&c(r,e[u],{that:e,AS_ENTRIES:t})})),d=s.prototype,v=g(n),A=function(e,n,t){var r,o,i=v(e),a=b(e,n);return a?a.value=t:(i.last=a={index:o=p(n,!0),key:n,value:t,previous:r=i.last,next:void 0,removed:!1},i.first||(i.first=a),r&&(r.next=a),f?i.size++:e.size++,"F"!==o&&(i.index[o]=a)),e},b=function(e,n){var t,r=v(e),o=p(n);if("F"!==o)return r.index[o];for(t=r.first;t;t=t.next)if(t.key==n)return t};return i(d,{clear:function(){for(var e=v(this),n=e.index,t=e.first;t;)t.removed=!0,t.previous&&(t.previous=t.previous.next=void 0),delete n[t.index],t=t.next;e.first=e.last=void 0,f?e.size=0:this.size=0},delete:function(e){var n=this,t=v(n),r=b(n,e);if(r){var o=r.next,i=r.previous;delete t.index[r.index],r.removed=!0,i&&(i.next=o),o&&(o.previous=i),t.first==r&&(t.first=o),t.last==r&&(t.last=i),f?t.size--:n.size--}return!!r},forEach:function(e){for(var n,t=v(this),r=a(e,arguments.length>1?arguments[1]:void 0);n=n?n.next:t.first;)for(r(n.value,n.key,this);n&&n.removed;)n=n.previous},has:function(e){return!!b(this,e)}}),i(d,t?{get:function(e){var n=b(this,e);return n&&n.value},set:function(e,n){return A(this,0===e?0:e,n)}}:{add:function(e){return A(this,e=0===e?0:e,e)}}),f&&r(d,"size",{get:function(){return v(this).size}}),s},setStrong:function(e,n,t){var r=n+" Iterator",o=g(n),i=g(r);u(e,n,(function(e,n){h(this,{type:r,target:e,state:o(e),kind:n,last:void 0})}),(function(){for(var e=i(this),n=e.kind,t=e.last;t&&t.removed;)t=t.previous;return e.target&&(e.last=t=t?t.next:e.state.first)?"keys"==n?{value:t.key,done:!1}:"values"==n?{value:t.value,done:!1}:{value:[t.key,t.value],done:!1}:(e.target=void 0,{value:void 0,done:!0})}),t?"entries":"values",!t,!0),s(n)}}},9320:(e,n,t)=>{"use strict";var r=t(1702),o=t(2248),i=t(2423).getWeakData,a=t(9670),l=t(111),c=t(5787),u=t(408),s=t(2092),f=t(2597),p=t(9909),d=p.set,h=p.getterFor,g=s.find,v=s.findIndex,A=r([].splice),b=0,m=function(e){return e.frozen||(e.frozen=new y)},y=function(){this.entries=[]},E=function(e,n){return g(e.entries,(function(e){return e[0]===n}))};y.prototype={get:function(e){var n=E(this,e);if(n)return n[1]},has:function(e){return!!E(this,e)},set:function(e,n){var t=E(this,e);t?t[1]=n:this.entries.push([e,n])},delete:function(e){var n=v(this.entries,(function(n){return n[0]===e}));return~n&&A(this.entries,n,1),!!~n}},e.exports={getConstructor:function(e,n,t,r){var s=e((function(e,o){c(e,p),d(e,{type:n,id:b++,frozen:void 0}),null!=o&&u(o,e[r],{that:e,AS_ENTRIES:t})})),p=s.prototype,g=h(n),v=function(e,n,t){var r=g(e),o=i(a(n),!0);return!0===o?m(r).set(n,t):o[r.id]=t,e};return o(p,{delete:function(e){var n=g(this);if(!l(e))return!1;var t=i(e);return!0===t?m(n).delete(e):t&&f(t,n.id)&&delete t[n.id]},has:function(e){var n=g(this);if(!l(e))return!1;var t=i(e);return!0===t?m(n).has(e):t&&f(t,n.id)}}),o(p,t?{get:function(e){var n=g(this);if(l(e)){var t=i(e);return!0===t?m(n).get(e):t?t[n.id]:void 0}},set:function(e,n){return v(this,e,n)}}:{add:function(e){return v(this,e,!0)}}),s}}},7710:(e,n,t)=>{"use strict";var r=t(2109),o=t(7854),i=t(1702),a=t(4705),l=t(1320),c=t(2423),u=t(408),s=t(5787),f=t(614),p=t(111),d=t(7293),h=t(7072),g=t(8003),v=t(9587);e.exports=function(e,n,t){var A=-1!==e.indexOf("Map"),b=-1!==e.indexOf("Weak"),m=A?"set":"add",y=o[e],E=y&&y.prototype,_=y,C={},w=function(e){var n=i(E[e]);l(E,e,"add"==e?function(e){return n(this,0===e?0:e),this}:"delete"==e?function(e){return!(b&&!p(e))&&n(this,0===e?0:e)}:"get"==e?function(e){return b&&!p(e)?void 0:n(this,0===e?0:e)}:"has"==e?function(e){return!(b&&!p(e))&&n(this,0===e?0:e)}:function(e,t){return n(this,0===e?0:e,t),this})};if(a(e,!f(y)||!(b||E.forEach&&!d((function(){(new y).entries().next()})))))_=t.getConstructor(n,e,A,m),c.enable();else if(a(e,!0)){var x=new _,k=x[m](b?{}:-0,1)!=x,S=d((function(){x.has(1)})),O=h((function(e){new y(e)})),B=!b&&d((function(){for(var e=new y,n=5;n--;)e[m](n,n);return!e.has(-0)}));O||((_=n((function(e,n){s(e,E);var t=v(new y,e,_);return null!=n&&u(n,t[m],{that:t,AS_ENTRIES:A}),t}))).prototype=E,E.constructor=_),(S||B)&&(w("delete"),w("has"),A&&w("get")),(B||k)&&w(m),b&&E.clear&&delete E.clear}return C[e]=_,r({global:!0,forced:_!=y},C),g(_,e),b||t.setStrong(_,e,A),_}},9920:(e,n,t)=>{var r=t(2597),o=t(3887),i=t(1236),a=t(3070);e.exports=function(e,n){for(var t=o(n),l=a.f,c=i.f,u=0;u{var r=t(5112)("match");e.exports=function(e){var n=/./;try{"/./"[e](n)}catch(t){try{return n[r]=!1,"/./"[e](n)}catch(e){}}return!1}},8544:(e,n,t)=>{var r=t(7293);e.exports=!r((function(){function e(){}return e.prototype.constructor=null,Object.getPrototypeOf(new e)!==e.prototype}))},4230:(e,n,t)=>{var r=t(1702),o=t(4488),i=t(1340),a=/"/g,l=r("".replace);e.exports=function(e,n,t,r){var c=i(o(e)),u="<"+n;return""!==t&&(u+=" "+t+'="'+l(i(r),a,""")+'"'),u+">"+c+""}},4994:(e,n,t)=>{"use strict";var r=t(3383).IteratorPrototype,o=t(30),i=t(9114),a=t(8003),l=t(7497),c=function(){return this};e.exports=function(e,n,t){var u=n+" Iterator";return e.prototype=o(r,{next:i(1,t)}),a(e,u,!1,!0),l[u]=c,e}},8880:(e,n,t)=>{var r=t(9781),o=t(3070),i=t(9114);e.exports=r?function(e,n,t){return o.f(e,n,i(1,t))}:function(e,n,t){return e[n]=t,e}},9114:e=>{e.exports=function(e,n){return{enumerable:!(1&e),configurable:!(2&e),writable:!(4&e),value:n}}},6135:(e,n,t)=>{"use strict";var r=t(4948),o=t(3070),i=t(9114);e.exports=function(e,n,t){var a=r(n);a in e?o.f(e,a,i(0,t)):e[a]=t}},8709:(e,n,t)=>{"use strict";var r=t(7854),o=t(9670),i=t(2140),a=r.TypeError;e.exports=function(e){if(o(this),"string"===e||"default"===e)e="string";else if("number"!==e)throw a("Incorrect hint");return i(this,e)}},654:(e,n,t)=>{"use strict";var r=t(2109),o=t(6916),i=t(1913),a=t(6530),l=t(614),c=t(4994),u=t(9518),s=t(7674),f=t(8003),p=t(8880),d=t(1320),h=t(5112),g=t(7497),v=t(3383),A=a.PROPER,b=a.CONFIGURABLE,m=v.IteratorPrototype,y=v.BUGGY_SAFARI_ITERATORS,E=h("iterator"),_="keys",C="values",w="entries",x=function(){return this};e.exports=function(e,n,t,a,h,v,k){c(t,n,a);var S,O,B,I=function(e){if(e===h&&R)return R;if(!y&&e in j)return j[e];switch(e){case _:case C:case w:return function(){return new t(this,e)}}return function(){return new t(this)}},T=n+" Iterator",P=!1,j=e.prototype,z=j[E]||j["@@iterator"]||h&&j[h],R=!y&&z||I(h),M="Array"==n&&j.entries||z;if(M&&(S=u(M.call(new e)))!==Object.prototype&&S.next&&(i||u(S)===m||(s?s(S,m):l(S[E])||d(S,E,x)),f(S,T,!0,!0),i&&(g[T]=x)),A&&h==C&&z&&z.name!==C&&(!i&&b?p(j,"name",C):(P=!0,R=function(){return o(z,this)})),h)if(O={values:I(C),keys:v?R:I(_),entries:I(w)},k)for(B in O)(y||P||!(B in j))&&d(j,B,O[B]);else r({target:n,proto:!0,forced:y||P},O);return i&&!k||j[E]===R||d(j,E,R,{name:h}),g[n]=R,O}},7235:(e,n,t)=>{var r=t(857),o=t(2597),i=t(6061),a=t(3070).f;e.exports=function(e){var n=r.Symbol||(r.Symbol={});o(n,e)||a(n,e,{value:i.f(e)})}},9781:(e,n,t)=>{var r=t(7293);e.exports=!r((function(){return 7!=Object.defineProperty({},1,{get:function(){return 7}})[1]}))},317:(e,n,t)=>{var r=t(7854),o=t(111),i=r.document,a=o(i)&&o(i.createElement);e.exports=function(e){return a?i.createElement(e):{}}},8324:e=>{e.exports={CSSRuleList:0,CSSStyleDeclaration:0,CSSValueList:0,ClientRectList:0,DOMRectList:0,DOMStringList:0,DOMTokenList:1,DataTransferItemList:0,FileList:0,HTMLAllCollection:0,HTMLCollection:0,HTMLFormElement:0,HTMLSelectElement:0,MediaList:0,MimeTypeArray:0,NamedNodeMap:0,NodeList:1,PaintRequestList:0,Plugin:0,PluginArray:0,SVGLengthList:0,SVGNumberList:0,SVGPathSegList:0,SVGPointList:0,SVGStringList:0,SVGTransformList:0,SourceBufferList:0,StyleSheetList:0,TextTrackCueList:0,TextTrackList:0,TouchList:0}},8509:(e,n,t)=>{var r=t(317)("span").classList,o=r&&r.constructor&&r.constructor.prototype;e.exports=o===Object.prototype?void 0:o},8886:(e,n,t)=>{var r=t(8113).match(/firefox\/(\d+)/i);e.exports=!!r&&+r[1]},256:(e,n,t)=>{var r=t(8113);e.exports=/MSIE|Trident/.test(r)},5268:(e,n,t)=>{var r=t(4326),o=t(7854);e.exports="process"==r(o.process)},8113:(e,n,t)=>{var r=t(5005);e.exports=r("navigator","userAgent")||""},7392:(e,n,t)=>{var r,o,i=t(7854),a=t(8113),l=i.process,c=i.Deno,u=l&&l.versions||c&&c.version,s=u&&u.v8;s&&(o=(r=s.split("."))[0]>0&&r[0]<4?1:+(r[0]+r[1])),!o&&a&&(!(r=a.match(/Edge\/(\d+)/))||r[1]>=74)&&(r=a.match(/Chrome\/(\d+)/))&&(o=+r[1]),e.exports=o},8008:(e,n,t)=>{var r=t(8113).match(/AppleWebKit\/(\d+)\./);e.exports=!!r&&+r[1]},748:e=>{e.exports=["constructor","hasOwnProperty","isPrototypeOf","propertyIsEnumerable","toLocaleString","toString","valueOf"]},2109:(e,n,t)=>{var r=t(7854),o=t(1236).f,i=t(8880),a=t(1320),l=t(3505),c=t(9920),u=t(4705);e.exports=function(e,n){var t,s,f,p,d,h=e.target,g=e.global,v=e.stat;if(t=g?r:v?r[h]||l(h,{}):(r[h]||{}).prototype)for(s in n){if(p=n[s],f=e.noTargetGet?(d=o(t,s))&&d.value:t[s],!u(g?s:h+(v?".":"#")+s,e.forced)&&void 0!==f){if(typeof p==typeof f)continue;c(p,f)}(e.sham||f&&f.sham)&&i(p,"sham",!0),a(t,s,p,e)}}},7293:e=>{e.exports=function(e){try{return!!e()}catch(e){return!0}}},7007:(e,n,t)=>{"use strict";t(4916);var r=t(1702),o=t(1320),i=t(2261),a=t(7293),l=t(5112),c=t(8880),u=l("species"),s=RegExp.prototype;e.exports=function(e,n,t,f){var p=l(e),d=!a((function(){var n={};return n[p]=function(){return 7},7!=""[e](n)})),h=d&&!a((function(){var n=!1,t=/a/;return"split"===e&&((t={}).constructor={},t.constructor[u]=function(){return t},t.flags="",t[p]=/./[p]),t.exec=function(){return n=!0,null},t[p](""),!n}));if(!d||!h||t){var g=r(/./[p]),v=n(p,""[e],(function(e,n,t,o,a){var l=r(e),c=n.exec;return c===i||c===s.exec?d&&!a?{done:!0,value:g(n,t,o)}:{done:!0,value:l(t,n,o)}:{done:!1}}));o(String.prototype,e,v[0]),o(s,p,v[1])}f&&c(s[p],"sham",!0)}},6677:(e,n,t)=>{var r=t(7293);e.exports=!r((function(){return Object.isExtensible(Object.preventExtensions({}))}))},2104:e=>{var n=Function.prototype,t=n.apply,r=n.bind,o=n.call;e.exports="object"==typeof Reflect&&Reflect.apply||(r?o.bind(t):function(){return o.apply(t,arguments)})},9974:(e,n,t)=>{var r=t(1702),o=t(9662),i=r(r.bind);e.exports=function(e,n){return o(e),void 0===n?e:i?i(e,n):function(){return e.apply(n,arguments)}}},7065:(e,n,t)=>{"use strict";var r=t(7854),o=t(1702),i=t(9662),a=t(111),l=t(2597),c=t(206),u=r.Function,s=o([].concat),f=o([].join),p={},d=function(e,n,t){if(!l(p,n)){for(var r=[],o=0;o{var n=Function.prototype.call;e.exports=n.bind?n.bind(n):function(){return n.apply(n,arguments)}},6530:(e,n,t)=>{var r=t(9781),o=t(2597),i=Function.prototype,a=r&&Object.getOwnPropertyDescriptor,l=o(i,"name"),c=l&&"something"===function(){}.name,u=l&&(!r||r&&a(i,"name").configurable);e.exports={EXISTS:l,PROPER:c,CONFIGURABLE:u}},1702:e=>{var n=Function.prototype,t=n.bind,r=n.call,o=t&&t.bind(r);e.exports=t?function(e){return e&&o(r,e)}:function(e){return e&&function(){return r.apply(e,arguments)}}},5005:(e,n,t)=>{var r=t(7854),o=t(614),i=function(e){return o(e)?e:void 0};e.exports=function(e,n){return arguments.length<2?i(r[e]):r[e]&&r[e][n]}},1246:(e,n,t)=>{var r=t(648),o=t(8173),i=t(7497),a=t(5112)("iterator");e.exports=function(e){if(null!=e)return o(e,a)||o(e,"@@iterator")||i[r(e)]}},8554:(e,n,t)=>{var r=t(7854),o=t(6916),i=t(9662),a=t(9670),l=t(6330),c=t(1246),u=r.TypeError;e.exports=function(e,n){var t=arguments.length<2?c(e):n;if(i(t))return a(o(t,e));throw u(l(e)+" is not iterable")}},8173:(e,n,t)=>{var r=t(9662);e.exports=function(e,n){var t=e[n];return null==t?void 0:r(t)}},647:(e,n,t)=>{var r=t(1702),o=t(7908),i=Math.floor,a=r("".charAt),l=r("".replace),c=r("".slice),u=/\$([$&'`]|\d{1,2}|<[^>]*>)/g,s=/\$([$&'`]|\d{1,2})/g;e.exports=function(e,n,t,r,f,p){var d=t+e.length,h=r.length,g=s;return void 0!==f&&(f=o(f),g=u),l(p,g,(function(o,l){var u;switch(a(l,0)){case"$":return"$";case"&":return e;case"`":return c(n,0,t);case"'":return c(n,d);case"<":u=f[c(l,1,-1)];break;default:var s=+l;if(0===s)return o;if(s>h){var p=i(s/10);return 0===p?o:p<=h?void 0===r[p-1]?a(l,1):r[p-1]+a(l,1):o}u=r[s-1]}return void 0===u?"":u}))}},7854:(e,n,t)=>{var r=function(e){return e&&e.Math==Math&&e};e.exports=r("object"==typeof globalThis&&globalThis)||r("object"==typeof window&&window)||r("object"==typeof self&&self)||r("object"==typeof t.g&&t.g)||function(){return this}()||Function("return this")()},2597:(e,n,t)=>{var r=t(1702),o=t(7908),i=r({}.hasOwnProperty);e.exports=Object.hasOwn||function(e,n){return i(o(e),n)}},3501:e=>{e.exports={}},490:(e,n,t)=>{var r=t(5005);e.exports=r("document","documentElement")},4664:(e,n,t)=>{var r=t(9781),o=t(7293),i=t(317);e.exports=!r&&!o((function(){return 7!=Object.defineProperty(i("div"),"a",{get:function(){return 7}}).a}))},8361:(e,n,t)=>{var r=t(7854),o=t(1702),i=t(7293),a=t(4326),l=r.Object,c=o("".split);e.exports=i((function(){return!l("z").propertyIsEnumerable(0)}))?function(e){return"String"==a(e)?c(e,""):l(e)}:l},9587:(e,n,t)=>{var r=t(614),o=t(111),i=t(7674);e.exports=function(e,n,t){var a,l;return i&&r(a=n.constructor)&&a!==t&&o(l=a.prototype)&&l!==t.prototype&&i(e,l),e}},2788:(e,n,t)=>{var r=t(1702),o=t(614),i=t(5465),a=r(Function.toString);o(i.inspectSource)||(i.inspectSource=function(e){return a(e)}),e.exports=i.inspectSource},2423:(e,n,t)=>{var r=t(2109),o=t(1702),i=t(3501),a=t(111),l=t(2597),c=t(3070).f,u=t(8006),s=t(1156),f=t(2050),p=t(9711),d=t(6677),h=!1,g=p("meta"),v=0,A=function(e){c(e,g,{value:{objectID:"O"+v++,weakData:{}}})},b=e.exports={enable:function(){b.enable=function(){},h=!0;var e=u.f,n=o([].splice),t={};t[g]=1,e(t).length&&(u.f=function(t){for(var r=e(t),o=0,i=r.length;o{var r,o,i,a=t(8536),l=t(7854),c=t(1702),u=t(111),s=t(8880),f=t(2597),p=t(5465),d=t(6200),h=t(3501),g="Object already initialized",v=l.TypeError,A=l.WeakMap;if(a||p.state){var b=p.state||(p.state=new A),m=c(b.get),y=c(b.has),E=c(b.set);r=function(e,n){if(y(b,e))throw new v(g);return n.facade=e,E(b,e,n),n},o=function(e){return m(b,e)||{}},i=function(e){return y(b,e)}}else{var _=d("state");h[_]=!0,r=function(e,n){if(f(e,_))throw new v(g);return n.facade=e,s(e,_,n),n},o=function(e){return f(e,_)?e[_]:{}},i=function(e){return f(e,_)}}e.exports={set:r,get:o,has:i,enforce:function(e){return i(e)?o(e):r(e,{})},getterFor:function(e){return function(n){var t;if(!u(n)||(t=o(n)).type!==e)throw v("Incompatible receiver, "+e+" required");return t}}}},7659:(e,n,t)=>{var r=t(5112),o=t(7497),i=r("iterator"),a=Array.prototype;e.exports=function(e){return void 0!==e&&(o.Array===e||a[i]===e)}},3157:(e,n,t)=>{var r=t(4326);e.exports=Array.isArray||function(e){return"Array"==r(e)}},614:e=>{e.exports=function(e){return"function"==typeof e}},4411:(e,n,t)=>{var r=t(1702),o=t(7293),i=t(614),a=t(648),l=t(5005),c=t(2788),u=function(){},s=[],f=l("Reflect","construct"),p=/^\s*(?:class|function)\b/,d=r(p.exec),h=!p.exec(u),g=function(e){if(!i(e))return!1;try{return f(u,s,e),!0}catch(e){return!1}};e.exports=!f||o((function(){var e;return g(g.call)||!g(Object)||!g((function(){e=!0}))||e}))?function(e){if(!i(e))return!1;switch(a(e)){case"AsyncFunction":case"GeneratorFunction":case"AsyncGeneratorFunction":return!1}return h||!!d(p,c(e))}:g},4705:(e,n,t)=>{var r=t(7293),o=t(614),i=/#|\.prototype\./,a=function(e,n){var t=c[l(e)];return t==s||t!=u&&(o(n)?r(n):!!n)},l=a.normalize=function(e){return String(e).replace(i,".").toLowerCase()},c=a.data={},u=a.NATIVE="N",s=a.POLYFILL="P";e.exports=a},111:(e,n,t)=>{var r=t(614);e.exports=function(e){return"object"==typeof e?null!==e:r(e)}},1913:e=>{e.exports=!1},7850:(e,n,t)=>{var r=t(111),o=t(4326),i=t(5112)("match");e.exports=function(e){var n;return r(e)&&(void 0!==(n=e[i])?!!n:"RegExp"==o(e))}},2190:(e,n,t)=>{var r=t(7854),o=t(5005),i=t(614),a=t(7976),l=t(3307),c=r.Object;e.exports=l?function(e){return"symbol"==typeof e}:function(e){var n=o("Symbol");return i(n)&&a(n.prototype,c(e))}},408:(e,n,t)=>{var r=t(7854),o=t(9974),i=t(6916),a=t(9670),l=t(6330),c=t(7659),u=t(6244),s=t(7976),f=t(8554),p=t(1246),d=t(9212),h=r.TypeError,g=function(e,n){this.stopped=e,this.result=n},v=g.prototype;e.exports=function(e,n,t){var r,A,b,m,y,E,_,C=t&&t.that,w=!(!t||!t.AS_ENTRIES),x=!(!t||!t.IS_ITERATOR),k=!(!t||!t.INTERRUPTED),S=o(n,C),O=function(e){return r&&d(r,"normal",e),new g(!0,e)},B=function(e){return w?(a(e),k?S(e[0],e[1],O):S(e[0],e[1])):k?S(e,O):S(e)};if(x)r=e;else{if(!(A=p(e)))throw h(l(e)+" is not iterable");if(c(A)){for(b=0,m=u(e);m>b;b++)if((y=B(e[b]))&&s(v,y))return y;return new g(!1)}r=f(e,A)}for(E=r.next;!(_=i(E,r)).done;){try{y=B(_.value)}catch(e){d(r,"throw",e)}if("object"==typeof y&&y&&s(v,y))return y}return new g(!1)}},9212:(e,n,t)=>{var r=t(6916),o=t(9670),i=t(8173);e.exports=function(e,n,t){var a,l;o(e);try{if(!(a=i(e,"return"))){if("throw"===n)throw t;return t}a=r(a,e)}catch(e){l=!0,a=e}if("throw"===n)throw t;if(l)throw a;return o(a),t}},3383:(e,n,t)=>{"use strict";var r,o,i,a=t(7293),l=t(614),c=t(30),u=t(9518),s=t(1320),f=t(5112),p=t(1913),d=f("iterator"),h=!1;[].keys&&("next"in(i=[].keys())?(o=u(u(i)))!==Object.prototype&&(r=o):h=!0),null==r||a((function(){var e={};return r[d].call(e)!==e}))?r={}:p&&(r=c(r)),l(r[d])||s(r,d,(function(){return this})),e.exports={IteratorPrototype:r,BUGGY_SAFARI_ITERATORS:h}},7497:e=>{e.exports={}},6244:(e,n,t)=>{var r=t(7466);e.exports=function(e){return r(e.length)}},133:(e,n,t)=>{var r=t(7392),o=t(7293);e.exports=!!Object.getOwnPropertySymbols&&!o((function(){var e=Symbol();return!String(e)||!(Object(e)instanceof Symbol)||!Symbol.sham&&r&&r<41}))},8536:(e,n,t)=>{var r=t(7854),o=t(614),i=t(2788),a=r.WeakMap;e.exports=o(a)&&/native code/.test(i(a))},3929:(e,n,t)=>{var r=t(7854),o=t(7850),i=r.TypeError;e.exports=function(e){if(o(e))throw i("The method doesn't accept regular expressions");return e}},1574:(e,n,t)=>{"use strict";var r=t(9781),o=t(1702),i=t(6916),a=t(7293),l=t(1956),c=t(5181),u=t(5296),s=t(7908),f=t(8361),p=Object.assign,d=Object.defineProperty,h=o([].concat);e.exports=!p||a((function(){if(r&&1!==p({b:1},p(d({},"a",{enumerable:!0,get:function(){d(this,"b",{value:3,enumerable:!1})}}),{b:2})).b)return!0;var e={},n={},t=Symbol(),o="abcdefghijklmnopqrst";return e[t]=7,o.split("").forEach((function(e){n[e]=e})),7!=p({},e)[t]||l(p({},n)).join("")!=o}))?function(e,n){for(var t=s(e),o=arguments.length,a=1,p=c.f,d=u.f;o>a;)for(var g,v=f(arguments[a++]),A=p?h(l(v),p(v)):l(v),b=A.length,m=0;b>m;)g=A[m++],r&&!i(d,v,g)||(t[g]=v[g]);return t}:p},30:(e,n,t)=>{var r,o=t(9670),i=t(6048),a=t(748),l=t(3501),c=t(490),u=t(317),s=t(6200),f=s("IE_PROTO"),p=function(){},d=function(e){return"