Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 6834471
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 26, 20262026-05-26T23:06:57+00:00 2026-05-26T23:06:57+00:00

In my Android project I have 3 classes: 1st a List class contains a

  • 0

In my Android project I have 3 classes:

1st a List class contains a login button and 2 EditText boxes for user name and password respectively

Code looks like this :

      signin.setOnClickListener(new OnClickListener() 
    {               
        public void onClick(View v)
        {  
        EditText etxt_user = (EditText) findViewById(R.id.usereditlog);  
        t_id = etxt_user.getText().toString();             
        EditText etxt_password = (EditText) findViewById(R.id.pwdeditlog);   
        password = etxt_password.getText().toString();  

        }           
    })

2nd class is App which extends Application

             class App extends Application 
          {
                 List session = new List();

              public String getUsername() 
              {
                    return session.t_id;
              }

           public void setUsername(String username) 
             {
                  session.t_id = username;
             }

           public String getPassword() 
              {
                  return session.password;
              }

           public void setPassword(String password) 
              {
                 session.password = password;
              }


            }

3rd class is Utils where in I am facing problem in retrieving the user name and password entered during the initial execution of the List class

    public class Utils extends Activity 
  {
public static List mySessionObject = null;

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


        Button signin = (Button) findViewById(R.id.regsubmitbtn);
        signin.setOnClickListener(new View.OnClickListener() {
            public void onClick(View v) {
                Utils.mySessionObject = new List();
               //some extra initalization, for example setting userId
                  App app = (App) getApplication();
                 String username = app.getUsername();
                 String password=  app.getPassword();
            }
        });

     }
    }

The problem I am facing is retrieving the username and password from my 3rd class. For some reason it’s not working properly.

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-05-26T23:06:57+00:00Added an answer on May 26, 2026 at 11:06 pm

    You need to specify the name of your application class in manifest file like as below

    <application android:label="@string/app_name" android:name="App" android:icon="@drawable/icon">
    

    and initializing variable like below….

    ((App)getApplication()).setUsername(name);
    

    and retrive using following line,

    String name= ((App)getApplication()).getUsername();
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I have a library-only Android eclipse project (no main class, only library classes) that
I got 2 classes in my project. The first class(main) have a listview and
I have an android project containing only login module. I want to integrate this
My android project gives and error but non of my classes have one. The
I have a Android project for SDK1.5 and now I want to convert it
I have an Android project that branched into three different applications, app-1 , app-2
I have an Android project and Eclipse is telling me my project has an
I created an Android project a few months ago and now have to automate
I have Android pet-project DroidIn which utilizes HttpClient 4 (built into Android) to do
I am doing Android programing with Eclipse (Helios), and I have some utility classes

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.