[android-developers] Hi friends

2013-06-25 Thread Ibrahim Sada
Friends I Am trying to connect server on pc and client on android device..
My server is working fine...
but my client is not working ...
Here is my sever and client code...



Server Code...



public class Server_tcp {
 void run(){
{
try {
System.out.println(Hi Im In 1st Try);
try {
System.out.println(Hi Im In 2nd try );
Boolean end = false;
ServerSocket ss = new ServerSocket();
System.out.println(socket created);
while(!end){
//Server is waiting for client here, if needed
Socket s = ss.accept();
System.out.println(socket accepted);
BufferedReader input = new BufferedReader(new
InputStreamReader(s.getInputStream()));
PrintWriter output = new
PrintWriter(s.getOutputStream(),true); //Autoflush
String st = input.readLine();
System.out.println(Tcp Example + From
client: +st);

output.println(I got the Message:));
output.flush();

s.close();
if (st==null){ end = true; }
}
ss.close();
} catch (UnknownHostException e) {
// TODO Auto-generated catch block
e.printStackTrace();
}
} catch (IOException exp) {
// TODO Auto-generated catch block
exp.printStackTrace();
}
}
}
public static void main(String args[])
{
Server_tcp server = new Server_tcp();
while(true){
server.run();
}
}

}



Client Code


public class ClientTCPActivity extends Activity {
/** Called when the activity is first created. */

private EditText et;
@Override
public void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.main);
System.out.println(Before try net);
Run();
System.out.println(after try net);
}
public void Run() {
System.out.println(inside try net);
try {
System.out.println(inside try);
Socket s = new Socket(192.168.1.27,);

//outgoing stream redirect to socket
 //   OutputStream out = (OutputStream) et.getContentDescription();

PrintWriter output = new PrintWriter(s.getOutputStream(),true);
output.println(Hello Android!);
BufferedReader input = new BufferedReader(new
InputStreamReader(s.getInputStream()));

//read line(s)
String st = input.readLine();
System.out.println(st);

//Close connection
s.close();

System.out.println( try );
} catch (UnknownHostException e) {
// TODO Auto-generated catch block
e.printStackTrace();
} catch (IOException e) {
// TODO Auto-generated catch block
e.printStackTrace();
}
}
}

My Client is not working properly my friends
Can Any One help me ???
Thanks in advance...

-- 
-- 
You received this message because you are subscribed to the Google
Groups Android Developers group.
To post to this group, send email to android-developers@googlegroups.com
To unsubscribe from this group, send email to
android-developers+unsubscr...@googlegroups.com
For more options, visit this group at
http://groups.google.com/group/android-developers?hl=en
--- 
You received this message because you are subscribed to the Google Groups 
Android Developers group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to android-developers+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/groups/opt_out.




[android-developers] hi Friends..

2013-04-22 Thread Ibrahim Sada
Friends I Need To Read Xml File From My Friends System..
Using Xmlpullparser??or xml..
Please Help me In Advance..

-- 
-- 
You received this message because you are subscribed to the Google
Groups Android Developers group.
To post to this group, send email to android-developers@googlegroups.com
To unsubscribe from this group, send email to
android-developers+unsubscr...@googlegroups.com
For more options, visit this group at
http://groups.google.com/group/android-developers?hl=en
--- 
You received this message because you are subscribed to the Google Groups 
Android Developers group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to android-developers+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/groups/opt_out.




Re: [android-developers] hi friends

2013-01-07 Thread Belhouchet Ines
Thanks Nitin Sethi,that's help me too

2012/12/25, Nitin Sethi sethi.5...@gmail.com:
 Here you go.

 http://stackoverflow.com/questions/6905262/how-do-i-show-a-custom-dialog-when-there-is-no-internet-connection

 On Monday, 24 December 2012 22:47:27 UTC+5:30, sree wrote:

 Thank u friend.Shall u share any code.
 On Dec 24, 2012 9:25 PM, nemi chhimpa ern...@gmail.com javascript:
 wrote:


 --
 You received this message because you are subscribed to the Google
 Groups Android Developers group.
 To post to this group, send email to android-developers@googlegroups.com
 To unsubscribe from this group, send email to
 android-developers+unsubscr...@googlegroups.com
 For more options, visit this group at
 http://groups.google.com/group/android-developers?hl=en

