I got a list view for navigation drawer, how can I put list item like \"Add Friends\", \"Settings\" align at the bottom of the list view.
You can put the ListView inside a RelativeLayout and assign android:layout_gravity="start" to the RelativeLayout. And set android:layout_alignParentBottom="true" property to the view you want to set to bottom of ListView.
ListView
RelativeLayout
android:layout_gravity="start"
android:layout_alignParentBottom="true"
This may help you.