The fill-parent tag has no wiki summary.
0
votes
0answers
24 views
Android TextView layout_width not being honored when style assigned
I have an application that in the layout has several TextViews all with the same style within the rows of a TableLayout that is within a Linearlayout.
Ignoring the other attributes of the TextView ...
0
votes
1answer
40 views
Child of RelativeLayout is not filling the height of the RelativeLayout
I have a ListView which gets populated with RelativeLayouts. The content of these RelativeLayouts can change and thus change their height respectively. On each RelativeLayout, I have a little vertical ...
0
votes
1answer
79 views
expandablelistview getchildview display incorrectly
I'm new to android, I'm now trying to use ExpandableListView to list firstly work types in group level then work items in child level. But it's very strange that layout fill_parent not work in ...
0
votes
1answer
70 views
android: how to fill a relativelayout ( screen size) with many textviews created dynamically?
I tried to use below code, but the textviews do not change line after it reach the end of screen.
RelativeLayout ll = (RelativeLayout)findViewById(R.id.viewObj);
int lastid=0;
for (int ...
0
votes
0answers
23 views
What is padding in reference to widths and heights in Android's context?
I understand that fill_parent and match_parent supposedly mean the same thing in Android once you go above API 8, and I know these options determine the size of components in the XML layout of ...
0
votes
1answer
197 views
Fill up the empty space of a FlowLayout on Android
I'm creating an app which has a flow layout. The FlowLayout implementation I found from the web (I don't remember exactly from where). Now, when my layout width greater than sum of the widths of its ...
0
votes
3answers
99 views
Fill a block element with left most floating child (float: right)
I need to fill a <LI> width element with his most left child (out of three childs). Those three childs are formated with display: inline-block; float: right.
what i achieved so far:
what i ...
1
vote
2answers
688 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
0answers
95 views
Android WebView Filling Row in ScrollView
I create a row inside a scrollview with:
TableRow row2 = new TableRow(this);
row2.setBackgroundDrawable(getResources().getDrawable(R.drawable.second_shape));
table.addView(row2);
...
2
votes
4answers
804 views
Why EditText is not expanding to fill_parent
I have written an XML code, where I want the EditText to be expanded to fit the parent width. After spending so much time, I can not find a way to expand the EditText.
Here is my XML:
<?xml ...
0
votes
1answer
579 views
layout_height=“fill_parent” in RelativeLayout doesn't work
I have following layout:
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="match_parent"
...
2
votes
2answers
313 views
Is there a way to fill parent minus a fixed number in Android RelativeLayout?
I have an ImageButton that I want to fill its parent RelativeLayout container for its width but minus a few dp so it has some left and right padding. I tried fill_parent-10dp but that causes an error ...
0
votes
5answers
1k views
Android - EditText multiline forced to fill height
I need a EditText that fills in height my window.
I'm using this:
<ScrollView xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
...
0
votes
2answers
467 views
Android TextView fill_parent
I need to build a layout similar to the following:
The three rows in the left are TextViews, whose total height is unknown at the beginning. The element in the right should be any widget that can ...
2
votes
1answer
2k views
fill_parent is not filling entire screen in LinearLayout
I tried to search for this answer and the closest I got to an answer was to add android:resizable="true", which is deprecated. I apologize if this question has been answered but I couldn't find it if ...
0
votes
1answer
354 views
Titanium mobile relative layout
I'm creating android app using Titanium mobile.
How do I create this interface using vertical layout?
----------------
Header View } height = 40dp
-----------------
Content View } ...
0
votes
0answers
261 views
Android layout_width variable
Okay guys so I've been searching for this more than a day, and there seems to be no true answer (or question) to my exact problem.
Let me explain, I'm making an Android RPG game for which my whole ...
0
votes
1answer
2k views
Table layout with rows filling parent but having same height
Does anyone know of a way to have a table layout with a number of rows having the same height but filling the parent?
In the following layout all the rows will have the same height but if I add, say ...
5
votes
1answer
2k views
Android 3 - Adding a Fragment to a LinearLayout: fill_parent does not work
I am trying to add a fragment programmatically to a LinearLayout, but the fragment does not stretch its content across the whole layouts height. It acts like wrap_content instead of fill_parent.
On ...
0
votes
3answers
103 views
Streching two layouts in parent layout
I am trying to achieve that the two nesting relative layouts take up an equal amount of space AND for the to fill out the whole width of the screen. All parent layouts have fillparent set on width. ...
1
vote
1answer
1k views
ImageView in a Custom Dialog - fill_parent does not work and my dialog is small
I have a simple request: I have to put some pictures (some small resolution, some big resolution) in a dialog and display them fullscreen.
I tried this:
Dialog dialog = new Dialog(getActivity());
...
0
votes
1answer
341 views
Android custom layout manager - layout in children
I have created a custom layout manager derived from LinearLayout. (I do not really use much of LinearLayout functionality but I do not want to care about all of many ViewGroup abstract methods.) I ...
5
votes
4answers
2k views
Scaling an image to max available width, keeping aspect ratio and avoiding ImageView extra space
I have this simple layout XML, and a green_square.png file which is 30X30 pixels
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout ...
0
votes
2answers
628 views
Webview doesn't fit fullscreen with action bar on
I want to have webview displayed fullscreen with action bar on top of it and standard menu bar on bottom. It's displayed correctly without action bar. When I am turning it on, bottom part of webview ...
0
votes
1answer
493 views
TabHost do not match is parent width in HoneyComb Android 3.0
I'm trying to make a TabHost on HoneyComb as if I was on 1.6+ but the fact is when I copy the code (which is the same for both HoneyComb and previous version), the TabHost do not match the screen ...
0
votes
1answer
1k views
Android Listview width prob
Here is the main layout for a screen:
<?xml version="1.0" encoding="utf-8"?>
<TableLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:id="@+id/splashContent"
...
0
votes
3answers
3k views
fill_parent not stretching background image
I am going crazy here. I swear I've had this work a thousand times before and it's like nothing is behaving correctly now. I have to be doing something stupid. A few days ago I was having issues with ...
3
votes
3answers
3k views
Relative Layout fill_parent issue
First of all, I am new to Android development so this might be a simple issue but I really can't get it working.
I have the following layout.
<?xml version="1.0" encoding="utf-8"?>
...
7
votes
2answers
5k views
Android fill_parent to match_parent
What was the reason behind introducing match_parent and deprecating fill_parent since both mean the same thing. won't this change be a hindrance to backward compatibility?
0
votes
1answer
239 views
Android: Same xml acts differently depending on where I inflate it and I don't know why
Why do some views in a linearlayout within a scrollview fill the parent when fill_parent is set when inflated from xml directly but don't when added via a custom component that inflates the same xml?
...
0
votes
1answer
1k views
Android TextView not filling width, why?
I have the following layout and call to that layout. At one point this very same code would fill the width of the parent layout, a tab. Now it does not and I can't figure out why. It is keeping me ...
1
vote
2answers
88 views
Question about DP in Android
Let's say I prefer using "dp" rather than "fill_parent" or "wrap_content", what would be the appropriate number to use in order to fill the screen with a picture?
0
votes
2answers
138 views
How to draw elements from the right to the left?
I want to have a button at the rigth of the screen, and an edittext which take all the place it can take at the left of the button. How can I do?
This xml print me the button at the left of the ...
1
vote
2answers
2k views
android XML scrollview and linear layout problem
I have the following code:
<ScrollView
xmlns:android="http://schemas.android.com/apk/res/android"
android:orientation="vertical"
android:layout_width="fill_parent"
...
3
votes
2answers
565 views
android: fill_parent of child view fills screen
I'm trying to replicate a spinner control (please don't ask why) I'm struggling with the divider. The fake spinner looks fine until I add the divider to the left of the imageview. Once I add the ...
7
votes
2answers
735 views
How can I use layout_width using resource file?
There are a activity what I want to fill the screen in a phone
and pop up(dialog) for a tablet.
I thought I make a layout file like this,
<LinearLayout
...
1
vote
1answer
1k views
Set a FILL_PARENT width to a TextView , wich is inside of a TableRow
I have a TextView inside of the TableRow. Is there any way to set a FILL_PARENT width to this TextView?
Edited: Doesnt FILL when I have a backgroundImage to the TableRow
<TableLayout ...
1
vote
2answers
946 views
Android <include> ListView not taking up its height
I have a very strange problem here. In the following xml section I'm trying to use include:
<!-- CONTENT -->
<ScrollView
android:layout_width="fill_parent"
...
1
vote
1answer
896 views
ViewFlipper width is wrapping its content and fill_parent is not working
Here is my layout XML:
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout
xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="fill_parent"
...
3
votes
2answers
517 views
“Workspace” child views not filling height on Google “iosched” app
I'm playing around with the iosched app from Google I/O 2011. Looking at the ScheduleFragment, I'm testing a different view on the Workspace children for flinging the pages back and forth. However, ...
-1
votes
2answers
2k views
FrameLayout/WebView ignores fill_parent in dialog theme
I have an Activity with the dialog theme.
<activity
android:name=".MyActivity"
android:theme="@android:style/Theme.Dialog" />
That Activity uses the following xml layout:
...
0
votes
1answer
579 views
Set a Width and Height to Fill Parent Android SlideShow
i want to make a SlideShow to show the image in full screen but the code i got was using a absolute size, i need to change it to fill_parent but i can't.
here is the code,
public class SlideShow ...
2
votes
2answers
2k views
android: layout: How to make my dialog box fill the screen with the XML
I'm trying to get a Dialog box to open covering most the screen (by that I mean it still has its nice rounded effect but cover the content behind)
I've been trying with fill parent but it keeps ...
