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

I'm currently playing about with some XNA stuff learning to program AI. Anyway, here's
I'm currently learning assembler and writing some program in real mode. I have some
So I am currently learning C++ and decided to make a program that tests
im currently learning python (in the very begining), so I still have some doubts
im currently learning stacks in java and have a quick question. what will the
I am learning Java using the book Java: The Complete Reference. Currently I am
I'm currently learning libgmp and to that end I'm writing a small program which
I am currently learning objective c on my pc and my program will not
I'm currently learning Windows/DOS assembly. I'm just making a small program that adds two
I've recently started learning Python (long time Java programmer here) and currently in the

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.