-- 
You received this message because you are subscribed to the Google
Groups Android Developers group.
To post to this group, send email to android-developers@googlegroups.com
To unsubscribe from this group, send email to
android-developers+unsubscr...@googlegroups.com
For more options, visit this group at
http://groups.google.com/group/android-developers?hl=en


Re: [android-developers] hi friends

2013-01-04 Thread sree android
Here It contain lot of code,please explain me.

-- 
You received this message because you are subscribed to the Google
Groups Android Developers group.
To post to this group, send email to android-developers@googlegroups.com
To unsubscribe from this group, send email to
android-developers+unsubscr...@googlegroups.com
For more options, visit this group at
http://groups.google.com/group/android-developers?hl=en

Re: [android-developers] hi friends

2013-01-04 Thread skink


sree android wrote:
 Here It contain lot of code,please explain me.

do you mean SimpleDateFormat?

pskink

-- 
You received this message because you are subscribed to the Google
Groups Android Developers group.
To post to this group, send email to android-developers@googlegroups.com
To unsubscribe from this group, send email to
android-developers+unsubscr...@googlegroups.com
For more options, visit this group at
http://groups.google.com/group/android-developers?hl=en


Re: [android-developers] hi friends

2013-01-04 Thread sree android
thank you i got it.Using SimpleDateFormat class.
thank you bro.

-- 
You received this message because you are subscribed to the Google
Groups Android Developers group.
To post to this group, send email to android-developers@googlegroups.com
To unsubscribe from this group, send email to
android-developers+unsubscr...@googlegroups.com
For more options, visit this group at
http://groups.google.com/group/android-developers?hl=en

[android-developers] hi friends

2013-01-04 Thread sree android
How can i fix SocketTimeoutException: Connection timed out
give me any suggession.

-- 
You received this message because you are subscribed to the Google
Groups Android Developers group.
To post to this group, send email to android-developers@googlegroups.com
To unsubscribe from this group, send email to
android-developers+unsubscr...@googlegroups.com
For more options, visit this group at
http://groups.google.com/group/android-developers?hl=en

[android-developers] hi friends

2013-01-04 Thread surya pavan
can you tell me the how to write a code for photoframes and tell me the 
best  tutorial for that ..

-- 
You received this message because you are subscribed to the Google
Groups Android Developers group.
To post to this group, send email to android-developers@googlegroups.com
To unsubscribe from this group, send email to
android-developers+unsubscr...@googlegroups.com
For more options, visit this group at
http://groups.google.com/group/android-developers?hl=en

Re: [android-developers] hi friends

2013-01-04 Thread Kevin Duffey
Not sure your question  You want someone to write the code for you?
What is photo frames...  Links to screen shots or examples might help.
On Jan 4, 2013 8:33 AM, surya pavan tsuryapa...@gmail.com wrote:

 can you tell me the how to write a code for photoframes and tell me the
 best  tutorial for that ..

 --
 You received this message because you are subscribed to the Google
 Groups Android Developers group.
 To post to this group, send email to android-developers@googlegroups.com
 To unsubscribe from this group, send email to
 android-developers+unsubscr...@googlegroups.com
 For more options, visit this group at
 http://groups.google.com/group/android-developers?hl=en

-- 
You received this message because you are subscribed to the Google
Groups Android Developers group.
To post to this group, send email to android-developers@googlegroups.com
To unsubscribe from this group, send email to
android-developers+unsubscr...@googlegroups.com
For more options, visit this group at
http://groups.google.com/group/android-developers?hl=en

[android-developers] hi friends

2013-01-03 Thread sree android
The above attachment i can use four TextView and one CheckBox and One
ImageView.

Four textview are display like below  format and when i click check box
strike all textviews.give me ideas or any code.
Between each textview i can use pipe symbol.how

TEXTVIEW
(TEXTVIEW | TEXTVIEW | TEXTVIEW)

