Displays text to the user and optionally allows them to edit it. A TextView is a complete text editor, however the basic class is configured to not allow editing; see EditText for a subclass that configures the text view for editing.
36
votes
4answers
13k views
How do I make links in a TextView clickable?
I have the following TextView defined:
<TextView android:layout_width="wrap_content"
android:layout_height="wrap_content" android:text="@string/txtCredits"
android:autoLink="web" ...
10
votes
4answers
1k views
Android Hello GridView Tutorial Will Not Display Images
First time poster!
I am new to Android development and have been following Google's HelloView tutorials without problems... until the HelloGridView tutorial. For some reason I cannot get any images ...
9
votes
3answers
1k views
Android Paint: .measureText() vs .getTextBounds()
I'm measuring text using Paint.getTextBounds(), since I'm interested in getting both the height and width of the text to be rendered. However, the actual text rendered is always a bit wider than the ...
6
votes
3answers
924 views
How to allow the user to select a text range in a TextView (Similar to EditText)
I've got a TextView that I would like to allow the user to select a range of text from within it. The TextView takes up the entire width and height of the device (minus some padding and a title at the ...
5
votes
1answer
1k views
How do I use a compound drawable instead of a LinearLayout that contains an ImageView and a TextView
Ran the new Lint tool against my code. It came up with a lot of good suggestions, but this one I cannot understand.
This tag and its children can be replaced by one and a compound drawable
...
5
votes
4answers
423 views
How to reverse the direction of marquee of a TextView
I want to reverse the direction of marquee in the TextView. By default, the text moves from Right to Left, I want it to move from Left to Right. How can I do this?
4
votes
1answer
73 views
Applying Transformation after rotation animation of textview in Android
I am performing a simple rotate animation on a textview. Animation is performed as required but transformation is not applied.
My Animation Code:
Animation animation = new ...
3
votes
8answers
309 views
TextView in the center of the screen
I have a RelativeLayout (before it was a LinerLayout), that occupies all the screen and I want to put in the center of this Layout, a TextView. I try to do it with gravity = "center" layout_gravity = ...
3
votes
2answers
106 views
How to make the two textviews invisible on the touch in android
I have come up with an idea such that on the touch of the two TextViews both become invisible. This idea works when I touch a single finger on the TextView and only one TextView becomes invisible. But ...
3
votes
2answers
390 views
inner shadow on Android TextView
is it possible to put an inner shadow on the text of a TextView in Android like this one :
Thanks !
3
votes
1answer
125 views
Merge two layout into one
Is it possible to merge two layout into one. Suppose i have two TextView of username and password in first layout vertically and two EditText in the second layout vertically. After merging this two ...
2
votes
5answers
64 views
Get Text from Android Password TextView
I hope this hasn't been asked yet, since I couldn't find it. I am attempting to get a user's username and password for an online service. I created a username TextView and a password TextView. I'm ...
2
votes
3answers
34 views
How to repeat textview?
In my Activity I have to add 10 times the same TextView.
Is it possibile to load from layout.xml the definition of textview and repeat programmatically it?
I hope that my English was understandable
...
2
votes
3answers
69 views
How to make italic TextView work in Eclipse graphic layout view? It even hangs up the PC
Working in Eclipse, I am trying to put some italics text onto a layout. The problem is, that when I am setting
android:textStyle="italic", the text disappears. (The height of content becomes 0 and ...
2
votes
2answers
40 views
Android relative layout scaling and aligning
I need to design an Andorid layout that is given below, however I cannot handle positioning properly.
Here is the types of view parts and my constraints:
A: Image View, fixed width, fix height, ...
2
votes
1answer
45 views
How to specify the width of a View to wrap content and yet be possible to be wider than its parent?
I have a TextView in a FrameLayout as follows:
<FrameLayout
android:layout_width="fill_parent"
android:layout_height="wrap_content"
... >
<TextView
...
2
votes
3answers
63 views
Set Background color in only (1/4)th portion of a View (Android)
Is it possible to set background color for only (1/4)th portion of a View in Android? I have a use case where I need to select a view and color it after dividing it in portions, Ive looked at ...
2
votes
1answer
57 views
When activity comes from background to foreground, text layout of buttons suddenly ranges from top to bottom
I keep track of a very strange behavior. One part of my layout produces these buttons:
This is the corresponding layout:
<TableLayout
android:id="@+id/mainscreenButtonbar"
...
2
votes
0answers
62 views
Is there a way to detect the word tapped in an EditText
Is there any way to map characters to a pixel location in an EditText?
I assume there is some knowledge within the component of the word at any pixel location, because you can select a word for copy ...
2
votes
2answers
68 views
findViewById retrurns wrong element?
I can't understand why findViewById returns the wrong element, here is the class:
public class EventDetailsFragment extends FragmentActivity {
@Override
public void onCreate(Bundle ...
2
votes
1answer
121 views
Android: Html.fromHtml() method weird issue
I am facing a weird issue:
My source string for Html.fromHtml() is as follows:
<strong>Terrible experience with Nikko hotel</strong><br />It was not easy to cancel booking. I ...
2
votes
2answers
154 views
Is it possible to have Camera Preview and TextView on the same screen?
I was wondering if there is some way to have a camera preview fill a part of the screen, and at the bottom have a textview box into which I can add text later.
I don't have any code yet because my ...
2
votes
1answer
289 views
Breaking large text into pages in android text switcher or view flipper
I am in the process of developing an e-book reader application for android 3.0 tablets. To begin with I have a large chunk of String data. I want to split/break that String into pages based on the ...
2
votes
4answers
92 views
Why is programatic layout invisible?
my TextView that I add to my LinearLayout is not visible...why ?
layoutVenues = (LinearLayout) findViewById(R.id.layoutv);
layoutVenues.addView(genTextView(v.getName()));
...
2
votes
1answer
64 views
Get Notified after 1st rotation of Text in Text View(ellipsize=“marquee”) in Android
What I have: I have a TextView with Ellipsize = Marquee. The textview's focus is true, so that I don't have to focus it manually, to start the text rotation.
What I want: I want to do some operation ...
2
votes
0answers
298 views
Using Custom Widgets / Classes in XML Android
I found a custom TextView Class on here by Chase but for the life of me I cannot get it to work. I have searched high and dry and I am obviously doing something wrong.
I would think I would ...
2
votes
1answer
330 views
Splitting a TextView into multiple TextViews relative to screen height
So I have what I consider a rather complex problem. I have this massive TextView that is several screen lengths long. What I want to do is split the TextView up into smaller TextViews, each the height ...
2
votes
2answers
865 views
How to line wrap Android TextView views?
I'm trying to get a TextView to wrap it's text over multiple lines, but it always just seems to get chopped off at the end of the first line. Here's the relevant XML from my view:
...
1
vote
4answers
28 views
TextView displayed without using addView in Android
I am new to Android.I have created a dynamic textview which is displayed on emulator,
but i am not adding this textview using addView then how it displayed?
Here is my code:
package ...
1
vote
1answer
33 views
Clickable links from string with links end text
I need to make text with links to webpages. I use that code but is not working:
licence = (TextView)findViewById(R.id.about_text5);
final SpannableString s = new SpannableString(Html.fromHtml("The ...
1
vote
0answers
48 views
Set textview fading in Android 4.0.3
I've just tried to implement the fade effect for TextView in Android 4.0.3; however, it doesn't work.
fadingEdge="horizontal"
singleLine="true"
ellipsize="marquee"
This code works perfectly for ...
1
vote
1answer
67 views
Is it possible to show digital texts in TextView in Android?
Hi friends,
In my application there is a requirement that the text values should be shown in a digital text format can it be possible to do in TextView (How digital clock shows)? Any help please.
1
vote
2answers
31 views
splitting one String so that the text is under eachother
i have a string that will get picked up by an intentExtra in my next class and be set as the text for a multiline TextView. i was wodnering if there is a way to split the text up so they are under ...
1
vote
2answers
57 views
re-setting a TextView height programmatically
I want to reset a textView height after I have added it to the main window in the xml file.
inside a RelativeLayout,
<TextView
android:id="@+id/text_l"
android:layout_width="50sp"
...
1
vote
3answers
34 views
positioning of textblocks and images
I have three text blocks and an image which I would like to to fit in a layout as indicated in the sketch. (Ignore the red lines for a second.)
(I know the quality is awful. If anyone can recommend ...
1
vote
1answer
41 views
Android EditText misbehaving on certain devices, especially HTC
I have a several EditTexts in a very dense/compact TextView-full application that are 3 characters wide. It displays normally on most devices and on the emulator. However on the HTC Evo 3D, HTC ...
1
vote
1answer
44 views
Android textview.setText() loses gravity?
I have a simple layout that contains a TextView between two ImageViews.
When I change the TextView at runtime with 'setText()', it changes but it loses the "center_horizontal" gravity and it is drawn ...
1
vote
1answer
29 views
List value gets altered on orientation change
Referring to below screenshot, ListView consists of 3 TextView.
Depending on the value of 3rd TextView, Respective color is assigned to the text of 3rd TextView.
i.e. 1.) Green if value>0
2.)Red ...
1
vote
4answers
57 views
Right align text in android TextView
I have an TextView in my application. I want to align the text in it to the right. I tried adding
android:gravity="right"
but this doesn't work for me. any other suggestions ?
1
vote
1answer
79 views
Custom Fonts and Custom Textview on Android
From an application I need to develop, I've received a specific font that has many files like FontName-Regular, FontName-Bold, FontName-it. I need to use it in all the textviews in the application. ...
1
vote
1answer
71 views
How does Kindle's Android application handle the clicks for dictionary lookup
In the Kindle app for Android, there is a feature where you can long-click on a word in the book, and a menu will show up where you can choose Dictionary, and look up that word.
I am wondering how ...
1
vote
5answers
101 views
A good way to store/read a large amount of strings?
I'm developing a "funny quotes" app for android. I have over 1000 quotes which I want to use inside my app but I don't know whether I should use a database or text file. Please note that the app ...
1
vote
1answer
56 views
How to use ruled/horizontal lines to align text in EditText in Android?
Basically I want to do something like this in Android:
I am trying to draw horizontal lines in a custom EditText, and then typing on these lines.
I am using the text size for the distance between ...
1
vote
3answers
59 views
Is it possible to display complex HTML content inside TextView?
Is it possible to display complex HTML content inside TextView ? My HTML is going to have images and video tags. Is that possible or to use WebView component or there is some simpoler solution ?
1
vote
1answer
56 views
Is there a way to specify android:layout_height dynamically during onCreate?
I would like to set
android:layout_height="wrap_content"
to some pixels(int) during my application start. This is a textView and the reason behind this is that i want the height of the textView ...
1
vote
3answers
190 views
Android Multi Column Text
Is there any way in which I can display a long text on multiple columns?
For example I need to display an article, I have the entire String and I want to place it on 3 columns. How can I achieve ...
1
vote
3answers
127 views
How to reduce the size of a text view dynamically
I am using a textview to display a text which I am fetching dynamically. But the problem is that the size of the fetched data may vary from 10 to 30 characters. But I am using a textview with a fixed ...
1
vote
1answer
129 views
How to add images on textview on some event
In my android application, i have a list and a list header. for list header i used this layout:
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
...
1
vote
0answers
35 views
how to disable TextView content change according the the view width in android
i'm creating a map using a Relative layout. on this map i have icons with a text above them.
to create those icons i used TextView with a drawble in the bottom in order to use as less views as ...
1
vote
3answers
161 views
Show Image in TextView
I wish to show Images in TextView. My Images are saved in res/raw directory. I tried using HTML.ImageGetter but could not find a complete reference for same.