Tagged Questions
1
vote
2answers
82 views
Android wrapping layout with variable sized items
I want to have a swipable tabbed main screen those having summaries of the categories they belong to. (For example, "8 of Favorites", "8 of Newest", "8 of Recently accessed"...
(A bit similar to ...
0
votes
2answers
115 views
RelativeLayout wrap_content width, circular dependency
Want to design a custom marker-baloon for the new Google Maps v2 api for android. I have overridden getInfoContents but my now the layout takes the full width of the screen with ym custom design. I ...
0
votes
2answers
375 views
How to wrap Image buttons in a horizontal linear layout?
Is there any way to wrap Image buttons in Horizontal Linear Layout? Or is there any other way to do the following thing?
I have 6 image buttons. Suppose these buttons are appearing in a mid ...
2
votes
1answer
417 views
Android Spinner Size very large
I'm trying to get an ICS spinner like in my app, and playing around for hours, finally I'm using HoloEverywhere to get this, and it's working, but I have a little disign issue, is that the spinner is ...
1
vote
2answers
268 views
android : how to set bigger text into textview with width wrap_content
I have listview. each it's element has date (Calendar object), so i want to display current date at top visible element. I have implemented ListView.OnScrollListener
public void onScroll(AbsListView ...
0
votes
2answers
100 views
Android: How to wrap a layout to its views without exceeding a fixed size
I am using this layout in order to have three fixed views.
<TextView
android:id="@+id/title"
android:layout_width="match_parent"
android:layout_height="wrap_content"
...
1
vote
1answer
252 views
Horizontal two row menu doesn't work on Android
my horizontal menu does work good on my computer, on iphone but it does not work good on my android phone.
The menu has to have two rows when the browser size is small. on my android phone it shows ...
0
votes
1answer
69 views
Custom viewgroup - how to wrap height around children?
I have a custom viewgroup with several children. The viewgroup has it's height set to WRAP_CONTENT. My viewgroup takes up the whole screen when empty or not. The childrens' height do not surpass it's ...
0
votes
1answer
484 views
Android TableLayout wrap content
I have a LinearLayout with TableLayout and LinearLayout inside. TableLayout is made up of 5 TableRows. Each TableRow is made up of two View objects.
Firt column has two TextViews, my problem is that ...
1
vote
5answers
795 views
why is wrap content bigger than real pixel size?
I am trying to understand something. A weird thing that I see is that when I put "wrap content" in the width and hight, the image is bigger than when I insert the real px (pixel) size of the image. ...
1
vote
1answer
157 views
Android wrap blocks?
I want the following layout
| AA BBBBBBB |
Except when there is not enough room in which case I want
| AA |
| BBBBBBB |
In this case A is the checkbox and B is the TextView beside ...
3
votes
1answer
868 views
Why is layout_marginBottom ignored when using wrap_content?
I have the following layout file :
<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="fill_parent"
...
1
vote
0answers
82 views
Is it possible to wrap IMEs in Android?
I'm fleshing out a program idea and have ran into a point I'm not sure about. I'm trying to write a new InputMethodService for Android which would add functionality to other services.
An example of ...
0
votes
1answer
544 views
android endless horizontalscrollview behave like wheel
Does anyone know a way to create a scrollview that when the end is reached, the next item will be the first item. IE it will be more like a the wheel. i have a horizontal scrollview wrapping a linear ...
0
votes
0answers
97 views
dynamically adding textviews that wrap in a realtivelayout
I have a bunch of small textviews (each containing a single word) that I want to layout just like words on a page, ie with word wrap.
So I use a horizontal relativelayout and dynamically add the ...
1
vote
1answer
742 views
Android textview breaks words apart when wrapping
I have a textview set to wrap text. The text is wrapping, but it is breaking words apart. How can I tell the textview to stop breaking words?
Here is the xml I have so far:
<ScrollView
...
1
vote
1answer
195 views
Android - how to inline wrap layouts?
How do we make inline layouts in Android?
Something like this:
I tried using margin right in Relative layouts but they are separated into 2 columns instead of wrapping each other:
...
3
votes
1answer
414 views
Android: Getting LayoutParams.WRAP_CONTENT to ignore a large background image
I'm trying to make a LinearLayout that has height = LayoutParams.WRAP_CONTENT.
I am receiving an arbitrarily sized bitmap from a server to set as the background image for the LinearLayout.
How do I ...
0
votes
1answer
2k views
Wrapping text in spinner android
I have long text that I want to put in a few, but not all, items in a spinner. Tried using the answer here but was not able to get it to work. I created and saved multiline_spinner_dropdown_item.xml ...
1
vote
0answers
76 views
How to Wrap to Content Android Preference Summary Value
How to increase (wrap to content) the size of the preference summary value.
currently showing maximum of 105 characters.
0
votes
2answers
926 views
WebView android problem, does not wrap the text
I've searched the internet for a solution but i can't find it.
I have a WebView that display text, Just text. i want to wrap the text in the WebView, is that possible or what?
and i wanna make the ...
9
votes
3answers
7k views
How to wrap lengthy text in a spinner
I have two spinner and EditText controls within a table layout view on a separate row. The spinners are populated with data. My problem is the data (texts) that are populated into the spinners are too ...
1
vote
2answers
717 views
How to stop titles in Android tabs from wrapping in the middle of a word?
I have a layout with several tabs. What's happening is that in landscape orientation, the layout is wrapping the text used in the tab titles, but not on a word - its wrapping in the middle of a word! ...
1
vote
1answer
529 views
java code reuse for Android
I am going to port a java application into Android, as long as there is no direct way of doing it i am trying to separate the GUI part from algorithm so i need to reuse java classes.
i need to wrap ...
1
vote
1answer
2k views
Android TableLayout in a ListView, mysterious column shrinking
I am using TableLayout within a ListView. The data I'm presenting is tabular in nature and the TableLayout seems like a good way to ensure that the columns line up as desired. This approach worked ...
6
votes
8answers
16k views
how to wrap text in textview in android
Does any one know how to wrap text in TextView in Android platform. i.e if the text in textview exceed the screen length it should be displayed in the second line.
I have searched and tried the ...
0
votes
2answers
2k views
How to get Side by Side textviews with one that wraps
I have a listview with a custom adapter in which I have 3 textviews, two are next to each other and one is below the others. The problem I am running into though, is when the first textview extends, ...
0
votes
1answer
401 views
Proper spacing technique in text view to give a dictionary style theme:
If I was trying to format some text in a TextView like a dictionary, what are the best parameters to use? Something like?
Android\n
[and-r-oid]\n
Definition:
(character to tab goes here)
etc...
...
3
votes
2answers
2k views
Is there a way to disable line wrap in a List View in android?
I have a list view holding text views and when the text gets too big, it wraps and the item takes up two spaces. I am wondering if there is a way to turn off line wrap in this case, and if it should ...
12
votes
3answers
4k views
Textview wrap around View
I'm trying to make my horizontal layouts take advantage of the room available.
In an info showing activity I have a 'fact box' followed by a large box of text. I'd like the infobox to float right, ...
10
votes
5answers
13k views
Android Word-Wrap EditText text
I have been trying to get my EditText box to word wrap, but can't seem to do it.
I have deal with much more complicated issues while developing Android applications, and this seems like it should be ...
36
votes
11answers
43k views
Android TextView Text not getting wrapped
Can any one tell me whats going wrong with the text, text exceeds then one line not getting wrap to next line going beyond the screen.
Following is the code
<LinearLayout ...