-- 
You received this message because you are subscribed to the Google
Groups Android Developers group.
To post to this group, send email to android-developers@googlegroups.com
To unsubscribe from this group, send email to
android-developers+unsubscr...@googlegroups.com
For more options, visit this group at
http://groups.google.com/group/android-developers?hl=enattachment: device-2013-01-03-173057.png

[android-developers] hi friends

2013-01-03 Thread sree android
Hi friends

 i am reading date value from webservices (DD/MM/) and set these date
to textview.After Displaying the values is show like DD/MM/.Here i can
store reading date value in one array and these array is bind to textview.
But i want to display DD/MM only how.
plz help me

-- 
You received this message because you are subscribed to the Google
Groups Android Developers group.
To post to this group, send email to android-developers@googlegroups.com
To unsubscribe from this group, send email to
android-developers+unsubscr...@googlegroups.com
For more options, visit this group at
http://groups.google.com/group/android-developers?hl=en

Re: [android-developers] hi friends

2013-01-03 Thread Tamil Arasi
can u share the code?. Because that is easy to help u

On Fri, Jan 4, 2013 at 12:37 PM, sree android
android.sreeni...@gmail.comwrote:

 Hi friends

  i am reading date value from webservices (DD/MM/) and set these date
 to textview.After Displaying the values is show like DD/MM/.Here i can
 store reading date value in one array and these array is bind to textview.
 But i want to display DD/MM only how.
 plz help me

  --
 You received this message because you are subscribed to the Google
 Groups Android Developers group.
 To post to this group, send email to android-developers@googlegroups.com
 To unsubscribe from this group, send email to
 android-developers+unsubscr...@googlegroups.com
 For more options, visit this group at
 http://groups.google.com/group/android-developers?hl=en

-- 
You received this message because you are subscribed to the Google
Groups Android Developers group.
To post to this group, send email to android-developers@googlegroups.com
To unsubscribe from this group, send email to
android-developers+unsubscr...@googlegroups.com
For more options, visit this group at
http://groups.google.com/group/android-developers?hl=en

[android-developers] hi friends

2013-01-02 Thread sree android
Hi friends,
The above attachment i prepared ListView with Sections,Here i need to call
Custom Listview inside sections.It is posible or not.
If it is possible how can i do.please give me stepts or any code links.

thank you in advance.

-- 
You received this message because you are subscribed to the Google
Groups Android Developers group.
To post to this group, send email to android-developers@googlegroups.com
To unsubscribe from this group, send email to
android-developers+unsubscr...@googlegroups.com
For more options, visit this group at
http://groups.google.com/group/android-developers?hl=enattachment: image one.pngattachment: image two.png

Re: [android-developers] hi friends

2013-01-02 Thread Tamil Arasi
Your question is not clear.. ask your question clearly..

On Wed, Jan 2, 2013 at 6:00 PM, sree android android.sreeni...@gmail.comwrote:

 Hi friends,
 The above attachment i prepared ListView with Sections,Here i need to call
 Custom Listview inside sections.It is posible or not.
 If it is possible how can i do.please give me stepts or any code links.

 thank you in advance.

 --
 You received this message because you are subscribed to the Google
 Groups Android Developers group.
 To post to this group, send email to android-developers@googlegroups.com
 To unsubscribe from this group, send email to
 android-developers+unsubscr...@googlegroups.com
 For more options, visit this group at
 http://groups.google.com/group/android-developers?hl=en

-- 
You received this message because you are subscribed to the Google
Groups Android Developers group.
To post to this group, send email to android-developers@googlegroups.com
To unsubscribe from this group, send email to
android-developers+unsubscr...@googlegroups.com
For more options, visit this group at
http://groups.google.com/group/android-developers?hl=en

Re: [android-developers] hi friends

2013-01-02 Thread rambabu mareedu
refer this link:
http://ramscreative.blogspot.in/2012/05/custom-listview.html


