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

  • Home
  • SEARCH
  • 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 8903553
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 15, 20262026-06-15T01:53:54+00:00 2026-06-15T01:53:54+00:00

I have a button, with the ID button1. When you click the button, it

  • 0

I have a button, with the ID button1.
When you click the button, it opens another activity, where you can enter in text, when you press the back button again, it saves the text and displays is on the button. But I only want the first 10 or so characters to show on the button. Is this possible?

Here is some code:

Button item1 = (Button)findViewById(R.id.button1);
        item1.setText(PrefConnector.readString(this, PrefConnector.ONE, null));

The conect of the string PrefConnector.readString(this, PrefConnector.ONE, null) is very long, about a paragraph. So I only want the first 10 characters to appear on the button, and if possible an ellipse on the end to show that there is more text.

Thanks

  • 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-15T01:53:55+00:00Added an answer on June 15, 2026 at 1:53 am

    To modify the String itself use substring():

    String ellipsed = PrefConnector.readString(this, PrefConnector.ONE, null);
    if(ellipsed.length() > 10)
        ellipsed = ellipsed.substring(0, 10) + "...";
    item1.setText(ellipsed);
    

    Alternatively, you should also be able to define a maximum width in your Button’s XML and allow it to use ellipses when necessary:

    <Button
        android:id="@+id/button1"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:ellipsize="end"
        android:maxWidth="50dp" />
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I have the following form. The first button opens a text file and displays
I have a div which opens when I click a menu button, I am
I have open pdf file through my application.when click on device back button it
I have a button,Linkbutton and an ModalPopup. If I click button1 I need to
I have a Main-Activity which displays several spinners. With a Toggle-Button in the Main-Activity
I have this form called MainForm.cs. When I click Enter The Progam button I
I have one form that opens another form upon clicking a button. When the
I have a ListView that opens another activity when an item row is clicked
How can I open another layout xml file when I click on a button
I have a button: <button>Click</button> I want click it and open a new window

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.