Friday, June 12, 2015

Android Application Development

Fundaments of Android application development (API 11)



Good tutorial point from base
http://www.vogella.com/tutorials/android.html

http://www.ashokgelal.com/2013/01/writing-a-real-android-app-from-scratch-part-17-about-the-app/

https://www.youtube.com/watch?v=Jl3-lzlzOJI

https://www.youtube.com/watch?v=lESZqCflB0o

https://www.youtube.com/watch?v=E6c3DGnvefY

Learn android from begning
https://www.youtube.com/watch?v=h57QpXp2TRg&list=PLonJJ3BVjZW6CtAMbJz1XD8ELUs1KXaTD

About layouts

https://www.youtube.com/watch?v=xn9KYnwIoBE

Download social media icons for android
http://www.dreamstale.com/free-download-72-vector-social-media-icons/

Add google maps to android device
https://www.youtube.com/watch?v=awX5T-EwLPc

http://www.vogella.com/tutorials/AndroidGoogleMaps/article.html

Sample code for calling  one activity from other
Intent intent = new Intent(this, DisplayMessageActivity.class);
    EditText editText = (EditText) findViewById(R.id.edit_message);
    String message = editText.getText().toString();
    intent.putExtra(EXTRA_MESSAGE, message);
    startActivity(intent);



List View example
http://www.codelearn.org/android-tutorial/android-listview

Google map apiv2 tutorial
https://www.youtube.com/watch?v=awX5T-EwLPc

No comments:

Post a Comment