Skip to content

Latest commit

 

History

History
26 lines (17 loc) · 865 Bytes

README.md

File metadata and controls

26 lines (17 loc) · 865 Bytes

Android-Learning-Notes

记录Android开发过程中遇到的问题


开发遇到的问题

  1. 机型兼容

    1. Samsung SM-G9550 Android 9, API 28 TextView设置 gravity = "center" && layout_width = "wrap_content" 时, 画布默认向右移动width/2, 导致自定义View绘制出错
  2. RadioGroup

    • RadioGroup#check() 会导致 OnCheckedChangeListener#onCheckedChanged()被调用2次
  3. View

    • selector的资源文件的android:constantSize属性
    • View#post(Runnable)Runnable的调用时机
    • super#onRestoreInstanceState(Parcelable) 参数传入BaseSavedState的子类时, 在Api <= 22时崩溃
  4. Fragment

    • Fragment#onActivityCreated(Bundle), 除非在Fragment#onSaveInstanceState(Bundle)中存入了内容, 否则Bundle一直为null

源码

  • EventBus
  • Retrofit