AppCompat Action Bar library not displaying added fragments

坚强是说给别人听的谎言 提交于 2019-11-29 13:41:43

Loading up the hierarchyviewer in the Android SDK's tools directory, it appears that the view you place fragments in is android.R.id.content on 4.x devices and is R.id.action_bar_activity_content on 2.3 devices running the AppCompat ActionBar library.

Unfortunately it seems that you might need to branch based off platform versions when adding fragments. This is suggested in http://code.google.com/p/android/issues/detail?id=58108 (not sure about 3.x devices yet).

Use this method to get the proper view for adding Fragment's. My testing also shows that 3.x devices act similar to 2.3 devices when using the AppCompat ActionBar library.

public static int getContentViewCompat() {
    return Build.VERSION.SDK_INT >= Build.VERSION_CODES.ICE_CREAM_SANDWICH ?
               android.R.id.content : R.id.action_bar_activity_content;
}


hierarchyviewer screenshots

  • 2.3

  • 4.x

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