Skip to content

Commit 2c35da6

Browse files
Fixed CTOR
1 parent ce834ac commit 2c35da6

File tree

3 files changed

+9
-3
lines changed

3 files changed

+9
-3
lines changed

.idea/misc.xml

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

.idea/vcs.xml

Lines changed: 6 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

AutoFitTextViewLibrary/src/com/lb/auto_fit_textview/AutoResizeTextView.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -42,11 +42,11 @@ private interface SizeTester {
4242
}
4343

4444
public AutoResizeTextView(final Context context) {
45-
this(context, null, 0);
45+
this(context, null, android.R.attr.textViewStyle);
4646
}
4747

4848
public AutoResizeTextView(final Context context, final AttributeSet attrs) {
49-
this(context, attrs, 0);
49+
this(context, attrs, android.R.attr.textViewStyle);
5050
}
5151

5252
public AutoResizeTextView(final Context context, final AttributeSet attrs, final int defStyle) {

0 commit comments

Comments
 (0)