Project Detail

Advanced Java/Android Mobile Developer Needed   Refundable $5 fee paid

Advanced Java/Android Mobile Developer Needed is project number 509876
posted at Freelancer.com. Click here to post your own project.

 

| More
Free Trial For New Buyers
 

Status: Frozen
(Bid period finished)

Selected Providers: -

Budget: $250-750

Created: 09/17/2009 at 1:24 EDT

Bid Count: 20

Average Bid:
$ 505

11/16/2009 at 1:24 EST

Project Creator: RJPH3
Employer Rating: (No Feedback Yet)

Bid On This Project
 

Description

We need a developer with strong Java knowledge and experience in Android.

You need strengths in the following areas:

1. Java
2. Strong knowledge of Linux
3. Strong knowledge in GUI
4. Strong experience in TCP and internet communications development/optimization
5. Strong experience in mobile development
6. Strong experience in Android

For each of the above six points, please describe an example of an application you built in the above areas. We do not need to see URLs or screenshots. We just want a simple 2-3 sentence description. If you do not provide a sample description for each of the above 6 points, you will not be hired. Please include the above six points in your first message to me so I know you are not posting a template response.

We need you to create 4-5 applications in Android.

If you do well on the job, there is the possibility for a full-time job for you.

Job Type

Messages Posted:1 View project clarification board Post message on project clarification board

Bid On This Project
 

If you are the project creator or one of the bidders Log In for more options

 

400

30 days

09-22-2009 05:41 EDT

Brother.Please check the pm.

help

bup

 

400

10 days

09-17-2009 07:31 EDT

I can do well. Please check PM. I list 6 items you required.

help

 

750

15 days

09-17-2009 02:33 EDT

(No Feedback Yet)

Please see PMB

help

 

250

0 days

11-12-2009 04:04 EST

(No Feedback Yet)

Hi Friend, We are a mobile centric organization, with extensive expertise on J2ME, Android, iPhone, Symbian,Windows Mobile and Blackberry. Please refer PM for work details, experience and skills. Regards, Ann, Excoflare Software Technologies

help

 

450

15 days

11-14-2009 00:24 EST

(No Feedback Yet)

please check your PMB

help

 

500

15 days

09-17-2009 09:18 EDT

(No Feedback Yet)

Hello, I've 7 years of experience with Java and I'm entering in the Android world. Maybe we can agree on future projects. Regards, tfbica

help

 

700

45 days

09-17-2009 10:14 EDT

(No Feedback Yet)

please see pm for more details

help

 

750

15 days

09-17-2009 10:20 EDT

(No Feedback Yet)

Advanced Java/Android Mobile Developer

help

 

750

15 days

10-03-2009 15:10 EDT

(No Feedback Yet)

Dear Sir, Please check the PM Board.

help

 

800

60 days

09-18-2009 11:01 EDT

(No Feedback Yet)

Check the PM please.

help

pbq

 

500

10 days

09-19-2009 10:10 EDT

(No Feedback Yet)

Please check PM. This is my first bid on GAF.

help

 

250

10 days

09-21-2009 06:15 EDT

(No Feedback Yet)

Please see PM.

help

 

500

15 days

09-23-2009 04:58 EDT

(No Feedback Yet)

Hi, I can be of help to you for sure. Please check my profile on this site, also for more details check my personal websites.

help

 

255

1 day

09-27-2009 14:54 EDT

(No Feedback Yet)

