Developing Our First Application for Android

preview_player
Показать описание
Short video clip that explains step by step how to develop and how to run our first application for the Android OS.



In order to assist with understanding the basics of simple application developed for the android platform I will be more than happy if you could place comments with specific questions regarding this clip and I will create more clips and embed their links into this one.
Рекомендации по теме
Комментарии
Автор

could you explain a little more about how to make changes in your file such as buttons and objects?
prethanks

TheEmptyless
Автор

LOL, Yes, deanshelton913 is right, you have to explain the details, especially because you are showing basics, so most likely beginners are watching this video, which have no idea why did you modify that code. The rest is pretty good. Thanks.

enjoymps
Автор

I was lost too but this is what was I wrote...

package com.androidtest.samples;
import android.app.Activity;
import android.os.Bundle;
import android.widget.*;
public class HelloStudents extends Activity {
/** Called when the activity is first created. */
@Override
public void onCreate(Bundle savedInstanceState) {

TextView tv = new TextView (this);
tv.setText("Hello Students!");
setContentView(tv);
}
}

privdan
Автор

it says Textview cannot be resolved to a type

XxRebornBamfxX
Автор

The android builds are loading for me D: HELP!!!

EpicAvatar
Автор

Have to agree with deanshelton913, WTH did you do at 1:30 ??¨
Not a good a idea for tutorial

MeningsMod