Basic Android

esse quam videri
Revision as of 16:15, 4 April 2016 by Jeff (talk | contribs) (Dog Class in java)
Jump to: navigation, search


Android Basics

Basics

  • src folder containing all the source
  • res folder containing all the resources

folder hierarchy explained http://developer.android.com/tools/projects/index.html

First app demo http://developer.android.com/training/basics/firstapp/running-app.html

App lifecycle http://developer.android.com/guide/components/activities.html

activity_lifecycle.png

Resources

No DPI or PPI Andoid uses dp density independent pixels or sp scale interdependent pixels http://developer.android.com/guide/topics/resources/more-resources.html#Dimension

also see supporting multiple screens http://developer.android.com/guide/practices/screens_support.html

Activities

Activity life cycle http://developer.android.com/guide/topics/fundamentals/activities.html#Lifecycle

Get an instance of an object from the R class

/** Called when the activity is first created. */
    @Override
    public void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);
        setContentView(R.layout.main);
        
        //Get the Button and the TextView from the Resource class
        Button btn = (Button)this.findViewById(R.id.button1);
        final TextView tv = (TextView)this.findViewById(R.id.textView1);  
        String s = "hello";
        tv.setText(s);
    }
notice the cast to the type also notice that the TextView is marked as final 
this is so that we can use it in an inner method

handle a click event

btn.setOnClickListener(new View.OnClickListener() {
			
			@Override
			public void onClick(View v) {
				// TODO Auto-generated method stub
				tv.setText(d.About());
			}
		});

Events

Lots more good reading http://developer.android.com/guide/topics/fundamentals.html


AVD

Dog Class in java

<syntaxhighlight lang="java"> public class Dog {

public String Name; public int Weight; public String BarkSound;

//Constructor public Dog() { this.Name = "fido"; this.Weight = 1; this.BarkSound = "woof"; }

public void Eat() { this.Weight++; } public void Poop() { this.Weight--; }

public String About() { return String.format("Hello my name is %s. I weigh %s lbs", this.Name, this.Weight); }


} </syntaxhighlight lang="java">>

In Class Demo

Template:AndroidStudioCSharpDog.PNG

Template:AndroidStudioJavaDog.PNG