This page is for the second edition of the book. If you have the first edition, please visit the 1st edition web page.
For any other books by Barry Burd, visit my main page.
Download the code examples!
Find out how to run this book's examples with newer versions of Android and Android Studio
Download a version of Listing 02_01 that's updated as of May 2024.
Note: I'm not a lawyer but, as I understand it, the version of Java at Oracle's web site is still free to use if you're using it only to practice writing Java code. You can't use it for free to put an application into production. If you want a completely free version of Java, visit adoptium.net.
xmlns
. Add this line after the last one of those lines:
android:id="@+id/activity_main"
app:layout_constraintLeft_toLeftOf="parent" app:layout_constraintTop_toTopOf="parent" app:layout_constraintRight_toRightOf="parent" app:layout_constraintBottom_toBottomOf="parent"
app:layout_constraintLeft_toLeftOf="@+id/activity_main" app:layout_constraintTop_toTopOf="@+id/activity_main" app:layout_constraintRight_toRightOf="@+id/activity_main" app:layout_constraintBottom_toBottomOf="@+id/activity_main"
Tweets by @allmycode
How to verify that a device (a phone or a tablet) is properly connected to your development computer via USB
.
.
.
.
.
.
.