Sample app to learn android programming (and the IDE)
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
This repo is archived. You can view files and clone it, but cannot push or open issues/pull-requests.

15 lines
351 B

13 years ago
  1. package com.jinfield.sampleapp;
  2. import android.app.Activity;
  3. import android.os.Bundle;
  4. public class MainActivity extends Activity
  5. {
  6. /** Called when the activity is first created. */
  7. @Override
  8. public void onCreate(Bundle savedInstanceState)
  9. {
  10. super.onCreate(savedInstanceState);
  11. setContentView(R.layout.main);
  12. }
  13. }