What is LinearLayoutICS?

I noticed that when creating LinearLayout in XML in Android Studio, the LinearLayoutICS element (android.support.v7.internal.widget.LinearLayoutICS) appeared.

I tried to search, and I can’t understand what additional features it provides when comparing with a good ol 'LinearLayout. It seems like something like dividers ...?

+4
source share
2 answers

LinearLayoutICSreserves the ability to define delimiters in LinearLayoutfor devices with a pre-cell (i.e. API and 11).

, android:minSdkVersion 7 10 AndroidManifest.xml. API >= 11, LinearLayout. API < 7, LinearLayoutICS , , , , , API 7 (, "v7" ).

+2

. appcompat, , ActionBar. 100% ,

+1

All Articles