Now I am getting the output like this(Text is at bottom of the screen),
But I want output like the following image.
This is my XML code:
<RelativeLayout
android:layout_width="match_parent"
android:layout_height="match_parent"
android:layout_above="@+id/rlBottom"
>
<ImageView
android:id="@+id/coringImage"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:src="@drawable/img_electricity"
/>
<TextView
android:id="@+id/fdc_tvUnGeneration"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_marginLeft="@dimen/default_margin"
android:layout_marginRight="@dimen/default_margin"
android:textColor="@color/color_white"
android:textAppearance="?android:attr/textAppearanceSmall"
android:layout_below="@+id/fdc_tvAVGeneration"
android:layout_alignParentBottom="true"
/>
</RelativeLayout>