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

learn more… | top users | synonyms

0
votes
0answers
14 views

How to make selecting text smoother in textview on Android

Using API 17 (4.2.2) I have a TextView with styled text (including links (using SpannableStringBuilder)) The links are clickable, and the text is selectable (using a custom MovementMethod) ...
0
votes
1answer
12 views

My textview keeps getting hidden behind it's parent layout background

http://oi41.tinypic.com/2z6tuh5.jpg In this picture, the orange thing is supposed to be the letter A, but it constantly gets cut-off by the background of the parent layout. Anyone have any idea what ...
0
votes
0answers
7 views

ViewPager and TextView's links clicked through pages

I made an app, that contains ViewPager, and some different Fragments in it: Text-only, Image-only. Iam fighting with a some weird bug: TextView links clickable through one page(left or right) of ...
0
votes
2answers
13 views

Android: Add two TextViews to Actionbar Spinner

Is there anyway to add two text views or strings inside of the Actionbar Spinner? Similar to how the Android GMAIL app does it.
1
vote
2answers
21 views

Increasing TextSize of TextView and then Decreasing It Doesn't return to normal height of view element

I'm fairly new to Android and would never have gotten as far as I am without this forum. Here's my problem: Am using a simple LinearLayout with an ImageView vertically positioned above a TextView. My ...
2
votes
1answer
42 views

How to create a variable number of textviews in android

Hopefully this isn't a bad question, however I've searched through S.O. and haven't been able to find the answer. I am creating an android application that is essentially an alarm clock. I want the ...
-4
votes
0answers
66 views

NullPointerException with reason

I am getting a null pointer exception, and I have no idea what's the reason of it. Here is my Logcat: 06-18 01:42:06.478: E/AndroidRuntime(1768): FATAL EXCEPTION: main 06-18 01:42:06.478: ...
0
votes
1answer
17 views

Android - TextView maxWidth weird issue

I have the following layout: <RelativeLayout android:layout_width="wrap_content" android:layout_height="wrap_content" > <TextView ...
1
vote
1answer
19 views

Android read text file from internet

I want to read a remote text file and show its content in a textview. I have written this below code, but it doesn't get any information from the text file. How can I find the reason of this problem ...
1
vote
1answer
24 views

When Pinch zoom Textview on Android, Text are cropped unintentionally

We developing custom textview that zoom in/out depends on pinch gesture, and able to resize textview and scale text. But, when zoom out this view, text are cropped unintentionally. We write a code ...
0
votes
0answers
17 views

Displaying data obtained by cursor in textview in android.

I want to display the value of certain column in database in a TextView. I have written following code. But it isn't running after Log.e("problem","here")in LoadEmployee method. please help Code ...
0
votes
1answer
11 views

Simple ScaleAnimation on TextView

I would like to know how to make a very quick and simple ScaleAnimation in Android on a TextView that does this: User clicks on a submit button and a TextView Gets two times the size and returns ...
1
vote
0answers
16 views

Android - setText before changing displayed child with ViewFlipper

I'm trying to change text with TextView.setText but it updates after I change ViewFlipper displayed child with setDisplayedChild. I also tried calling invalidate but it doesn't work, text is changing ...
0
votes
1answer
29 views

How to run separate threads in pygtk

I have a pygtk application which runs as soon as my python script is opened. Along with gtk.main() I have a thread which is started at the beginning of the script, which refreshes a gtk.TextView() ...
0
votes
1answer
29 views

TextViews become uneditable after reactivating activity?

So currently I am making an educational application where users can view how to solve a given problem by pressing a button. While my code works fine initially, when I hit the back button and click my ...
0
votes
2answers
42 views

TextView variable name + string combining

question with either easy or impossible answer, dunno. I'm new and I want to create new TextView's within a loop, but I'm having problem with TextView's variable name. I need it to be unique.. Thanks. ...
0
votes
5answers
56 views

