tcqq
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 -  Before switching theme -  Code - #### Application.kt ``` val defaults = Defaults( ThemeColor.GREEN, ThemeColor.BLUE, false, false, R.style.BaseTheme) initColorful(this, defaults) ``` ####...