On Wed, Jan 2, 2013 at 6:22 PM, Tamil Arasi arasi...@gmail.com wrote:

 Your question is not clear.. ask your question clearly..


 On Wed, Jan 2, 2013 at 6:00 PM, sree android 
 android.sreeni...@gmail.comwrote:

 Hi friends,
 The above attachment i prepared ListView with Sections,Here i need to
 call Custom Listview inside sections.It is posible or not.
 If it is possible how can i do.please give me stepts or any code links.

 thank you in advance.

 --
 You received this message because you are subscribed to the Google
 Groups Android Developers group.
 To post to this group, send email to android-developers@googlegroups.com
 To unsubscribe from this group, send email to
 android-developers+unsubscr...@googlegroups.com
 For more options, visit this group at
 http://groups.google.com/group/android-developers?hl=en


  --
 You received this message because you are subscribed to the Google
 Groups Android Developers group.
 To post to this group, send email to android-developers@googlegroups.com
 To unsubscribe from this group, send email to
 android-developers+unsubscr...@googlegroups.com
 For more options, visit this group at
 http://groups.google.com/group/android-developers?hl=en




-- 
Regards
Rambabu Mareedu
9581411199

-- 
You received this message because you are subscribed to the Google
Groups Android Developers group.
To post to this group, send email to android-developers@googlegroups.com
To unsubscribe from this group, send email to
android-developers+unsubscr...@googlegroups.com
For more options, visit this group at
http://groups.google.com/group/android-developers?hl=en

[android-developers] hi friends

2012-12-31 Thread sree android
Happy New Year to One And All.

Please suggest me,

The above attached image,How can i display that items.How can i add items
particularly in Today or Tomarrow Textviews and also the line below of
Today textview.
Please send me replay with which concept is used and how.

-- 
You received this message because you are subscribed to the Google
Groups Android Developers group.
To post to this group, send email to android-developers@googlegroups.com
To unsubscribe from this group, send email to
android-developers+unsubscr...@googlegroups.com
For more options, visit this group at
http://groups.google.com/group/android-developers?hl=enattachment: s.jpg

Re: [android-developers] hi friends

2012-12-25 Thread Nitin Sethi
Here you go.

http://stackoverflow.com/questions/6905262/how-do-i-show-a-custom-dialog-when-there-is-no-internet-connection

On Monday, 24 December 2012 22:47:27 UTC+5:30, sree wrote:

 Thank u friend.Shall u share any code.
 On Dec 24, 2012 9:25 PM, nemi chhimpa ern...@gmail.com javascript: 
 wrote:


-- 
You received this message because you are subscribed to the Google
Groups Android Developers group.
To post to this group, send email to android-developers@googlegroups.com
To unsubscribe from this group, send email to
android-developers+unsubscr...@googlegroups.com
For more options, visit this group at
http://groups.google.com/group/android-developers?hl=en

Re: [android-developers] hi friends

2012-12-24 Thread nemi chhimpa
First check that intrrnet is on. If not then display toast message. Then
open the network setting screen. Use handler postDelayed method to open
network setting. So toast message will be displayed to screen
On Dec 24, 2012 10:36 AM, sree android android.sreeni...@gmail.com
wrote:

 when i am working webservices,internet is mandatory.If without internet
 connection i would like to connect my app,at that scenario the TOAST
 message will display like YOUR APP  HAS REQUIRE INTERNET CONNECTION 
 .After display the message my app will exist or it will goes to network
 connection settings and where i write these code.

 sorry for my english,please help me any one

 --
 You received this message because you are subscribed to the Google
 Groups Android Developers group.
 To post to this group, send email to android-developers@googlegroups.com
 To unsubscribe from this group, send email to
 android-developers+unsubscr...@googlegroups.com
 For more options, visit this group at
 http://groups.google.com/group/android-developers?hl=en

-- 
You received this message because you are subscribed to the Google
Groups Android Developers group.
To post to this group, send email to android-developers@googlegroups.com
To unsubscribe from this group, send email to
android-developers+unsubscr...@googlegroups.com
For more options, visit this group at
http://groups.google.com/group/android-developers?hl=en

Re: [android-developers] hi friends

2012-12-24 Thread sree android
Thank u friend.Shall u share any code.
On Dec 24, 2012 9:25 PM, nemi chhimpa ern...@gmail.com wrote:

-- 
You received this message because you are subscribed to the Google
Groups Android Developers group.
To post to this group, send email to android-developers@googlegroups.com
To unsubscribe from this group, send email to
android-developers+unsubscr...@googlegroups.com
For more options, visit this group at
http://groups.google.com/group/android-developers?hl=en

