1
vote
2answers
23 views

TextView fill with points

Sorry by my english I have one RelativeLayout and 2 textviews like that <RelativeLayout android:layout_width="fill_parent" android:layout_weight="1" ...
0
votes
2answers
34 views

Add a textview for header and footer

I've a pretty noob issue with LinearLayouts and GridView. I want to display an activity with and header, a GridView that scrolls and a footer. I search how to do this stuff but i'm stuck to get the ...
0
votes
4answers
50 views

Android: Textview out of boundary

I have been trying to make this Layout which contains a Textview in a TableLayout. The textview however doesn't fit inside the layout. It goes out of the boundary. Changing the width to fill_parent or ...
0
votes
2answers
42 views

TextView text not wrapping on some devices

I have an app on the market. It worked great on all devices that I tested on before release but everyone once and a while a user emails me with the below issue. Please see screenshot. The ...
-1
votes
1answer
73 views

Can you add a textview to an action bar? If not, a sub actionbar? [closed]

I wanted to have a "info bar/textview" right below my App's action bar (the bar that says the title, app picture, etc). I have tabs on my application, and I wanted the infobar ABOVE the tabs, right ...
0
votes
0answers
50 views

Android: Custom layout and Text - Text not showing

I have created a custom layout and custom TextView classes to go with it. The idea is that I want to create a layout that scales the size of its components according to the size of the device. It's ...
0
votes
0answers
18 views

Editing a textView from a layout different from the one currently in use

I'm having some trouble editing a TextView which throws me a NullPointerException. The thing is I'm using my Activity normally but at some point Im editing this TV which is a DialogTheme one, and ...
0
votes
4answers
69 views

Why is alignParentRight not working?

I'm a noob to android development and I am having issues constructing a layout. I have a relative layout containing a textview and a linear layout containing two checkboxes. I want the textView to ...
0
votes
1answer
40 views

Android: Multicolor Button or nesting Views/Buttons

