How can i use .net webservice to make login app in android phone app?
        Posted  
        
            by Srikanth Naidu
        on Stack Overflow
        
        See other posts from Stack Overflow
        
            or by Srikanth Naidu
        
        
        
        Published on 2010-05-22T11:39:56Z
        Indexed on 
            2010/05/22
            11:40 UTC
        
        
        Read the original article
        Hit count: 278
        
How can i use .net webservice to make login app in android phone app?
i have the Main.xml in layout like this
i have a dologin.java
package ads.login;
import android.app.Activity; import android.os.Bundle; import android.view.View.OnClickListener; import android.view.View; import android.widget.Button; import android.widget.Toast; import android.app.AlertDialog; import android.content.DialogInterface; import android.app.ProgressDialog;
public class DoLogin extends Activity { /** Called when the activity is first created. */ @Override public void onCreate(Bundle savedInstanceState) { super.onCreate(savedInstanceState); setContentView(R.layout.main);
}
}
© Stack Overflow or respective owner