[android-developers] hi friends

2012-12-23 Thread sree android
when i am working webservices,internet is mandatory.If without internet
connection i would like to connect my app,at that scenario the TOAST
message will display like YOUR APP  HAS REQUIRE INTERNET CONNECTION 
.After display the message my app will exist or it will goes to network
connection settings and where i write these code.

sorry for my english,please help me any one

-- 
You received this message because you are subscribed to the Google
Groups Android Developers group.
To post to this group, send email to android-developers@googlegroups.com
To unsubscribe from this group, send email to
android-developers+unsubscr...@googlegroups.com
For more options, visit this group at
http://groups.google.com/group/android-developers?hl=en

Re: [android-developers] hi friends

2012-12-06 Thread sree android
Thank you sir,i am ur student.

-- 
You received this message because you are subscribed to the Google
Groups Android Developers group.
To post to this group, send email to android-developers@googlegroups.com
To unsubscribe from this group, send email to
android-developers+unsubscr...@googlegroups.com
For more options, visit this group at
http://groups.google.com/group/android-developers?hl=en

Re: [android-developers] hi friends

2012-12-05 Thread sree android
 TextView tv=(TextView) v.findViewById(android.R.id.text1);

tv.setPaintFlags(tv.getPaintFlags() | Paint.STRIKE_THRU_TEXT_FLAG);

using the above line of code we can strike the text,but how can i
remove the strike on the text.like reverse of above.

-- 
You received this message because you are subscribed to the Google
Groups Android Developers group.
To post to this group, send email to android-developers@googlegroups.com
To unsubscribe from this group, send email to
android-developers+unsubscr...@googlegroups.com
For more options, visit this group at
http://groups.google.com/group/android-developers?hl=en

Re: [android-developers] hi friends

2012-12-05 Thread Παύλος-Πέτρος Τουρνάρης
Maybe setPaintFlags to null...
Στις 5 Δεκ 2012 2:02 μ.μ., ο χρήστης sree android 
android.sreeni...@gmail.com έγραψε:

  TextView tv=(TextView) v.findViewById(android.R.id.text1);

 tv.setPaintFlags(tv.getPaintFlags() | Paint.STRIKE_THRU_TEXT_FLAG);

 using the above line of code we can strike the text,but how can i remove the 
 strike on the text.like reverse of above.

  --
 You received this message because you are subscribed to the Google
 Groups Android Developers group.
 To post to this group, send email to android-developers@googlegroups.com
 To unsubscribe from this group, send email to
 android-developers+unsubscr...@googlegroups.com
 For more options, visit this group at
 http://groups.google.com/group/android-developers?hl=en

-- 
You received this message because you are subscribed to the Google
Groups Android Developers group.
To post to this group, send email to android-developers@googlegroups.com
To unsubscribe from this group, send email to
android-developers+unsubscr...@googlegroups.com
For more options, visit this group at
http://groups.google.com/group/android-developers?hl=en

Re: [android-developers] hi friends

2012-12-05 Thread bob
Maybe this:

tv.setPaintFlags(tv.getPaintFlags()  ~Paint.STRIKE_THRU_TEXT_FLAG);



On Wednesday, December 5, 2012 6:00:21 AM UTC-6, sree wrote:

  TextView tv=(TextView) v.findViewById(android.R.id.text1);

 tv.setPaintFlags(tv.getPaintFlags() | Paint.STRIKE_THRU_TEXT_FLAG);

 using the above line of code we can strike the text,but how can i remove the 
 strike on the text.like reverse of above.



-- 
You received this message because you are subscribed to the Google
Groups Android Developers group.
To post to this group, send email to android-developers@googlegroups.com
To unsubscribe from this group, send email to
android-developers+unsubscr...@googlegroups.com
For more options, visit this group at
http://groups.google.com/group/android-developers?hl=en

[android-developers] hi friends

2012-12-05 Thread sree android
i would like to display options menu in one activity,when i click one item
in options menu,another options (like options within the options menu on
same window )will be display in the same window.how it is posible with any
code.plz
thank you.

