Lock in $30 Savings on PRO—Offer Ends Soon! ⏳

Introduction to Android Development

Avatar for Ben Wicks Ben Wicks
January 31, 2018

Introduction to Android Development

The talk I gave at the Lincoln.Code() Meetup covering Android's history, resources for getting started, best practices, and new happenings.

Avatar for Ben Wicks

Ben Wicks

January 31, 2018
Tweet

More Decks by Ben Wicks

Other Decks in Programming

Transcript

  1. <?xml version="1.0" encoding="utf-8"?> <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android" android:layout_width="fill_parent" android:layout_height="fill_parent" android:orientation="vertical" > <TextView

    android:id="@+id/text" android:layout_width="wrap_content" android:layout_height="wrap_content" android:text="I am a TextView" /> <Button android:id="@+id/button" android:layout_width="wrap_content" android:layout_height="wrap_content" android:text="I am a Button" /> </LinearLayout> findViewById(int id)