Upgrade to Pro — share decks privately, control downloads, hide ads and more …

Introduction to Android Development

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.

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)