2
votes
3answers
2k views
Android TextView Timer
Hello,
For my Android application there is a timer that measures how much time has passed. Ever 100 milliseconds I update my TextView with some text like "Score: 10 Time: 100.10 seconds". But, I find …
2
votes
1answer
52 views
Android TextView’s subscript being cliped off
The Android TextView clips off my text subscripts (see image below) even when I use android:layout_height="wrap_content" for the TextView.
Is there a fix/work-around for this?
P/S: Superscripts …
3
votes
2answers
338 views
Syntax Highlighting in Cocoa TextView? Experiences? Suggestions? Ideas?
I'm interested in syntax highlighting in a Cocoa TextView.
I found several resources:
approach with flex, via a flex pattern matched against textStorageDidProcessEditing
in a TextView delegate. In …
1
vote
3answers
2k views
How do I center text horizontally and vertical in a TextView in Android?
How do I center text horizontally and vertical in a TextView in Android? So that it appears exactly in the middle of the screen.
0
votes
4answers
2k views
UITextView on a UIAlertView (multi-line input)
Hi, i'm having a couple of problems when i try to alloc a UITextView on an AlertView.
Here is my code:
UIAlertView* minhaCritica = [UIAlertView new];
minhaCritica.title = @"7Arte";
[minhaCritica …
0
votes
0answers
14 views
Making TextView Scrollable in Android
I am displaying text in a textview that appears to be too long to fit
into one screen. I need to make my TextView scrollable. How can i do
that? Here is the code
final TextView tv = new …
2
votes
1answer
27 views
Is There A Standard Way To Allow The User To Select A Text Viewer?
In my Windows desktop program, I want to be able to allow the user to select a text viewer that my program will use.
By default, I'll have it set to be the program (s)he uses to view .TXT files, and …
1
vote
1answer
63 views
handle textview link click in my android app
I'm currently rendering HTML input in a TextView like so:
tv.setText(Html.fromHtml("<a href='test'>test</a>"));
The HTML being displayed is provided to me via an external resource, so I …
0
votes
0answers
32 views
For Android: Changing view backgrounds,texts on Scroll Event
I have 27 drawables in my res folder. I want my TextView to have its background and text changed while the user scrolls vertically(both up and down).And i want this feature to carry on forever until …
0
votes
2answers
125 views
Android: TextView automatically truncate and replace last 3 char of String
If a String is longer than the TextView's width it automatically wraps onto the next line. I can avoid this by using android:singleLine (deprecated) or by setting android:inputType="text". What I now …
0
votes
1answer
31 views
How to adjust text kerning in Android TextView?
Is there a way to adjust the spacing between characters in an Android TextView? I believe this is typically called "kerning".
I'm aware of the android:textScaleX attribute, but that compresses the …
1
vote
2answers
350 views
Android: Is it possible to have multiple styles inside a TextView?
I was wondering if its possible to set multiple styles for different pieces of text inside a TextView. For instance, I am setting the text as follows:
descbox.setText(line1 + "\n" + line2 + "\n" + …
0
votes
0answers
39 views
How to put TextView in same position in landscape and portrait mode in Android
Hi All,
I am facing a problem when i put a textview on screen in landscape mode it position is fine but when i switch to portrait mode it position is remain fix it not change according to screen …
1
vote
1answer
359 views
android TextView: setting the background color dynamically doesn’t work
Setting the background color programatically of an android TextView doesn't seem to work.
I'm I missing something!
TextView et = new TextView(activity);
et.setText("350");
…
0
votes
2answers
260 views
Ellipsize not working for textView inside custom listView
Hi,
I have a listView with custom objects defined by the xml-layout below. I want the textView with id "info" to be ellipsized on a single line, and I've tried using the attributes
…
