Searched refs:autoSizeTextType (Results 1 - 7 of 7) sorted by relevance

/frameworks/support/compat/java/android/support/v4/widget/
H A DAutoSizeableTextView.java44 * @param autoSizeTextType the type of auto-size. Must be one of
50 void setAutoSizeTextTypeWithDefaults(@TextViewCompat.AutoSizeTextType int autoSizeTextType); argument
H A DTextViewCompat.java162 public void setAutoSizeTextTypeWithDefaults(TextView textView, int autoSizeTextType) { argument
164 ((AutoSizeableTextView) textView).setAutoSizeTextTypeWithDefaults(autoSizeTextType);
320 public void setAutoSizeTextTypeWithDefaults(TextView textView, int autoSizeTextType) { argument
321 textView.setAutoSizeTextTypeWithDefaults(autoSizeTextType);
490 * @param autoSizeTextType the type of auto-size. Must be one of
494 * @attr name android:autoSizeTextType
496 public static void setAutoSizeTextTypeWithDefaults(TextView textView, int autoSizeTextType) { argument
497 IMPL.setAutoSizeTextTypeWithDefaults(textView, autoSizeTextType);
515 * @attr name android:autoSizeTextType
516 * @attr name android:autoSizeTextType
[all...]
/frameworks/support/v7/appcompat/src/android/support/v7/widget/
H A DAppCompatButton.java217 @TextViewCompat.AutoSizeTextType int autoSizeTextType) {
219 super.setAutoSizeTextTypeWithDefaults(autoSizeTextType);
222 mTextHelper.setAutoSizeTextTypeWithDefaults(autoSizeTextType);
216 setAutoSizeTextTypeWithDefaults( @extViewCompat.AutoSizeTextType int autoSizeTextType) argument
H A DAppCompatTextView.java47 * style attributes associated with auto-sizing are {@link R.attr#autoSizeTextType},
212 @TextViewCompat.AutoSizeTextType int autoSizeTextType) {
214 super.setAutoSizeTextTypeWithDefaults(autoSizeTextType);
217 mTextHelper.setAutoSizeTextTypeWithDefaults(autoSizeTextType);
211 setAutoSizeTextTypeWithDefaults( @extViewCompat.AutoSizeTextType int autoSizeTextType) argument
H A DAppCompatTextViewAutoSizeHelper.java184 * @param autoSizeTextType the type of auto-size. Must be one of
195 void setAutoSizeTextTypeWithDefaults(@TextViewCompat.AutoSizeTextType int autoSizeTextType) { argument
197 switch (autoSizeTextType) {
223 "Unknown auto-size text type: " + autoSizeTextType);
H A DAppCompatTextHelper.java343 void setAutoSizeTextTypeWithDefaults(@TextViewCompat.AutoSizeTextType int autoSizeTextType) { argument
344 mAutoSizeTextHelper.setAutoSizeTextTypeWithDefaults(autoSizeTextType);
/frameworks/base/core/java/android/widget/
H A DTextView.java1731 * @param autoSizeTextType the type of auto-size. Must be one of
1735 * @throws IllegalArgumentException if <code>autoSizeTextType</code> is none of the types above.
1741 public void setAutoSizeTextTypeWithDefaults(@AutoSizeTextType int autoSizeTextType) { argument
1743 switch (autoSizeTextType) {
1769 "Unknown auto-size text type: " + autoSizeTextType);

Completed in 106 milliseconds