You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Hey guys, this README is filled with plenty of wonderful Questions and I think that addition of What is AppCompatActivity ? under Core Android might be helpful 🎉
The text was updated successfully, but these errors were encountered:
I agree!
Maybe also include the answer to that as well?
Something like:
AppCompatActivity extends FragmentActivity, which extends ComponentActivity, and is the recommended class for viewbinding, findViewById, setContentView, using the FragmentManager, and a host of other useful libraries when creating a simple Activity that you usually see in a project.
In newer versions of Android, such as that using JetpackCompose, the lowest base class required for creating a Composable is ComponentActivity, which is a parent of AppCompatActivity. If you are using Jetpack Compose, but would like it to be compatible with non-composable views, AppCompatActivity is the way to go.
Hey guys, this README is filled with plenty of wonderful Questions and I think that addition of What is
AppCompatActivity
? underCore Android
might be helpful 🎉The text was updated successfully, but these errors were encountered: