Results 1 to 4 of 4
- 04-13-2012, 12:24 PM #1
Member
- Join Date
- Apr 2012
- Posts
- 2
- Rep Power
- 0
Help Needed! Android chat - pc chat server
Hi guys,
I'm new here and this is my first post. I'm new to android program as i've just started learning at university. I'm developing a chat application that interacts with a chat server on a pc. I've created a login page that has a predefined username as password within it, however i wish to implement a system that checks the login name and password to a database, how ever i have looked online at different sql login pages but i have no idea how to implement it to my code. Could anyone help please?.
p.s. sorry if this is in the wrong thread.
The coding for the login page is:
Java Code:package com.svennevik.andriod; import android.app.Activity; import android.app.AlertDialog; import android.content.DialogInterface; import android.content.Intent; import android.os.Bundle; import android.view.View; import android.view.View.OnClickListener; import android.widget.Button; import android.widget.EditText; public class AndriodPasswordActivity extends Activity { @Override public void onCreate(Bundle savedInstanceState) { super.onCreate(savedInstanceState); setContentView(R.layout.login); final AlertDialog.Builder adb = new AlertDialog.Builder(this); adb.setTitle("Login Incorrect"); adb.setMessage("Try again"); adb.setPositiveButton("Ok", new DialogInterface.OnClickListener() { public void onClick(DialogInterface dialog, int id) { } }); Button send1 = (Button)findViewById(R.id.connectButton); send1.setOnClickListener(new OnClickListener() { public void onClick(View v) { final EditText e1 = (EditText)findViewById(R.id.usernameEditText); String username = e1.getText().toString(); final EditText e2 = (EditText)findViewById(R.id.passwordEditText); String password = e2.getText().toString(); if (username.equals ("donald") && password.equals ("duck")) f (); else adb.show (); } }); } void f() { Intent i1 = new Intent(this, AndriodConnectionActivity.class); startActivity (i1); } }Last edited by DarrylBurke; 04-13-2012 at 12:29 PM. Reason: Changed QUOTE tags to CODE tags
- 04-13-2012, 12:30 PM #2
Re: Help Needed! Android chat - pc chat server
Use code tags, not quote tags for posting code. I've corrected them for you this time.
And please take the trouble to post properly indented and formatted code. Code that's all aligned to the left margin is difficult to read.
dbWhy do they call it rush hour when nothing moves? - Robin Williams
- 04-13-2012, 12:32 PM #3
Re: Help Needed! Android chat - pc chat server
Cross posted
[Q] Android Chat Program Development - xda-developers
dbWhy do they call it rush hour when nothing moves? - Robin Williams
- 04-13-2012, 12:50 PM #4
Member
- Join Date
- Apr 2012
- Posts
- 2
- Rep Power
- 0
Similar Threads
-
Help needed in this multi-client chat application
By animit in forum NetworkingReplies: 15Last Post: 04-05-2012, 06:46 PM -
123 Flash Chat Server 9.3
By java software in forum Java SoftwareReplies: 0Last Post: 12-18-2011, 05:26 PM -
Chat Server
By mrbrendano in forum New To JavaReplies: 1Last Post: 09-19-2011, 11:08 PM -
Voice chat with multiple chat rooms, suggestions needed
By sonofrage in forum NetworkingReplies: 4Last Post: 03-31-2011, 10:37 PM -
midlet chat server
By nfitte in forum NetworkingReplies: 0Last Post: 07-09-2009, 09:08 AM


LinkBack URL
About LinkBacks
Reply With Quote
Bookmarks