// it's a simple quiz game. //created by sultana das(swapan)date 27/9/2009. /* barack.txt file should be like below: 20 what is the name of american president? barack obama mendela howard clinton a who is a golf player? federer udds sachin lara b */ //here the uppest number is the number of question.2nd is question.next 4 is choice ,5 th is answer.no new line is expected. import java.net.*; import javax.media.*; import javax.swing.JButton; import java.util.*; import java.util.*; import java.awt.event.KeyEvent; import java.awt.event.KeyListener; import java.io.*; import java.awt.* import javax.swing.*; import java.awt.image.*; public class quiz extends Thread implements KeyListener { FileReader file; Scanner in; double result=0.5; String s[]; int pic1=0; boolean start=false; boolean time=false; int j=0; char c='a'; int l; int min=0; boolean pic=true; int pic2=-800; String s1,s2,s3,s4,s5,s6; public static void main(String args[]){ quiz b = new quiz(); b.start(); b.go(); int s=12; } public void go(){ JFrame f = new JFrame(); f.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE); pane p = new pane(); f.getContentPane().add(p); f.setUndecorated(true); f.setSize(800,600); f.setVisible(true); f.addKeyListener(this); int dw=7; try{ FileReader file1 = new FileReader("\\barack.txt"); Scanner in1 = new Scanner(file1); s=new String[10*Integer.parseInt(in1.nextLine())]; }catch(Exception ex){} do{ try{ if(time){ min++; if(min==540){min=0;pic=false;j+=6;} } file = new FileReader("\\barack.txt"); in = new Scanner(file); for(int i=0;i=800){pic1=-800;} if(pic2>=800){pic2=-800;} p.repaint(); try{Thread.sleep(100);}catch(Exception ex){} }while(dw==7); } class pane extends JPanel{ public void paintComponent(Graphics g){ Image im = new ImageIcon("E:\\Azul.jpg").getImage(); g.drawImage(im,pic1,0,800+pic1,600,0,0,800,600,this); g.drawImage(im,pic2,0,800+pic2,600,800,0,0,600,this); if(!start){ g.setFont(new Font("Serif", Font.BOLD,30)); g.setColor(Color.blue); g.drawString("PRESS ENTER TO START THE QUIZ", 200,200); } if(start){ for(int i=0,c='a';i<4;i++){ g.setColor(new Color(0,255,0,200)); g.fillOval(200+i*100,500,50,50); g.setColor(Color.red); g.setFont(new Font("Serif",Font.ITALIC,50)); g.drawString(""+(char)c,210+i*100,540); c++; } g.setFont(new Font("Serif", Font.BOLD,30)); g.setColor(Color.blue); g.drawString(s[1+j],50,200); g.setColor(Color.black); for(int i=j+2,k=0,c='a';i<6+j;i++,k++){ //here you can generate the random number to change the question serial ,supposeint ran= (4 - (int)(Math.random()*4)) will create a random number between 1 and 4.you use it as drawString(s[ran],50,50) g.drawString((char)(c+k)+" " +s[i],100,250+k*50); } } } } public void keyPressed(KeyEvent ke){ if(ke.getKeyCode()==KeyEvent.VK_ENTER){start=true;time=true;} if(ke.getKeyChar()==s[6+j].charAt(0)){result++; j+=6; pic=false; }else{result-=.5;} System.out.println(result); } public void keyReleased(KeyEvent ke){} public void keyTyped(KeyEvent ke){} public void run(){ int s=12; a try{ URL u = new URL("file:///E:\\b1.wav").toURI().toURL(); Player mediaplayer; mediaplayer = Manager.createRealizedPlayer(u); mediaplayer.start(); Thread.sleep(700); }catch(Exception ex){} }while(s==12); } }

help

 

300

10 days

11-04-2009 07:39 EST

(No Feedback Yet)

Dear Sir, Kindly see the PM. Thanks

help

 

500

60 days

11-11-2009 15:00 EST

(No Feedback Yet)

1 ) i am working on java from last 3 years 2 ) i don't have much experience. 3 )i am developing android application from last two years 4 ) i have develop my custom server for android application that can connect using UDP as well as TCP protocol for further information email me yasirali1234 at gmail

help

 

750

20 days

10-15-2009 22:39 EDT

(No Feedback Yet)

Hi Please let me know details about project

help

 

450

90 days

10-18-2009 14:32 EDT

(No Feedback Yet)

We are developing such application from last two years for demo application please contact me at my id yasirali1234 at gamil

help

 

600

30 days

11-01-2009 07:52 EST

(No Feedback Yet)

Respected Sir, I have developed two applications in the Android and both applications are based on the Astrology. To display data on the Android application I have developed Bussiness logic which is in core Java. I have also accessed the restricted data by passing Username and Password with it. I will make sure that I will follow all the deadlines and give best work of mind. Thanks, Chirag

help

 

251

4 days

11-04-2009 05:53 EST

(No Feedback Yet)

Plz check pmb

help


    Bid on this Project