I want to design a button which looks like: Picture on dropbox (Sorry, can't yet post images...) Has anybody an idea how to layout? Use Buttons or TextViews? Is there an option to group 2 ...
0
votes
1answer
43 views

Relative Layout Textview text Overlapping

Hi i have a problem with my Textview in a Relative layout. How you can see they are overlapping each other. I would like it if you can help me. Picture: ...
0
votes
0answers
12 views

programatically add position to textview

counterText1 = new TextView(this); RelativeLayout.LayoutParams params = new RelativeLayout.LayoutParams(0,0); params.leftMargin = 15; params.bottomMargin = 0; ...
0
votes
1answer
149 views

Android Clickable Images inside TextView [closed]

How can I create clickable images inside TextView? I've searched ClickableSpan but how can I catch different images' click events? (I need to show contents which contains images and texts in ...
0
votes
2answers
162 views

Creating Custom Expandable textview

I want to create an Expandable TextView, like what we get in message threads. The size of the TextView is not fixed but depends upon the text length and number of lines. It also has borders which ...
0
votes
3answers
130 views

Off-center alignment of text inside a TextView

I have a layout/alignment problem with a TextView which I haven't yet been able to find a solution for, that is, I want to align text off-center inside a TextView horizontally. To give a little more ...
0
votes
1answer
48 views

Textview activity

So basically I want to display information about a hotel/restaurant/club/whatever. I created this layout XML file: .xml: <?xml version="1.0" encoding="utf-8"?> <RelativeLayout ...
0
votes
0answers
116 views

Fixed-width TextView with stretched compound drawable

I'm trying to achieve the following layout: fixed width TextView is aligned to the left side of it's parent, with text inside it aligned to the right side of that TextView (that's why fixed width, can ...
0
votes
2answers
84 views

Inserting a textview in the middle of a imageview android

I need to put a text view in the middle of a imageview so i have this code <RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android" android:id="@+id/row_background" ...
2
votes
2answers
69 views

change in weight not taking effect in the layout

I think I am missing something basic here. See if any of you can help. I have an activity(activity_story1) where I am loading some text and some other controls. The way I have laid out all the ...
3
votes
2answers
133 views

Android last word of a line can cause incorrect textview dimension if using a right margin

I have a strange behaviour when using bold text in an textview. So the problem is as follows, I have created a custom item which holds text and is supposed to be used as an item later on in a list, ...
0
votes
0answers
102 views

Problems finding correct xy coordinates to TextView

First of all sorry by my English, I'll try my best. I am trying to position a TextView in a RelativeLayout. I calculate random x and y coordinates and then I check if the TextView is shown completely ...
1
vote
1answer
89 views

Adding a text view before a repeating text view

I am trying to build a notepad application. In my layout there are two TextView. First text view only shows a string "Your Saved Entries", where second TextView shows the titles of saved entries. My ...
0
votes
1answer
85 views

Displaying TextView Text with resource layout

I am using MonoDevelop for Android and have a question about displaying text in a TextView. Here is my code: string stringNameDisplayText = "Test Name"; string stringOwnerDisplayText ...
0
votes
1answer
56 views

programatically define a TextView within a LinearLayout in one line

I know this is possible to do in multiple lines like this: LinearLayout table=new LinearLayout(this); TextView titleText = new TextView(this); titleText.setText("Med Info"); ...
0
votes
4answers
539 views

Marquee TextView not working in Android Layout

I'm trying to get @+id/trackname and @+id/artist_and_album to use the marquee setting in the following layout but they won't scroll. I also tried using setSelected(true) and setFocusable(true) in the ...
0
votes
1answer
178 views

TextView only displaying the first four lines of a resource string

I'm having trouble displaying some text in a dialog. When the user has forgotten their password, I use the "forgot password" TextView to display a message explaining what happens when they put their ...
0
votes
3answers
491 views

Textview scrolling not working

I want to scroll text down and up vertically, incase the text to appear in the textview is longer than the space. However, the below methods I tested, do not work. 1 - tv1.setMovementMethod(new ...
0
votes
5answers
191 views

Set textview and 2 buttons in a android layout

Im trying to set one textview aligned on the left and two bottons aligned on the right as in the image. I'm using margins but I guess this is not the best solution and it'll change in different ...
0
votes
1answer
87 views

how to make the size of a textview in proportion to the device's physical size

I've been digging around for a while about this issue. In my layout, I have a textview. How do I make the width of my textview's width half of the screen's physical width? Can I do it in the xml ...
1
vote
1answer
167 views

Formatting TextViews in a TableRow to effectively both match_parent and wrap_content

I have a TableLayout with a number of TableRows. Each row contains two TextViews laid out horizontally. The TextViews have fixed widths. The background of each is colored differently; the left is grey ...
1
vote
1answer
185 views

Android resizes TextView

Well, I'm trying to do a Search System for teachers in my app, and I already did it, but with a layout problem. When I set texts for my TextViews, they resize based in the word lenght, and I don't ...
1
vote
1answer
92 views

Layouts - MATCH_PARENT hides elements

I'm preparing layout for list of countries shown in categories. I have problem formatting my layout. I want category titles (bigger ones) to be "100% width", so far they are WRAP_CONTENT formatted ...
0
votes
4answers
190 views

Android: Place textView below ListView

In my app, I would like to have a TextView DIRECTLY below a ListView. So if the ListView ends somewhere half of the screen, the TextView must be right there in the middle of the screen. But if the ...
1
vote
1answer
113 views

Programmatically created textviews not displaying correctly or saving

I have an activity setup with an edittext field and an add button. Essentially when the user makes changes to the edittext and hits Add, a new textview should be created with the edittext field. In ...
1
vote
1answer
710 views

Android TextView text cut off only in Gingerbread

The layouts in my application are built using SDK 16 and I've tested and confirmed they work fine on ICS and JB but GB has the following issue: In the code below, I'm just trying to create a simple ...
-1
votes
4answers
219 views

NullPointerException on TextView

I get a null pointer exception and the program crash on each time I want to update the highscore text using setText(). what causes this problem? this code is when i set my layout, the layout is a part ...
1
vote
2answers
279 views

Add TextViews programmatically to a XML Layout

This is a XML LinearLayout linlayout.xml: < <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android" xmlns:tools="http://schemas.android.com/tools" android:id="@+id/mylinear" ...
4
votes
1answer
1k views

Text leftside of a RadioButton with a margin on Android

I want to have the "label", - the text you set in your RadioButton to show left of the button and have some padding in between. Adding an additional TextView into the layout doesn't work because my ...
1
vote
3answers
432 views

Adding array of textviews dynamically to linear layout

I tried to add an array of textviews which i defined as a public variable, but when i run the application, it force closes as soon as it gets into for loop. This is the code: LinearLayout myLayout = ...
0
votes
1answer
47 views

How to overflow views to the next row, instead of disappearing into the unknown

I am trying to fit TextViews in the screen, so that every textview contains 1 word of a long sentence. This is a very long sentence, so long that it does not fit in the screen. Here fit in the ...
0
votes
1answer
213 views

How to Date picker + show date in a button?android

I want to have in my activity a button that shows default the current date as a button title and when i click the button to show a date picker dialog and shown the new pick as button title. How can i ...
0
votes
0answers
14 views

Android tools for layouts

Does anyone know any good tool for creating android layouts??? Also, does anyone knows how to make a TextView to have, say, max one line? Thanks in advance
0
votes
0answers
71 views

Android: Isuue in TextView Value with API - 15

In layout, i have textview, till emulator of API - 11 its shows correct text. But in emulator of API -15 its shows symbols (as shown in image). I can't understand what is going wrong with textview. ...
2
votes
4answers
304 views

Set individual lines of TextView to different width

I'm trying to setup a TextView that contains two lines of text, the second line being shorter than the first one. Is there a way to set up TextView's Layout instance (acquired via ...
0
votes
1answer
734 views

Dynamically adding a textview to a linear layout in android

I wanted to dynamically add textview to a linear layout. I have used the following code: LinearLayout ll = (LinearLayout)findViewById(R.id.viewlayout); LinearLayout.LayoutParams lp = new ...
2
votes
4answers
231 views

How do I prepend a String to an Android TextView?

There's TextView.append(), but that adds the text to the end of the TextView. I want what I append to go in the beginning (ie, show up on the top of the TextView box).
1
vote
2answers
692 views

TextView height does not match_parent / fill_parent

I have a simple TextView with a singleLine. I would like to set the height to match_parent/fill_parent, but the behaviour of Android is to only to wrap_content. Is there a way to force that the ...
0
votes
1answer
814 views

Multiple Text Views don't align properly in Linear Layout

I am trying to add 8 text views in my fairly simple layout. I would like to have two text views per row and four such rows. My challenge has been lining up the 2nd, 4th, 6th and 8th text views in this ...
0
votes
1answer
177 views

Position textview on top of clicked imageview

Is there a way to programatically add TextView and show it right next to the ImageView user clicked on? I tried something like this, but no results, TextView is added to the bottom of my layout: ...
6
votes
4answers
2k views

Android: Last line of textview cut off

I have a horizontal LinearLayout containing a TextView followed by a Spinner next to it. This LinearLayout is dynamically inflated multiple times in a fixed vertical LinearLayout contained within a ...
1
vote
0answers
412 views

TextView gravity=“top” but changing font size dynamically doesn't keep text align to the top

I have an app that needs to dynamically align text views over certain locations on an image. The image is scaled to fit the view. Text entries are added by the user. I'm using a RelativeLayout and ...

1 2 3