Setting Multiple Text Views Android

I have pairs of Text Views that I am setting beside each other, and also I need to layout them vertically as well unfortunately I have one area that will not set right which is txtView2 as per the ...
0
votes
1answer
13 views

Stop webview from opening and do something else

How would I stop a webview from opening after I click on a link? I also need to extract the URL address so I can put it into a string.
1
vote
0answers
11 views
+50

Numbers and hebrew text cause unwanted new lines

For some unknown reason, if I put the following string: 15 קמ in a text view, it results in a new line between the "15" and the "קמ": 15 קמ If I replace the "קמ" with "km" then it works fine... ...
0
votes
3answers
44 views

How do I show two text views next to each other

I have a Main Activity That has a Clickable Link that launches a Activity. Right now what is showing is "Click Here" in a text view. I would like to change it to : "To see Evacuation Routes - Click ...
1
vote
2answers
45 views

Updating TextView

I have a loop which contains TextView.append("what eve text here") in side a loop how can I send the new strings to the TextView like the Eclipse console where everything is showing. I am trying to ...
0
votes
1answer
34 views

Scrolling a textView inside a Gridview

thank you for your time. I have a list of Strings that a display inside a gridview using an ArrayAdapter. Some of those Strings are long and take too much room. I want to limit the height of each ...
-2
votes
1answer
36 views

Extract the URL from a hyperlink in a textview

How would I go about extracting a URL from a hyperlink when I click on it? There could be more than one URL link in the body of the text.
0
votes
0answers
24 views

Moving a textview without moving the margin

I'm trying to create a custom view programmatically. There's a textview i need to move by about 5 pixels. The problem is that its aligned to the bottom of the view. And moving it moves the margin too. ...
2
votes
0answers
19 views

Android: Linespacing between 1st and 2nd line on multiline text wrong

I have a TextView that displays 13 labels by using '\n'. I chose to use only one View, since android-layouting tends to get very slow if you have more than a couple of TextViews. I set ...
0
votes
2answers
44 views

How would I save a textView in Shared Preferences?

