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 6251867
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 24, 20262026-05-24T13:41:37+00:00 2026-05-24T13:41:37+00:00

I am currently learning how to program Java in android. I read various artices

  • 0

I am currently learning how to program Java in android. I read various artices on how the layouts work with xml. There are some good examples that show this.. However, I have not seen any examples that show you how to access the elements from the layout once they are changed on the screen..

Does anybody know of a good code example to show the onClick Event for buttons.. and the syntax to enter the value that is typed in by the user in and EditText field..

any help is appreciated..

Regards,
Jeff

  • 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-24T13:41:38+00:00Added an answer on May 24, 2026 at 1:41 pm

    Here’s a simple example.

    Layout:

    <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
        android:orientation="vertical"
        android:layout_width="fill_parent"
        android:layout_height="fill_parent" >
    
        <EditText
                android:id="@+id/edit" 
                android:layout_width="fill_parent" 
                android:layout_height="wrap_content" />  
            <Button 
                android:layout_height="wrap_content"
                android:layout_width="wrap_content"
                android:text="@string/button"
                android:onClick="getText" />
    </LinearLayout>
    

    The Button has an onClick method called getText, and the Edit text has an ID of edit. In the Activity that uses this Layout, you would write the following code:

    public void getText(View view) {
        EditText editText = (EditText)findViewById(R.id.edit);
        String text = editText.getText().toString();
       // do something with the text
    }
    

    Alternatively, if your Button XML has an ID but no onClick, like this:

    <Button 
        android:layout_height="wrap_content"
        android:layout_width="wrap_content"
        android:text="@string/button"
        android:id="@+id/button" />
    

    Then you would write the onClick handler in your Activity like this:

    Button button = (Button)findViewById(R.id.button);
    button.setOnClickListener(new onClickListener() {
        EditText editText = (EditText)findViewById(R.id.edit);
        String text = editText.getText().toString();
       // do something with the text    
    });
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

So I am currently learning C++ and decided to make a program that tests
I'm learning XML, currently of Wikibooks, but that is kinda huge and not oversee-able...
Currently, I program in Java and use Maven quite a bit. As so I've
I am currently learning about basic networking in java. I have been playing around
I am currently learning java, I understand the concepts except Graphics which as a
I'm currently working with Java to write a program that does an EAI between
I currently learning about scrum and want to learn from experienced professionals in the
I'm currently learning Haskell, Which language (F# or Haskell) do you prefer for programming
I'm currently learning the APIs related to Intel's parallelization libraries such as TBB, MKL
Im in the process of learning asp.net 3.5, currently on webparts and co. Ive

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.