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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 18, 20262026-05-18T06:50:12+00:00 2026-05-18T06:50:12+00:00

I want to get text from Edit text as it is and display in

  • 0

I want to get text from Edit text as it is and display in TextView.But whenver i get text using getText() it gives me text in one line. How to entered text in multiline EditText as it is. Please give me guidance?

  • 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-18T06:50:13+00:00Added an answer on May 18, 2026 at 6:50 am

    Rajendar,

    I don’t understand why you’re having this issue. When you obtain a piece of text out of an EditText it should keep “formatting” such as line breaks.

    For instance, try this code (I tested it myself)!

    main.xml

    <?xml version="1.0" encoding="utf-8"?>
    <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/et"
        android:layout_width="fill_parent" 
        android:layout_height="wrap_content"
        />
    
    <TextView
        android:id="@+id/tv"
        android:layout_width="fill_parent" 
        android:layout_height="wrap_content" 
        android:text="@string/hello"
        />
    
     <Button 
        android:id="@+id/m_button"
        android:layout_width="fill_parent" 
        android:layout_height="wrap_content"
        android:text="Button"
        />
    </LinearLayout>
    

    main.java

    public class MainTest extends Activity {
        /** Called when the activity is first created. */
        @Override
        public void onCreate(Bundle savedInstanceState) {
            super.onCreate(savedInstanceState);
            setContentView(R.layout.main);
    
            Button button = (Button) findViewById(R.id.m_button);
            button.setOnClickListener(btnListener);
        }
    
    
        //button listener
        private OnClickListener btnListener = new OnClickListener() {
    
         public void onClick (View view) {
    
          EditText et = (EditText) findViewById(R.id.et);
          String str = et.getText().toString();
    
          Toast.makeText(getBaseContext(), str, Toast.LENGTH_LONG).show();
    
          TextView tv = (TextView) findViewById(R.id.tv);
    
          tv.setText(str);
         }
        }; 
    } 
    

    Both Toast and TextView keep line breaks. You can try it yourself.

    Maybe if you post your code (the relevant bits, at least) we can help you.

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

Sidebar

Related Questions

I want to get text from current active line (the line where the caret
Hi i want to get changed text value from JQuery but i can't select
I want to get some text from a PHP page into an Android application.
i want to get first n words from text stored in my database without
I want to check if a particular char I get from the text field
I want to write the text (which I get from AJAX) to a file,
I want to get back the text that I select in an element using
I want to get the currently selected item (text, image, etc) and display in
I'm trying to display a notification using Easy Notification , but I don't want
I want to get the text between the td tags of an html page..

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.