简体   繁体   中英

Difference between an AppCompat view and a normal Android view

What is the difference between an AppCompat view component and a standard/default view component?

For example, the difference between an AppCompatEditText , and an EditText , or between an AppCompatButton and a Button .

Looking at the developer docs for android.support.v7.widget , the AppCompat view components are described as " tint aware ", but is this the only difference, and what exactly does this do?

When you are using a Button or an EditText you are actually using AppCompatButton and AppCompatEditText . From the official documentation of the AppCompatEditText .

A tint aware EditText. This will automatically be used when you use EditText in your layouts. You should only need to manually use this class when writing custom views

What is the difference between an AppCompat view component and a standard/default view component?

AppCompat View Component supports compatible features on older version of the platform.

the AppCompat view components are described as "tint aware", but is this the only difference, and what exactly does this do?

Although most of the AppCompatView only difference is it allows dynamic tint and background tint. Tint aware is not the only difference, each AppCompatView has its own differences, for example.

  • AppCompatEditText vs EditText

Allows textAllCaps style attribute up to Gingerbread.

  • AppCompatSpinner vs Spinner

Setting the popup theme using popupTheme.

You can dig down each view difference in Android docs .

However, as Sid / Docs says, you don't have to specify this on your layouts since it will automatically converted to AppCompat views. But, if you want to create custom view, you should use AppCompat Views, or else this bug will happens.

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM