Welcome Guest ( Log In | Register )

4 Pages < 1 2 3 4 >Bottom

Outline · [ Standard ] · Linear+

 Free 1 Day Android Programming Course 2012, Learn to write your first Android App

views
     
SonnyCooL
post Jun 1 2011, 11:44 PM

Web Bastard
*******
Senior Member
5,957 posts

Joined: Sep 2004
From: www.bitching.asia


Do u available for android app project? Hehehehehehe
kamikraze
post Jun 2 2011, 12:08 AM

Iphone 12 Pro Max + Magicwatch 2
*******
Senior Member
6,425 posts

Joined: Mar 2006
From: Besut, Terengganu


i wish u can do some vid of the class and upload on youtube for others for an easy understanding how it work..
TSkent_lau7
post Jun 2 2011, 08:28 AM

Enthusiast
*****
Senior Member
767 posts

Joined: Sep 2009
From: Puchong


QUOTE(aeric80 @ Jun 1 2011, 08:42 PM)
I am interested to learn and hope can write some apps as hobby. I have laptops and HTC Desire HD.
I learn a bit of Java during college study around 10 years ago but I use VB in my work.  tongue.gif
Please update us more details.
*
hi, count you in. please PM me with your details (refer to my 1st post)


Added on June 2, 2011, 8:35 am
QUOTE(ilovestitch @ Jun 1 2011, 09:55 PM)
hey serious learner here, i will have sem break after this friday for 3 weeks, do let me know ur date and time... thanks in advance
*
pls PM me your details. refer my updated post. thank you.


Added on June 2, 2011, 8:36 am
QUOTE(CrossX @ Jun 1 2011, 10:47 PM)
hi. i'm very interested in your offer but i dont have any experience in java, just used C and C++ in my uni last time... can i still join?
*
do you know C++ Object Oriented concept? will it be hard for you to learn to write some simple Java Porgram?


This post has been edited by kent_lau7: Jun 2 2011, 08:36 AM
s4tisfaction
post Jun 2 2011, 02:27 PM

New Member
*
Junior Member
5 posts

Joined: Oct 2010
hi, i got netbook and android device.. but dun have java knowledge yet so far.. C++ knowledge can or not?
XeactorZ
post Jun 2 2011, 11:04 PM

♥ PandaDog ♥
*********
All Stars
31,609 posts

Joined: Aug 2010
no laptop
and just studying programming at my college
very blur ><
TSkent_lau7
post Jun 4 2011, 12:45 PM

Enthusiast
*****
Senior Member
767 posts

Joined: Sep 2009
From: Puchong


no laptop, can borrow from friend, one of friend do that too...
mysql2779
post Jun 4 2011, 02:00 PM

On my way
****
Senior Member
523 posts

Joined: Mar 2010
May I join ? I pmED u my personal details..
TSkent_lau7
post Jun 4 2011, 05:13 PM

Enthusiast
*****
Senior Member
767 posts

Joined: Sep 2009
From: Puchong


u need to learn Java first...
try this link
http://www.vogella.de/articles/Eclipse/article.html
SonnyCooL
post Jun 4 2011, 05:39 PM

Web Bastard
*******
Senior Member
5,957 posts

Joined: Sep 2004
From: www.bitching.asia


agree with TS, someone with C+ but doubt abt their ability on java script .....
i bet most them dont even understand what they study smile.gif
TSkent_lau7
post Jun 5 2011, 08:23 AM

Enthusiast
*****
Senior Member
767 posts

Joined: Sep 2009
From: Puchong


QUOTE(SonnyCooL @ Jun 4 2011, 05:39 PM)
agree with TS, someone with C+ but doubt abt their ability on java script .....
i bet most them dont even understand what they study smile.gif
*
Javascript and Java is totally different things.
Javascript cannot run on its own. Java can be a stand alone application.

Btw, those who truly want to learn Android programming require the knowledge of Type Inference.

You know how to declare variable, but now...you need to know what is Type Inference...

Map<String, List<String>> myMap = new HashMap<String, List<String>>();

CODE


   public void onCreate(Bundle savedInstanceState) {
       super.onCreate(savedInstanceState);
       setContentView(R.layout.main);

       GridView gridview = (GridView) findViewById(R.id.gridview);
       gridview.setAdapter(new ImageAdapter(this));

       gridview.setOnItemClickListener(new OnItemClickListener() {
           public void onItemClick([COLOR=blue]AdapterView<?> parent[/COLOR], View v, int position, long id) {
               Toast.makeText(HelloGridView.this, "" + position, Toast.LENGTH_SHORT).show();
           }
       });
   }


Read this
http://download.oracle.com/javase/tutorial...e-instantiation

cheers to my new 5 students...
andrekua
post Jun 5 2011, 11:05 AM

NO!!! IT'S HIM!!!
*******
Senior Member
3,887 posts

Joined: Jun 2008