-- 
You received this message because you are subscribed to the Google
Groups Android Developers group.
To post to this group, send email to android-developers@googlegroups.com
To unsubscribe from this group, send email to
android-developers+unsubscr...@googlegroups.com
For more options, visit this group at
http://groups.google.com/group/android-developers?hl=en

Re: [android-developers] hi friends

2012-12-05 Thread rambabu mareedu
you need to take submenu


On Thu, Dec 6, 2012 at 10:21 AM, sree android
android.sreeni...@gmail.comwrote:

 i would like to display options menu in one activity,when i click one item
 in options menu,another options (like options within the options menu on
 same window )will be display in the same window.how it is posible with any
 code.plz
 thank you.

 --
 You received this message because you are subscribed to the Google
 Groups Android Developers group.
 To post to this group, send email to android-developers@googlegroups.com
 To unsubscribe from this group, send email to
 android-developers+unsubscr...@googlegroups.com
 For more options, visit this group at
 http://groups.google.com/group/android-developers?hl=en




-- 
Regards
Rambabu Mareedu
9581411199

-- 
You received this message because you are subscribed to the Google
Groups Android Developers group.
To post to this group, send email to android-developers@googlegroups.com
To unsubscribe from this group, send email to
android-developers+unsubscr...@googlegroups.com
For more options, visit this group at
http://groups.google.com/group/android-developers?hl=en

[android-developers] hi friends

2012-12-04 Thread sree android
help me.i would like to display images in gridview from sd card specific
folder.
any body have any idea,give me please.

-- 
You received this message because you are subscribed to the Google
Groups Android Developers group.
To post to this group, send email to android-developers@googlegroups.com
To unsubscribe from this group, send email to
android-developers+unsubscr...@googlegroups.com
For more options, visit this group at
http://groups.google.com/group/android-developers?hl=en

Re: [android-developers] hi friends

2012-12-04 Thread TreKing
On Tue, Dec 4, 2012 at 4:06 AM, sree android android.sreeni...@gmail.comwrote:

 help me.i would like to display images in gridview from sd card specific
 folder.
 any body have any idea,give me please.


Try asking a more specific question.

-
TreKing http://sites.google.com/site/rezmobileapps/treking - Chicago
transit tracking app for Android-powered devices

-- 
You received this message because you are subscribed to the Google
Groups Android Developers group.
To post to this group, send email to android-developers@googlegroups.com
To unsubscribe from this group, send email to
android-developers+unsubscr...@googlegroups.com
For more options, visit this group at
http://groups.google.com/group/android-developers?hl=en

Re: [android-developers] hi friends

2012-11-29 Thread Jovish P
first image

listview with custom adapter and custom layout for each row.
based on the check u can strike of the text view text

TextView tv=(TextView) v.findViewById(android.R.id.text1);
tv.setPaintFlags(tv.getPaintFlags() | Paint.STRIKE_THRU_TEXT_FLAG);



second image

listview  itself and on click you can show quick contact badge.
http://mobile.tutsplus.com/tutorials/android/android-sdk_contact-badge/

regards,
jovish

On Thu, Nov 29, 2012 at 10:07 AM, TreKing treking...@gmail.com wrote:

 On Wed, Nov 28, 2012 at 10:26 PM, sree android 
 android.sreeni...@gmail.com wrote:

 in first attachment(1.jpg) Checkboxes 5 and 6 are selected,after
 selecting mark is came.How, which concept is follow here.
  help me with link or code.

 and in second attachment,when i click third checkbox another window is
 open here it is tabs concept or expandable listview.plz replay me.


 Your questions are not very clear and hard to follow. You will have to
 clarify if you want some help. Maybe use Google translate or something.


 -
 TreKing http://sites.google.com/site/rezmobileapps/treking - Chicago
 transit tracking app for Android-powered devices

  --
 You received this message because you are subscribed to the Google
 Groups Android Developers group.
 To post to this group, send email to android-developers@googlegroups.com
 To unsubscribe from this group, send email to
 android-developers+unsubscr...@googlegroups.com
 For more options, visit this group at
 http://groups.google.com/group/android-developers?hl=en


-- 
You received this message because you are subscribed to the Google
Groups Android Developers group.
To post to this group, send email to android-developers@googlegroups.com
To unsubscribe from this group, send email to
android-developers+unsubscr...@googlegroups.com
For more options, visit this group at
http://groups.google.com/group/android-developers?hl=en

