Results 19 comments of tcqq

If extends is AppCompatButton is better chose, because in future google may add more useful properties in AppCompatButton

“fb_textFont” in the android studio preview interface can not be previewed normally Fonts that

Turning `Profile` into Kotlin will solve this issue. ``` @Parcelize data class Profile( val id: Int, val avatarUri: String?, val avatarRes: Int, val backgroundUri: String?, val backgroundRes: Int, val username:...

I used this method to solve the above problem, But is there an easier way to solve the above problem? ``` ExpectAnim mShowAnim; ExpectAnim mHideAnim; boolean mIsShowAnim; boolean mIsHideAnim; private...

@color/colorPrimary @color/colorPrimaryDark @color/colorAccent @color/grey_900

When I remove color primary/primarydark/accent from the theme, but now color of the interface are not using ThemeColor.GREEN and ThemeColor.BLUE, now color is the default color of "Theme.AppCompat.Light.NoActionBar".

When I remove the parent item, the default color is now correct. But when I dynamically change `setCustomThemeOverride`, the `textColorPrimary` color does not work. ``` Colorful().edit() .setPrimaryColor(ThemeColor.RED) .setAccentColor(ThemeColor.BLUE) .setDarkTheme(false) .setCustomThemeOverride(R.style.AppThemeNight)...

After switching theme - ![tim 20180617155028](https://user-images.githubusercontent.com/10644057/41505950-4e70b246-7246-11e8-9e60-ce1c72903ad5.png) Before switching theme - ![tim 20180617155031](https://user-images.githubusercontent.com/10644057/41505952-560fceba-7246-11e8-94d4-99d34c45693c.png) Code - #### Application.kt ``` val defaults = Defaults( ThemeColor.GREEN, ThemeColor.BLUE, false, false, R.style.BaseTheme) initColorful(this, defaults) ``` ####...