Replacing ActionBarSherlock With AppCompat

﹥>﹥吖頭↗ 提交于 2019-12-03 17:29:44
Ye Lin Aung

If you're going to use appcompat-v7, I am sure you have support-v4 in your dependencies as well.

You can try replacing

  • com.actionbarsherlock.app.SherlockFragment with android.support.v4.app.Fragment
  • com.actionbarsherlock.app.SherlockFragmentActivity with android.support.v7.app.AppCompatActivity

There are some good advices on migrating from ABS to AppCompat.

Something to note with above examples is that ActionBarActivity is now deprecated and replaced by AppCompatActivity.

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!