Havent touched programming in years but I do remember I cant even type my own C++ coding but no problem with JAVA. I think JAVA is definitely easier to learn compared to C++.
TSkent_lau7
post Jun 5 2011, 06:34 PM

Enthusiast
*****
Senior Member
767 posts

Joined: Sep 2009
From: Puchong


hi andrekua, are u serious? can't even type a simple C++ code?

#include <iostream>
using namespace std;

int main ()
{
cout << "Hello World!";
return 0;
}
cruzzmz
post Jun 5 2011, 09:20 PM

uh weeee !!!!
*******
Senior Member
6,904 posts

Joined: Jan 2003
still got a place??? i would love to join PM me for detail
TSkent_lau7
post Jun 5 2011, 10:27 PM

Enthusiast
*****
Senior Member
767 posts

Joined: Sep 2009
From: Puchong


QUOTE(cruzzmz @ Jun 5 2011, 09:20 PM)
still got a place??? i would love to join PM me for detail
*
hi, cruzzmz, do u fulfilled all the requirement?

do you know what is Class, what is Object, what is subclass?
Interface?
SonnyCooL
post Jun 5 2011, 10:43 PM

Web Bastard
*******
Senior Member
5,957 posts

Joined: Sep 2004
From: www.bitching.asia


[quote=kent_lau7,Jun 5 2011, 08:23 AM]
Javascript and Java is totally different things.
Javascript cannot run on its own. Java can be a stand alone application.

Btw, those who truly want to learn Android programming require the knowledge of Type Inference.

You know how to declare variable, but now...you need to know what is Type Inference...

Map<String, List<String>> myMap = new HashMap<String, List<String>>();

CODE


   public void onCreate(Bundle savedInstanceState) {
       super.onCreate(savedInstanceState);
       setContentView(R.layout.main);

       GridView gridview = (GridView) findViewById(R.id.gridview);
       gridview.setAdapter(new ImageAdapter(this));

       gridview.setOnItemClickListener(new OnItemClickListener() {
           public void onItemClick([COLOR=blue]AdapterView<?> parent[/COLOR], View v, int position, long id) {
               Toast.makeText(HelloGridView.this, "" + position, Toast.LENGTH_SHORT).show();
           }
       });
   }


Read this
http://download.oracle.com/javase/tutorial...e-instantiation

cheers to my new 5 students...
*

[/quot

That not much different with high level language vs low level smile.gif

KHOdin
post Jun 6 2011, 12:53 AM

7 Stars Newbie
*******
Senior Member
2,928 posts

Joined: Oct 2008
From: Somewhere On The Earth
interested too bad i just started my foundation leading to computing ><
andrekua
post Jun 6 2011, 06:55 AM

NO!!! IT'S HIM!!!
*******
Senior Member
3,887 posts

Joined: Jun 2008


QUOTE(kent_lau7 @ Jun 5 2011, 06:34 PM)
hi andrekua, are u serious? can't even type a simple C++ code?

#include <iostream>
using namespace std;

int main ()
{
  cout << "Hello World!";
  return 0;
}
*
Erm, I mean a full program, not simple one e.g. Data entry program... Dont quite understand how to transfer variables to another working module but in JAVA, it seem much easier. Now all already forgot, hahaha...
TSkent_lau7
post Jun 6 2011, 09:01 PM

Enthusiast
*****
Senior Member
767 posts

Joined: Sep 2009
From: Puchong


hi TS,

CODE


public double functionA(double wingSpan, int numberOfEngines, double length, double grossTons) {
//do the calculation here
}



Do you know what is this in Java?
how many parameters in this code?

Or
go here to learn up first
http://download.oracle.com/javase/tutorial...epts/index.html
bowerchung
post Jun 10 2011, 12:37 AM

On my way
****
Senior Member
562 posts

Joined: Dec 2008
From: WonderLand :D
Requirement:

You must be at least 15 years old Surely PASS laugh.gif
Already know "some" Java concept, like extend a Class If i can remember la, count as PASS then rolleyes.gif
You need a laptop Borrow from my best fren, so PASS then nod.gif
Android-powered phone (optional, as you can use emulator if your laptop speed is fast) Okay just bought it, okay PASS icon_idea.gif

Why you want to learn Android?
1. Android is ruling most of the smartphones and tablet pc now in market rclxms.gif
2. Wanna create own apps and sell it for some pocket money instead of taking money from parent's pocket thumbup.gif
3. Lastly, I Love Android duh wub.gif

AM I in game? unsure.gif

Thank you.

This post has been edited by bowerchung: Jun 13 2011, 01:37 AM
TSkent_lau7
post Jun 10 2011, 08:06 AM

Enthusiast
*****
Senior Member
767 posts

Joined: Sep 2009
From: Puchong


hi, bowerchung, you the 2nd last. Count you in.
Date has changed to 30 July. Please take note.

4 Pages < 1 2 3 4 >Top
 

Change to:
| Lo-Fi Version
0.0226sec    0.76    6 queries    GZIP Disabled
Time is now: 16th December 2025 - 07:07 AM