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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 26, 20262026-05-26T19:21:13+00:00 2026-05-26T19:21:13+00:00

I have a string from a file that am storing into 3 separate TextViews

  • 0

I have a string from a file that am storing into 3 separate TextViews because I was having alignments issues with a single TextView. How can I scroll only this section of my screen to see all of the contents of the file?

BufferedReader buf = new BufferedReader(new FileReader(file));
while((line = buf.readLine())!= null) {

    StringTokenizer st = new StringTokenizer(line);

    a = st.nextToken();
    b = st.nextToken();
    c = st.nextToken();

    text1.append(a + '\n');
    text2.append(b + '\n');
    text3.append(c + '\n');
}

dp1.setText(text1);
dp2.setText(text2);
dp3.setText(text3);
  • 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-26T19:21:13+00:00Added an answer on May 26, 2026 at 7:21 pm

    You can use the following xml with a few tweaks if needed,

    <HorizontalScrollView
         android:layout_width="wrap_content"
         android:layout_height="wrap_content">
    
      <TextView  android:id="@+id/dp1"... />
      <TextView  android:id="@+id/dp2"... />
      <TextView  android:id="@+id/dp3"... /> 
    </HorizontalScrollView>
    

    And now in your java code, you can access them as,

    TextView textV1 = (TextView)findViewById(R.id.dp1);
    TextView textV2 = (TextView)findViewById(R.id.dp2);
    TextView textV3 = (TextView)findViewById(R.id.dp3);
    
    textV1.setText(text1);
    textV2.setText(text2);
    textV3.setText(text3);
    

    if you want you can use vertical scroll bars as,

    <ScrollView xmlns:android="http://schemas.android.com/apk/res/android" 
        android:scrollbars="vertical" 
        android:layout_height="set the height here" >
    
    </ScrollView> 
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I have a helper class pulling a string from an XML file. That string
So I have a plist structured string, that get dynamically (not from the file
HI, I have some string from XML file, and I I want to replace
I have a formatted string from a log file, which looks like: >>> a=test
I have this method for grabbing the file name from a string URI. What
I have a string from which I wish to extract a single word, but
I'm having some trouble restored SharedPreferences into an activity separate from the original. I
I have binary data in a file that I can read into a byte
I have a string from an email header, like Date: Mon, 27 Oct 2008
I have a string coming from a table like can no pay{1},as your payment{2}due

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.