What is LinearLayoutCompat in appCompat v7?

江枫思渺然 提交于 2019-12-20 10:26:15

问题


In the support library appCompat v7 of the Android platform, there is a android.support.v7.widget.LinearLayoutCompat class.

Does someone know why this class exist? The original LinearLayout class exist since API level 1 so I don't understand why there is a compat version.


回答1:


The class LinearLayout exists since API level 1, but some APIs were added after that, for example, setShowDividers introduced on API level 11.

So in this case setShowDividers (and it's parameters) should be invoked using LinearLayoutCompat instead LinearLayout if you are targeting a platform with API level below 11.



来源:https://stackoverflow.com/questions/26513244/what-is-linearlayoutcompat-in-appcompat-v7

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