Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

Here's my layout code;

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:orientation="vertical"
    android:layout_width="fill_parent"
    android:layout_height="fill_parent">

    <TextView android:text="@string/welcome" 
        android:id="@+id/TextView" 
        android:layout_width="fill_parent" 
        android:layout_height="wrap_content">
    </TextView>

    <LinearLayout android:id="@+id/LinearLayout" 
        android:orientation="horizontal"
        android:layout_width="wrap_content" 
        android:layout_height="wrap_content" 
        android:gravity="bottom">

            <EditText android:id="@+id/EditText" 
                android:layout_width="fill_parent" 
                android:layout_height="wrap_content">
            </EditText>

            <Button android:text="@string/label_submit_button" 
                android:id="@+id/Button" 
                android:layout_width="wrap_content" 
                android:layout_height="wrap_content">
            </Button>

    </LinearLayout>

</LinearLayout>

What this looks like is on the left and what I want it to look like is on the right.

Android Layout - Actual (Left) and Desired (Right)

The obvious answer is to set the TextView to fill_parent on height but this causes no room to be left for the button or entry field. Essentially the issue is that I want the submit button and the text entry to be a fixed height at the bottom and the text view to fill the rest of the space, similarly in the horizontal Linear layout I want the submit button to wrap its content and for the text entry to fill the rest of the space.

If the first item in a Linear Layout is told to fill_parent it does exactly that, leaving no room for other items, how do I get an item which is first in a linear layout to fill all space apart from the minimum required by the rest of the items in the layout?

EDIT:

Relative Layouts were indeed the answer - Thank you!

    <?xml version="1.0" encoding="utf-8"?>
    <RelativeLayout 
    xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="fill_parent" 
    android:layout_height="fill_parent">

    <TextView 
        android:text="@string/welcome" 
        android:id="@+id/TextView"
        android:layout_width="fill_parent" 
        android:layout_height="wrap_content"
        android:layout_alignParentTop="true">
    </TextView>

    <RelativeLayout 
        android:id="@+id/InnerRelativeLayout"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:layout_alignParentBottom="true" >

        <Button 
            android:text="@string/label_submit_button" 
            android:id="@+id/Button"
            android:layout_alignParentRight="true" 
            android:layout_width="wrap_content"
            android:layout_height="wrap_content">
        </Button>

        <EditText 
            android:id="@+id/EditText" 
            android:layout_width="fill_parent"
            android:layout_toLeftOf="@id/Button"
            android:layout_height="wrap_content">
        </EditText>

    </RelativeLayout>

</RelativeLayout>
share|improve this question
26  
+1 for one of the best, most useful android layout questions i've seen on SO. dude, you even have frickin' screenshots. – Epaga Mar 5 '10 at 15:10
How did you create those screenshots? – oneself Oct 16 '10 at 19:16
2  
@oneself Paint ;) I'm using a skin on the emulator though courtesy of Tea Vui Huang teavuihuang.com/android – gav Apr 24 '11 at 10:20
+1 from me too for the frickin screenshots...lol. – user903601 Dec 10 '11 at 21:46
2  
+1 for posting the layout XML that solved it. Helped me figure out what was wrong with mine. – Howler Feb 29 '12 at 19:23

9 Answers

up vote 131 down vote accepted

I think you should try a relative layout.
If you have a relative layout that fills the whole screen you should be able to use android:layout_alignParentBottom to move the button to the bottom of the screen.

If your views at the bottom are not shown in a relative layout then maybe the layout above it takes all the space. In this case you can put the view that should be at the bottom, first in your layout file and position the rest of the layout above the views with android:layout_above. This enable the bottom view to take as much space as it needs and the rest of the layout can fill all the rest of the screen.

share|improve this answer
FYI: that wouldn't work inside a ScrollView. This is the issue I am facing now. See stackoverflow.com/questions/3126347/… – Igor Ganapolsky May 23 '12 at 0:40
1  
That is correct ScrollViews and Relative Layouts do not mix very well. If you have to much content to display everything on one page just use a linearlayout and put in the bottom view last. If you want the view to appear last in the scrollview on small screens and at the bottom of the page on bigger phones consider using different layout files and uses ressource qualifiers to let the device choose the correct layout file. – Janusz May 23 '12 at 7:46

In a ScrollView this doesn't work, as the RelativeLayout would then overlap whatever is in the ScrollView at the bottom of the page.

I fixed it using a dynamically stretching FrameLayout :

<ScrollView xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_height="fill_parent" android:layout_width="fill_parent"
        android:fillViewport="true">
    <LinearLayout android:id="@+id/LinearLayout01"
        android:layout_width="fill_parent" android:layout_height="fill_parent"
        xmlns:android="http://schemas.android.com/apk/res/android"
        android:orientation="vertical">

                <!-- content goes here -->

                <!-- stretching frame layout, using layout_weight -->
        <FrameLayout
            android:layout_width="fill_parent" android:layout_height="fill_parent"
            android:layout_weight="1">
        </FrameLayout>

                <!-- content fixated to the bottom of the screen -->
        <LinearLayout android:layout_width="fill_parent" android:layout_height="wrap_content" android:orientation="horizontal">
                        <!-- your bottom content -->
        </LinearLayout>
    </LinearLayout>