I want my app to save textView2 in shared preferences. This is the current shared preferences code I have that saves the state of a checkbox (checked/unchecked). private boolean getFromSP(String ...
-1
votes
0answers
19 views

Dynamic creation of layout,textviews and orientation with dynamic button creation with the previous activity's button click

I wanted to have this kind of a layout(1st activity: MyAct1.java,xml:myact and 2nd activity: PCode.java,xml:pcode): But the problem is that I want to do all this dynamically(or say programatically). I ...
0
votes
5answers
46 views

TextView not properly in the center

i want to place a textview in the center of a linearlayout but i am having problems with it. my linearlayout is match_parent in layout_width. textview is centered by assigning center to ...
0
votes
0answers
31 views

Extracting URL text from TextView with Linkify

I am trying to get the URL text from a link when it is pressed/clicked on and store it into a string. The reason is there are different types of URL's that I am working with that is in the text. The ...
0
votes
0answers
15 views

What's going on with this tablelayout in Android?

here is the xml file <?xml version="1.0" encoding="utf-8"?> <TableLayout xmlns:android="http://schemas.android.com/apk/res/android" android:layout_width="match_parent" ...
0
votes
1answer
14 views

Move TextView according to touch coordinates in android

In my app, I show the SeekBar progress as a TextView and X coordinate of the TextView should move as user touches somewhere on the SeekBar. For that I attached OnTouchListener to that SeekBar and the ...
0
votes
0answers
16 views

TextView.setSpan not work on android 4

I am using this code on Android 2.3 and its work Spannable span = new SpannableString(tekst); span.setSpan( new ForegroundColorSpan(Color.BLUE), 0, brojs, Spannable.SPAN_EXCLUSIVE_EXCLUSIVE); ...
0
votes
0answers
31 views

Switching from TextView to ListView in Android

So, I've been following this Vogella ContentProvider tutorial sent to me by a friend, and if you look at the end of section 6.3 you'll see that he says: If you run this application the data is ...
0
votes
1answer
36 views

update TextView From Another SherlockFragment

I want to update TextView From Another SherlockFragment , I`m using ActionBarSherlock and this my class MainActivity Class import com.actionbarsherlock.app.ActionBar; import ...
0
votes
3answers
40 views

TextView output in real time

Hello I have a android app which basically has a EditText to get userinput, TextView to output the processed data and a button to excute everything. Once the user click a button and new thread is made ...
0
votes
2answers
43 views

getTextSize() always returns 1.0 for fragment TextView

I am doing Robolectric testing on an app. (Robolectric 2.1 with ABS). In my fragment, I have a TextView with style: <TextView android:id="@+id/homepage_title_textview" ...
-1
votes
1answer
30 views

changing between more than one script for one textview in android

I'm working on an android application with 2 activities. The first activity contains 2 buttons ( btn1 , btn2). The second activity conatains textview and a back button. In the string.xml I have to ...
0
votes
4answers
41 views

How to add imagview inside textview or add textview inside imageview, android?

I was wondering if it is possible to add textview inside imageview or vice-versa. Is it possilbe? If yes then how?? I want to make this at runtime
0
votes
3answers
79 views

ListView Background

EDITED: I have problem with setting background image for my ListView. In graphical view of activity it's looking good, but on the phone, there is no background at all. It's my activity .xml code : ...
0
votes
2answers
18 views

clear date from textview which was populated using android default date picker

my screen has used a text view to display the date which was selected form android default date picker, now i want to clear text view data by providing clear button to date picker ..is it possible if ...
-8
votes
0answers
30 views

Add text view on runtime, android? [closed]

I want to add textview on runtime which displays the message from the edittext just like simple messaging application. Plus i also want when the messages increases a scroll comes
0
votes
1answer
38 views

How to make textView track how many enemy's eliminated?

I want to be able to make a textview appear in my game and it tells you how many enemy's have been killed. My game uses Cocos2D lib. For example I touch somewhere on screen and it shoots a bullet from ...
0
votes
2answers
35 views

TextView not filling width? (android)

I have this TextView defined in the XML layout file: <TextView android:id="@+id/time" android:layout_width="fill_parent" android:layout_height="wrap_content" ...
2
votes
1answer
27 views

Align TextView elements alignParentLeft

I want to align many textviews (Contained in each listView item) as alignParentLeft, in CSS we use float:left and the elements should be blocks (in CSS), here's my xml layout : <?xml version="1.0" ...
1
vote
3answers
54 views

How to get TextView from another Activity without coming from or going to that Activity?

I have a TextView in Activity A and that is where the user spends most of the time on the app. My app uses Shared Preferences to save a TextView in Activity C. How do I get the TextView from Activity ...
0
votes
2answers
29 views

Android TextView Background Image With Color

I have a simple table layout, in the one of the row, I have time for sun rise in a text view and I am trying to have sun with purple colour for the row as background. How can I achieve this? I tried ...
0
votes
1answer
20 views

Textview background repeats in a listview

So the problem that i am facing, is that when i try to set dynamically the background of a textView that belongs to a listView, the background that i set, is set for other textViews too..it repeats ...
1
vote
1answer
42 views

TextView with background color only on the text itself

How do I implement something like this: I want to do that within a single TextView. Setting the background color of the TextView will not do the job. I guess it should be possible with a ...
0
votes
1answer
30 views

How to change textview padding inside listview?

This is activity_main.xml. I could not change padding by adding paddingTop, paddingBottom. What should I do to change padding. <LinearLayout ...
0
votes
2answers
31 views

Android TextView hide the text when wrap

<TextView android:layout_marginLeft="12dp" android:layout_width="wrap_content" android:layout_height="wrap_content" android:text="New Text" ...

1 2 3 4 5 65