Displays text to the user and optionally allows them to edit it.
0
votes
1answer
18 views
Display cpu,memory info in android application
I'm writing an android application displays some info about cpu, memory etc etc.. How can i display theese infos on the screen? With the textview or other way?
1
vote
2answers
33 views
Set TextView not changing
In the following code, I have a options menu and when I select the menu option, I want to update the textview. Setting the text initially works fine and no errors are generated. Here is the code where ...
1
vote
1answer
20 views
Align base line of textviews in two different layouts
I want to align baselines of tow TextViews placed in two different RelativeLayouts. Following is the code I am using:
<RelativeLayout
android:layout_width="fill_parent"
...
0
votes
1answer
13 views
Android TextView causes crash
I got a MainActivity and a second activity called SQLView.
I try to change the content of an TextView in the SQLView-Activity. But everytime I start this activity, my app crashs.
Thanks for your ...
0
votes
0answers
20 views
Arabic letters coming as special characters
Hi i am recieving the text from server which is arabic and im encoding the input stream as below
String strInputStream = Utility.Service.inputStreamToString(n_oInputStream);
try
{
...
-6
votes
1answer
39 views
How to share text from textview to facebook and twitter? [closed]
I am starting my first apps?
May Anyone help.
thanks
0
votes
1answer
37 views
Refreshing TextView in setOnClickListener
I have a TextView and a button i implemented a setOnClickListener method. I want to click on the button and update the TextView, unfortunately It just happens in the first click.
As you can see i used ...
0
votes
2answers
16 views
Android: Line-limited textview with “…” to show that there is more content
I am displaying a long (random) text in a TextView. I want to show 3 lines in this TextView and show dots (...) if there is more content. I know I can limit the lines of a TextView with minLines and ...
0
votes
1answer
29 views
TextView taking/consuming too much space above and below the text
As you can see guyz, the text view encircled has too much space above and below its text. It is inside the text view (not above and below of it). I neither used margins nor paddings but it is ...
0
votes
0answers
27 views
Force TextView to recalculate height [duplicate]
Suppose you have a textview, with it's height set to wrap_content:
TextView tv;
Initially, you set the font size in pixels:
tv.setTextSize(TypedValue.COMPLEX_UNIT_PX, 40);
However, something ...
1
vote
1answer
40 views
How to store phone number chosen from contacts into a string?
I am trying to store a phone number that is chosen from the contacts into a string or anything so that I can call it from the different class...
This is my code for contact button
@Override
protected ...
1
vote
5answers
43 views
Limit the text in TextView
I have a textview Which Contains some text changes dynamically within the UI like below
layout:
<TableRow android:weightSum="2" >
<ImageButton
...
0
votes
0answers
12 views
how to update date and time in textview which is in listview for messages each time
GregorianCalendar calCreationDate = new GregorianCalendar();
int intMilli = calCreationDate.get(Calendar.MILLISECOND);
int intSeconds = calCreationDate.get(Calendar.SECOND);
...
-1
votes
0answers
29 views
TextView Text in next line
i have a text view and the text is coming from server and then at the end of that line i have a button..so if my text view is too long my text is overlapped by that button.so how can i get that half ...
0
votes
0answers
39 views
how to handle the text view link click internally
I'm using the a text view to display the following html content,
<div style="width:100%; background-color: #4bcde3; padding-top: 5px; padding-bottom: 5px">
<h2 style=" margin-left: ...
0
votes
0answers
29 views
How to compare the texts of textviews present in a Linear Layout in Android?
I have created textviews dynamically in a Linear Layout. I would like to compare the text in each textview with the remaining textviews so that duplicates do not occur. So for example, if I have 6 ...
0
votes
0answers
12 views
Android adapt TextView size to multiple screen
I made an app that fit good on a small device, but if I install it in a Tablet with bigger screen text size remains the same.
on small tablet I have
bla bla
bla blablablabla
On bigger screen I ...
0
votes
1answer
26 views
How to “decorate” textView (and classes that extend it) with new features?
Since Android lacks some features on some of its views (like using a different font, or allowing to set the shadow using dp units), I had to extend each of the views i wanted and add some code to ...
3
votes
1answer
83 views
How often can you update a textview without mess
Suppose a textview
TextView tvSum = findViewById(R.id.sumTexviewId);
If I want to change the displayed text, I do this:
tvSum.setText("£0.00");
Now, supposing I do this regularly, say every time ...
-2
votes
2answers
24 views
Live Update Scores [closed]
I want to add a separate section in my app where users can get to know that scores of the ongoing Cricket and Soccer games. I also need a refresh Button. Any IDea of how to get the scores from a ...
0
votes
3answers
70 views
how to copy a text to the Clipboard in android [duplicate]
I want to copy some text in temprory memory :
TextView tv = (int)findViewById(R.id.txt);
String str = tv.getText().toString();
now how an I copy str in clipboard ???
2
votes
4answers
80 views
TextView is ListView is not shown correctly
I have an app that take strings from database and put it in ListView.
this is the code for getting my String from database:
public void setLogView(String date){
ArrayAdapter<TextView> ...
0
votes
1answer
32 views
How do you set the 'linebreakmode' for an android textview (FormattedText)
I'm from iOS and tackling android dev using Mono (Xamarin). Is there a way to set the textview linebreak mode for the textview like we do for iOS.
When I set the Text attribute for the TextView it ...
0
votes
3answers
38 views
Changing TextSize of a TextView inside a ListView at runtime
I have a ListView that uses a custom SimpleCursorAdapter to display information. Each ListView row has Three TextView items.
Due to the nature of the application, the reader may or may not want to ...
0
votes
1answer
57 views
Display JSON data in seperate TextViews
i am sending a list with two nodes "message" and "sender" from a webService to an android device via JSON, now i want to separate the sender and message then display them in a TextView
Webservice
...
1
vote
1answer
60 views
How to add weights to Textview in Gridview programmatically [duplicate]
I have a GirdView of 9 TextViews. I want to make the 9 Textviews to distribute equally in the height and the width. to fit the GridView exactly. How can I do this?
This is how I add Textviews to ...
0
votes
1answer
39 views
custom attribute is not working in HoloEverywhere
I am using HoloEverywhere library in my application and for applying typeface from theme I have added a new custom attribute ttfName to TextView style, and have made some necessary changes in ...
0
votes
2answers
25 views
updating Textview based on sensordata
I'm trying to update a textview based on sensorinput - more precise pitch. I have no problem getting the sensor data, converting it to degrees and displaying it in a textview.
The problem is, that I ...
0
votes
4answers
57 views
Text inside a linear layout
I am having a linear layout in which I am having 2 text views. But there is some kind of padding between the text views'. How to remove the padding? I have attached a screenshot and source code below.
...
0
votes
1answer
45 views
Image is stretched in textview on runtime in tabhost
<TabHost
android:id="@android:id/tabhost"
android:layout_width="fill_parent"
android:layout_height="fill_parent" >
<LinearLayout
android:layout_width="fill_parent"
...
2
votes
3answers
46 views
Different size of strings in the same TextView
I have a textView inside with a number (variable) and a string, how can I give the number one size larger than the string?
the code:
TextView size = ...
2
votes
1answer
34 views
setText of a Textview for a SQLite returned String
I have this DataBaseCreator Java FIle.
import java.io.FileOutputStream;
import java.io.IOException;
import java.io.InputStream;
import java.io.OutputStream;
import android.content.Context;
import ...
1
vote
1answer
65 views
Read form SqLITe Database and show in Textview [One By One]
I have this DatabaseCreator Java File.
DatabseCreator
import java.io.FileOutputStream;
import java.io.IOException;
import java.io.InputStream;
import java.io.OutputStream;
import ...
0
votes
0answers
33 views
Android Textview not displaying on device
I'm encountering an issue in my Android app where a Textview is not displaying on actual devices (tried with 3-4 Motorola, LG, etc.).
Here's the code:
<?xml version="1.0" encoding="utf-8"?>
...
0
votes
1answer
80 views
TextView does not show or cuts text in 2.3, works fine in 3.0+
So this is a brain teaser, I have a ListView with a custom layout, the issue is that the values are not showing correctly(See pics). First of all, all values in the list in 3.0+ are populated fine.
In ...
0
votes
1answer
43 views
Why can't I use the same id in different layout for different fragements in ViewPager
I have 2 fragments in my application, Fragment1 and Fragment2. Both are using different layouts called content_view1 and content_view2. And I put both fragment into a ViewPager. Now see the code :
...
0
votes
1answer
18 views
Do something on tap and hold with a TextView
I know I can add an onClick to my TextView if I want to listen for single taps. Can I do something similar for tap-and-holds?
0
votes
0answers
21 views
Retreive latest calendar events
I have a textview which is supposed to display the latest calendar event from the phone's synced calendars. Unfortunately, it doesn't show the event(even if I press the "Next" button). It displays ...
1
vote
2answers
51 views
Is it possible to TextView#getMaxLines() on pre api-16 devices?
I used TextView#getMaxLines() in my application for a few weeks without incident.
Lint is now informing me that it's only available in API 16+ (#setMaxLines() is API 1+...), though (to the best of my ...
0
votes
5answers
69 views
Set textview inside doINBackground android
I am having a main class A, from which i create an object to class B extending Asynctask. Have set content view in A. Now in doInBackground of B, i want to update the textView of A, but its giving
...
0
votes
0answers
78 views
Baseline aligned TextView clips bottom line of multi-line text
I would like the items in a ListView in my android app to contain a check box on the left, followed by some text, followed by a button. I would like the check box and button to be baseline aligned ...
0
votes
3answers
62 views
Android - TextView does not appear at all
I want each TextView appear under each ImageButton but the TextView in my case does not appear at all and I don't understand why. Thank you for helping.
This is my activity.xml :
<ImageView
...
0
votes
2answers
46 views
Automatic Update TextView
I have an activity with a textview that shows different quotes every time the previous or backward button is pressed. It'd be really funny if I add 10000 quotes in the arrays.xml file and then pass it ...
0
votes
3answers
45 views
Enigmatic NullPointerException
I'm getting the following Null Pointer Exception. Whenever I click on the button(which i've an intent to launch) . i get a FC and this nullpointer exception. Could it be because of the use of that ...
0
votes
3answers
66 views
Retrieving system date and time?
As a starter project (I'm new to programming), I wanted to make a simple app that would show four TextViews: The current time (Hours and minutes), the day, the date of the month, and the year. It ...
0
votes
1answer
73 views
Html.ImageGetter TextView
So Im using ImageGetter to display the images from JSON blog posts. Im getting the correct source in the log but the URL changes when it reaches setBounds. Any ideas?
Code:
protected void ...
-4
votes
1answer
101 views
How to show the input text view in Android
On this screenshot:
Dear guys,
I am looking for the solution to make the UI more decent. I like the blue line for the inout box but it only show either User Name or Password only. What is the ...
1
vote
2answers
64 views
Alignment of TextView and ImageView
I am trying to set a text and Image (Small image) in one single line. Requirement is that Text should be left aligned and Image should be right aligned. If the text is big then it should not overlap ...
0
votes
0answers
19 views
Change text size of a Widget app
I have a PreferenceActivity where user can select the size for a TextView of a Widget app. The activity is called when the Widget is pressed. I'm setting the text size in OnPause, but it isn't ...
0
votes
2answers
48 views
Android - Dynamic textViews - setMargins not applying?
I'm trying to make a dynamic grid layout, it being API 10+ is the part that's been making it slow going. I tried to make it wrap automatically.. but in the end found it easier just to try to force it ...