</ScrollView>
share|improve this answer
1  
this is great - also, it's "minimal invasive", and more intuitive than the RelativeLayout approach. I'd give more than one upvote if I could! – manmal Aug 30 '11 at 12:31
3  
I use your solution in my application, but in my case I want that when keyboard appears, the buttons stay at the bottom of the screen (behind the keyboard) There is a sulution for that ? Thaks. – DoubleYo Jan 19 '12 at 16:02
@DoubleYo: in the manifest android:windowSoftInputMode="adjustPan" – Kopfgeldjaeger Jul 13 '12 at 12:56
1  
IF you want the bottom to be fixed permanently so that is shows all the time this does not work. Otherwise it works. – Karl Morrison Nov 2 '12 at 17:06
@Bram : Awesome solution! Can't thank you enough for the code! Wish there was a way to give multiple upvotes! :D – swayam Feb 8 at 16:27
show 1 more comment

You can keep your initial linear layout by nesting the relative layout within the linear layout:

<LinearLayout
    android:orientation="vertical"
    android:layout_width="fill_parent"
    android:layout_height="fill_parent">

    <TextView android:text="welcome" 
        android:id="@+id/TextView" 
        android:layout_width="fill_parent" 
        android:layout_height="wrap_content">
    </TextView>

    <RelativeLayout
        android:layout_width="match_parent"
        android:layout_height="match_parent">
        <Button android:text="submit" 
            android:id="@+id/Button" 
            android:layout_width="wrap_content" 
            android:layout_height="wrap_content"
            android:layout_alignParentBottom="true"
            android:layout_alignParentRight="true">
        </Button>
        <EditText android:id="@+id/EditText" 
            android:layout_width="match_parent" 
            android:layout_height="wrap_content"
            android:layout_toLeftOf="@id/Button"
            android:layout_alignParentBottom="true">
        </EditText>
    </RelativeLayout>
</LinearLayout>
share|improve this answer
Thank you, It worked perfectly for me. – amadamala Jun 23 '11 at 17:15
1  
wow! this is more easy. – Priyank Bolia Aug 1 '11 at 18:26
best solution :) – Ron Oct 15 '12 at 15:14

The answer above (by Janusz) is quite correct, but I personnally don't feel 100% confortable with RelativeLayouts, so I prefer to introduce a 'filler', empty TextView, like this:

<!-- filler -->
<TextView android:layout_height="0dip" 
          android:layout_width="fill_parent"
          android:layout_weight="1" />

before the element that should be at the bottom of the screen.

share|improve this answer
Is this gonna expand to x or y axis. Giving 0dip for height will make the textview without any height ? or will expand as much as it can just like to x axis ? – Lukap Jul 18 '11 at 11:26
This expands vertically because the height (vertical axis) is set to 0 and the weight to 1 (assuming that other elements have a zero weight). – Timores Aug 10 '11 at 17:51
On the x axis, it will be as its parent (fill_parent) – Timores Aug 10 '11 at 17:51
Ditto. This is also the approach that I use. It works too. – U Avalos Sep 28 '11 at 19:51

You don't even need to nest the second relative layout inside the first one. Simply use the android:layout_alignParentBottom="true" in the Button and EditText.

share|improve this answer
Just a note that although this works with the Button and EditText, if you tried to align a TableLayout this way it would not work. You would have to nest it inside of another RelativeLayout. – Brian Reindel Apr 11 '11 at 20:34

This also works.

<LinearLayout 
    android:id="@+id/linearLayout4"
    android:layout_width="wrap_content"
    android:layout_height="fill_parent"
    android:layout_below="@+id/linearLayout3"
    android:layout_centerHorizontal="true"
    android:orientation="horizontal" 
    android:gravity="bottom"
    android:layout_alignParentBottom="true"
    android:layout_marginTop="20dp"
>

    <Button
        android:id="@+id/button1"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:text="Button" 

    />

    <Button
        android:id="@+id/button2"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:text="Button" 


    />

</LinearLayout>

gravity="bottom" to float LinearLayout elements to bottom

share|improve this answer
4  
android:layout_alignParentBottom="true" has no effect unless the LinearLayout is nested inside a RelativeLayout. – Tom Dignan Jan 18 '12 at 15:17
Thank you. This works for me! – Dao Lam Feb 18 at 21:39
Glad to hear it. Post this a while ago- nice to see it is still helping people... best thing about SO. – Michael Reed Feb 19 at 16:05

You can do this with a LinearLayout or a ScrollView, too. Sometimes it is easier to implement then a RelativeLayout. The only thing you need to do is to add the following view before the Views you want to align to the bottom of the screen:

<View
        android:layout_width="wrap_content"
        android:layout_height="0dp"
        android:layout_weight="1" />

This creates an empty view, filling the empty space and pushing the next views to the bottom of the screen.

share|improve this answer

If you don't wish to make many changes, then you could just put:

android:layout_weight="1"

for the TextView having ID as "@+id/TextView" i.e

<TextView android:text="@string/welcome" android:id="@+id/TextView" android:layout_width="fill_parent" android:layout_height="wrap_content" android:layout_weight="1"> </TextView>

share|improve this answer

I used the solution Janusz posted, but added padding to the last View since the top part of my layout was a ScrollView. The ScrollView will be partly hidden as it grows with content. Using android:paddingBottom on the last View helps show all the content in the ScrollView.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.