S
S
SHAKIRA2014-04-02 01:40:08
Android
SHAKIRA, 2014-04-02 01:40:08

How to push Linearlayout to the bottom of the screen in android app?

Hello! I need to fix the linearlayout at the bottom of the screen. It has a fixed height of 50dp and a width of fill_parrent.

Answer the question

In order to leave comments, you need to log in

1 answer(s)
I
Igor Kostritsyn, 2014-04-02
@sarfut

<RelativeLayout 
 android:layout_width="match_parent"
 android:layout_height="match_parent">

  <LinearLayout
   android:layout_width="match_parent"
   android:layout_height="50dp"
   android:layout_alignParentBottom="true"/>

</RelativeLayout>

Didn't find what you were looking for?

Ask your question

Ask a Question

731 491 924 answers to any question