I have no idea how to put part of my textview and buttons on the bottom of the page. I tried to gravity bottom, etc.. but it didnt work.
<ScrollView xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="match_parent"
tools:context="com.example.tiagosilva.amob_android.HomeFragment"
android:background="@color/AMOB_gray">
<LinearLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:orientation="vertical"
android:padding="15dp">
<TextView
android:id="@+id/textView10"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:text="Company"
android:textColor="@android:color/white"
android:textSize="20sp"
android:textStyle="bold" />
<TextView
android:id="@+id/textView11"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:paddingTop="10dp"
android:text="@string/welcomeAmobHome"
android:textColor="@android:color/white"
android:textSize="14sp" />
<TextView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="Follow us on our Social Networks"
android:textSize="20dp"
android:textColor="@android:color/white" />
<LinearLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:orientation="horizontal"
android:weightSum="5">
<Button
android:id="@+id/btn_facebook"
android:layout_width="0dp"
android:layout_weight="1"
android:layout_height="54dp"
android:background="@drawable/facebook_icon"
android:layout_margin="10dp"/>
<Button
android:id="@+id/btn_twitter"
android:layout_width="0dp"
android:layout_weight="1"
android:layout_height="55dp"
android:background="@drawable/twitter_icon"
android:layout_margin="10dp"/>
<Button
android:id="@+id/btn_youtube"
android:layout_width="0dp"
android:layout_weight="1"
android:layout_height="50dp"
android:background="@drawable/instagram_icon"
android:layout_margin="10dp"/>
<Button
android:id="@+id/btn_instagram"
android:layout_width="0dp"
android:layout_weight="1"
android:layout_height="50dp"
android:background="@drawable/youtube_icon"
android:layout_margin="10dp"/>
<Button
android:id="@+id/btn_flickr"
android:layout_width="0dp"
android:layout_weight="1"
android:layout_height="49dp"
android:background="@drawable/flikr_icon"
android:layout_margin="10dp"/>
</LinearLayout>
</LinearLayout>
I only want to dock the buttons and the textview that says "Follow us on our Social Networks".