The tag has no wiki summary.

learn more… | top users | synonyms

0
votes
0answers
14 views

Retrieving SpannableStringBuilder string as an array

I am facing some problem trying to get Array of String from SpannableStringBuilder. I have tried mapping positions using TextWatcher and getSelection() but, it seemed to have complicated things. In my ...
0
votes
1answer
31 views

Android - How to use SpannableString to place text

I have the next list item which shows two texts, one aligned to the left and one aligned to the right. For now, each text is placed in a different TextView: I would like to use only one TextView. ...
0
votes
3answers
69 views

Change Text Color of a Specific Character

Currently I m using TextView. I need to change the color of specific character in a string , as i have to work with localization so SpannableString won`t help me that much. The string may be like ...
0
votes
1answer
82 views

How can i combine Text and Images in a TextView at runtime

Currently i have an application which displays pages of text in a TextView with the help of ViewPager and Fragments. Is it possible to include images with the text in the text view which would be ...
1
vote
3answers
70 views

Why doesn't my text show up with style when using SpannableStringBuilder?

I have a problem with a SpannableString object. Below's a short example: SpannableString spanstr = new SpannableString("Bold please!"); spanstr.setSpan(new StyleSpan(Typeface.BOLD), 0, ...
0
votes
1answer
31 views

Can a SpannableString be set in a fragment?

If a SpannableString can be set as the arguments of a fragment how is it done? Bundle args = new Bundle(); args.putString(PagesFragment.ARG_SECTION_NUMBER, Page[position]); ...
2
votes
1answer
63 views

Ellipsize individual lines of a SpannableString in a TextView

I have a TextView storing an address that is two lines long. The street goes on the first line and is bold. The city & state go on the second line and are not bold. I want the end of each line ...
1
vote
0answers
249 views

java.lang.ClassCastException: android.text.SpannableStringBuilder cannot be cast to java.util.ArrayList

I'm using the phonegap Android plugin: EmailComposerwithAttachments https://github.com/phonegap/phonegap-plugins/tree/master/Android/EmailComposerWithAttachments and it occurs the following error when ...
0
votes
0answers
134 views

Android EditText, replace parts of text with Spannable and also keep original Spannable

Let's say, the content of the EditText as below "AAA BBB CCC" I know how to set "AAA" with "setSpan()". But what if "AAA" was set and want to set "BBB" or "CCC" then how to keep "AAA" with its ...
0
votes
1answer
201 views

Android, SpannableString, ArrayAdapter and Listview

i am newbie to android and i got a question for you. I want to add icon to a text in a listview. I'm adding the rows(textview) to listview dynamically with below code. But the text doesnt contain the ...
0
votes
0answers
69 views

Android adding image between the textview

I created a sample class for the spannable string it is working fine. Here is the sample code. public class SpannableImageString { private static final String TAG = "SpannableImage"; public static ...
2
votes
1answer
179 views

Is there any way to replace text in EditText with spannable, but save value?

What I have: user see EditText and can input some numbers into it, or push button and some numbers will be insert into EditText. The problem is to replace the numbers with text, but save numeric ...
0
votes
0answers
108 views

Implement chat emoticon by SpannableString in android: Slowly speed

I used SpannableString to implement chat emoticon and show it in a listview but it runs very slowly. Can anyone give me an idea?. Here's my code Thank you in advance and sorry for my poor English!
0
votes
1answer
220 views

How to set multiple spans on a TextView's text on the same partial text?

Suppose I have the next text : Hello stackOverflow And I wish to set the second word to be both RelativeSizeSpan (to set a relative font size) and TextAppearanceSpan (to set the color of the ...
0
votes
0answers
113 views

How to Include clickable text in staticlayout and surfaceview

I designing an interactive kids book. I am using a canvas on surfaceview since I need animations which I think are best suited to surfaceview I want to make each word touchable and read that word ...
0
votes
1answer
151 views

programmatically create styles in Android without referring to resources

I'm working on an app that reads in text from an XML document and then displays that text on the screen. I want to be able to create a TextAppearanceSpan object programmatically based on parameters ...
1
vote
1answer
144 views

StringIndexOutOfBoundsException from SpannableStringInternal

I keep recieving the following bug reports from the market: java.lang.StringIndexOutOfBoundsException: length=51; regionStart=37; regionLength=-15 at ...
0
votes
1answer
74 views

NullPointerException thrown while creating SpannableString

I am trying to create a textview whose text is partially underlined using a spannableString but I'm getting a nullpointerexception when I try to do that. Here's my code: tv = (TextView) ...
0
votes
1answer
129 views

How can I build up a display using an EditText with different colors for command and response strings?

I am trying to implement a hypertext-like application so I can use a tablet via USB to talk to a PIC system. My concept is to have a fragment showing two EditText views, one to allow a command to be ...
3
votes
2answers
636 views

Text is messed up with ImageSpan in EditText

I am building a simple chat app where the user has the ability to send text and emoticons. I can send both text and emoticons to another phone. My problems are: 1.When I type something and add an ...
0
votes
1answer
191 views

Align bitmap in SpannableStringBuilder

How can I align a bitmap to the text in a SpannableString? SpannableStringBuilder ssb = new SpannableStringBuilder(arr_messages.get(position)); String msg1 = ssb.toString(); for (int i=0; ...
0
votes
2answers
218 views

Set different font and color to part of a TextView

I tried this: String s = "Some big string" SpannableStringBuilder sb = new SpannableStringBuilder(s); //normal font for 1st 9 chars sb.setSpan(robotoRegular, 0,9,Spannable.SPAN_INCLUSIVE_INCLUSIVE); ...
0
votes
0answers
88 views

Animate SpannableString with a TextSwitcher

I have some formatted text I'm trying to animate by fading in and fading out. I have a SpannableString, I'm able to get the text to display, but the animations do not work. The text just displays ...
1
vote
0answers
140 views

Highlight multiple words in a string using SpannableString

I'm using a SpannableString to underline certain words, however, I realized the code I have only highlights the first word if there are multiple words. Not exactly sure how to accomplish highlighting ...
0
votes
2answers
261 views

Using custom font for part of a Text

Typeface robotoBold = Typeface.createFromAsset(activity.getAssets(), "fonts/Roboto-Bold.ttf"); Typeface robotoLight = Typeface.createFromAsset(activity.getAssets(), ...
3
votes
1answer
320 views

Is there any way to make custom Spannables on Android?

In my Android app I've got text views with links. Each of them is toggling a particular event (opening browser, starting another activity, etc...). To handle that, I haven't found any better solution ...
0
votes
1answer
537 views

Android Spannable Line Height

I have been trying to figure this one out for the last couple of days now, and have had no success... I'm learning android right now, and am currently creating a calculator with history as my ...
4
votes
1answer
172 views

Replace the characters with Image in string and then set to Textview

This is :) and want to :) replace with :D new image. I have this type of string that is i have got from EditTextbox.NOw i want to replace all ":)" with image1 and ":D" with image2.I want to do like ...
0
votes
2answers
161 views

android TextView make invisible span on Kindle Fire

I want to have a portion of my TextView invisible. In detail, I present a math problem to the user: 9 * 9 = 81 and I want 81 to be invisible. As user types correct answer, I make digit "8" and then ...
1
vote
1answer
1k views

ImageSpan in textview with image and text

I want to display instead of ":)" a png image from drawable, in TextView where I 'm receiving SMS message. I set this as: sms.setText(smstext); //this is where I receive SMS SpannableString text = ...
0
votes
1answer
191 views

How to remove a SpannableString in EditText by EditText.getSelectionStart()

just like implement del button function How to remove a SpannableString in EditText by EditText.getSelectionStart() private void enterExpression(String imageFile) { try { Field field = ...
0
votes
2answers
319 views

Converting a SpannableString to a ClickableSpan

I am trying to make clickable links in text strings that launch an activity when clicked. I have used Linkify() to detect links in my text. This function is capable of adding links to text, but only ...
1
vote
1answer
133 views

Pass SpannableString to function, return SpannableString

I'm using a snippet of code that seeks through a SpannableString text for a regular expression and removes the first and last characters of any instances of that expression - in this case, text bound ...
1
vote
1answer
213 views

How can I span multiple strings in a TextView?

I tried this code to create a TextView with the string "abcde" where 'b' and 'd' have spanning: private void testStringSpanning(TextView tv) { // blue ForegroundColorSpan fcs = new ...
1
vote
0answers
74 views

Is there any simple way to parse a SpannableStringBuilder as XML?

I am trying to convert a rich text field to an XML file for export; it seems quite a complicated process; trying to properly close StyleSpans, for example turning a SpannableStringBuilder with the ...
0
votes
1answer
155 views

Show number of Notifications on the side navigation menu

I am using Horizontal ScrollView to get facebook like side navigation Like this: But how to show that "2" beside the Event item in the menu? In my application i am using a ViewUtil class to get ...
5
votes
1answer
834 views

How to align TextView around an ImageView?

I am trying to align the TextView around ImageView. I am using the following code: private void createSpannableText(){ TextView myTextView = (TextView) findViewById(R.id.textView); ...
1
vote
0answers
321 views

How to align text on both left and right side of one TextView line?

I want to set text in a single line TextView on both left and right side of the only line. For this I use a SpannableStringBuilder. Here is an example : mSpannableStringBuilder.append("leftright"); ...
0
votes
2answers
235 views

Android use SpannableString in widgets?

Can I use SpannableStrings in a widget's textView? I tried and all it rendered was plain text. I don't know if it is something I'm doing wrong (most likely), or if it just isn't possible for some ...
0
votes
2answers
131 views

SpannableStringBuffer limited to 9,999 characters?

My app reads in large amounts of data from text files assets and displays them on-screen in a TextView. (The largest is ~450k.) I read the file in, line-by-line into a SpannableStringBuffer (since ...
0
votes
1answer
293 views

Android Pattern matching (not matching)

I am trying to match "\b\w+:" inside the string "Search\nPrefix with tag: app: or text:" The code looks like: String s = "Search\nPrefix with tag: app: or text:"; SpannableString str = ...
2
votes
3answers
963 views

Android TextView format multiple words

Original String: Lorem ##ipsum## dolar ##sit## atem. Lorem ipsum dolar sit ##atem##. After formating: Lorem #ipsum dolar #sit atem. Lorem ipsum dolar sit #atem. But only the last one has the ...
1
vote
0answers
148 views

Spannable Text in a TextView Not Responding to Animation

I'm new at this but basically I have a textview that is fading in and out. After it fades in and out once, the text is changed. I used a spannable string to make the first word of this text red. ...
0
votes
1answer
137 views

How to make image of characters compatible with characters of a font?

As Bangla Complex font rendering is not supported, complex characters are shown broken (like ক্ষ is shown as ক+্‌+ষ ). So I'm replacing only those complex characters by image in my TextView using ...
1
vote
0answers
188 views

Combining dynamic edittext from listview with a string from database

I'm having trouble understanding how to do this function. My application shows a listview to the user with edittext that they will fill out. When they click my confirm button I need take their inputs ...
4
votes
1answer
1k views

Adjusting text alignment using SpannableString

I have created a SpannableString, with the first character, and last 2 smaller than the rest. It looks like this: sBBBBss I would like to align the smaller characters so they are aligned with the ...
0
votes
0answers
161 views

Android EditText jumping between tokens in string

I have an EditText in which a user is inputting a mathematical expression. I have two buttons controlling the cursor, left and right. If say, the character on the left is a number when i press ...
1
vote
1answer
2k views

Using SpannableString[/Builder] and Rich-text

I'm attempting to construct rich-text where the first part says "Looking for: " and is bolded, but the rest is NOT bolded. This is my code: SpannableStringBuilder lookingForString = new ...
0
votes
2answers
486 views

Why ListView.getChildCount()==0 (always)?

I want set a SpannableString to some item of the ListView when the activity create. I write it like this: doListlist=(ListView)findViewById(R.id.dolist_List); listsDbAdapter=new ...
6
votes
1answer
2k views

SpannableString: Is it possible to apply two or more RelativeSizeSpans?

I am trying to construct a SpannableString such that it looks like this: Two characters (m, s) should be smaller than the rest. I have tried to hold all the text in one SpannableString, and I also ...

1 2