[android-developers] hi friends

2012-11-21 Thread sree android
how can i access json web services from java(servlets or JSP) to
android,here only i will check username and password of mysql database.
when i enter username and password ,compare toMySql database.if comparation
is true then navigate new activity,other wise display toast like invalid
username and password.

please give me any idea and code.it is very urgent for me.

thank you advance.
sorry for my english.

-- 
You received this message because you are subscribed to the Google
Groups Android Developers group.
To post to this group, send email to android-developers@googlegroups.com
To unsubscribe from this group, send email to
android-developers+unsubscr...@googlegroups.com
For more options, visit this group at
http://groups.google.com/group/android-developers?hl=en

Re: [android-developers] hi friends

2012-11-21 Thread Michael Banzon
First: I'm betting that you won't find anyone willing to give you a
complete solution to this very vague problem. If you can ask a more
specific question based on a real problem - not easily solvable by
searching google etc. - people will be more likely to provide you with
useful help.

Second: You really need to consider that the security in your application
is based on server communication. Several issues come to mind, including
connection issues and the fact that it seems that the app contains the
secured information which isn't quite good practice (for issues like
preventing large downloads etc. you could provide a decryption key).


On Wed, Nov 21, 2012 at 12:14 PM, sree android
android.sreeni...@gmail.comwrote:

 how can i access json web services from java(servlets or JSP) to
 android,here only i will check username and password of mysql database.
 when i enter username and password ,compare toMySql database.if
 comparation is true then navigate new activity,other wise display toast
 like invalid username and password.

 please give me any idea and code.it is very urgent for me.

 thank you advance.
 sorry for my english.

  --
 You received this message because you are subscribed to the Google
 Groups Android Developers group.
 To post to this group, send email to android-developers@googlegroups.com
 To unsubscribe from this group, send email to
 android-developers+unsubscr...@googlegroups.com
 For more options, visit this group at
 http://groups.google.com/group/android-developers?hl=en




-- 
Michael Banzon
http://michaelbanzon.com/

-- 
You received this message because you are subscribed to the Google
Groups Android Developers group.
To post to this group, send email to android-developers@googlegroups.com
To unsubscribe from this group, send email to
android-developers+unsubscr...@googlegroups.com
For more options, visit this group at
http://groups.google.com/group/android-developers?hl=en

Re: [android-developers] hi friends

2012-08-24 Thread sree android
thank you friend

-- 
You received this message because you are subscribed to the Google
Groups Android Developers group.
To post to this group, send email to android-developers@googlegroups.com
To unsubscribe from this group, send email to
android-developers+unsubscr...@googlegroups.com
For more options, visit this group at
http://groups.google.com/group/android-developers?hl=en

[android-developers] hi friends

2012-08-23 Thread sree android
i friends ,
i want to display route path between two cities in my app
any one help plz

-- 
You received this message because you are subscribed to the Google
Groups Android Developers group.
To post to this group, send email to android-developers@googlegroups.com
To unsubscribe from this group, send email to
android-developers+unsubscr...@googlegroups.com
For more options, visit this group at
http://groups.google.com/group/android-developers?hl=en

Re: [android-developers] hi friends

2012-08-23 Thread Asheesh Arya
just go through this link hope you got some idea
http://eagle.phys.utk.edu/guidry/android/mapOverlayDemo.html

-- 
You received this message because you are subscribed to the Google
Groups Android Developers group.
To post to this group, send email to android-developers@googlegroups.com
To unsubscribe from this group, send email to
android-developers+unsubscr...@googlegroups.com
For more options, visit this group at
http://groups.google.com/group/android-developers?hl=en

[android-developers] hi friends visit this page you have many friends

2011-03-30 Thread GR
http://123maza.com/75/play814/

-- 
You received this message because you are subscribed to the Google
Groups Android Developers group.
To post to this group, send email to android-developers@googlegroups.com
To unsubscribe from this group, send email to
android-developers+unsubscr...@googlegroups.com
For more options, visit this group at
http://groups.google.com/group/android-developers?hl=en