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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 10, 20262026-06-10T02:56:09+00:00 2026-06-10T02:56:09+00:00

I wrote android code to send data that taken from textbox from one activity

  • 0

I wrote android code to send data that taken from textbox from one activity to appear in Toast message in another activity in the same project

and this is code

the code of main activity is

public void onCreate(Bundle savedInstanceState) {
    super.onCreate(savedInstanceState);
    setContentView(R.layout.activity_main);

    Button btn = (Button) findViewById(R.id.button1);
    EditText txt = (EditText) findViewById(R.id.editText1);

    btn.setOnClickListener(new View.OnClickListener() {

        public void onClick(View v) {
            // TODO Auto-generated method stub
            String str = txt.getText().toString();
            Intent i = new Intent(MainActivity.this,Target.class);
            i.putExtra("Name", str);
            startActivity(i);
        }
    });

}

and the code of target activity is

public void onCreat(Bundle savedInstanceState )
{
    super.onCreate(savedInstanceState);
    setContentView(R.layout.activity_target);

    Bundle b = getIntent().getExtras();
    String s = b.getString("Name");
    Toast.makeText(Target.this, s, Toast.LENGTH_SHORT).show();
}

when I run the project and write something in textbox and press the button
the other activity is opened and nothing happened.

can you help me and tell me why this problem occurred?

  • 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-06-10T02:56:10+00:00Added an answer on June 10, 2026 at 2:56 am

    I got the problem, small typo

    public void onCreat(Bundle savedInstanceState)
    

    should be

    public void onCreate(Bundle savedInstanceState)
    

    missing e 🙂

    It will not override the super class onCreate, though it is a valid function. But never be called.

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I wrote an android program that: has a main activity for UI, and it
I'm trying to write a java code on an Android emulator that will send
I have a instream that takes in raw binary data from Bluetooth on Android
I wrote an android app for someone, but they want the source code because
I would like to capture an image from the camera on Android, and send
I am trying to retrieve data from mysql then display it on android listview.
I wrote this code to try threads on Android, but it doesn't work. @Override
I referenced the code from Android Developer. After compliling the code and fooling around
I want to send a csv file from Android to Python AppEngine. I'm using
I wrote the following code to delete a file from the SD Card: /**

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.