How can we create Navigation bar in android can any one help me regarding this?

link|improve this question

60% accept rate
increase your accpetance rate – jazz Oct 8 '11 at 8:01
how can i increase it – user941930 Oct 8 '11 at 8:06
feedback

1 Answer

Try this For Bottom Navigation Bar:-------

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

<LinearLayout 
android:layout_alignParentBottom="true" 
android:layout_centerHorizontal="true"
android:layout_width="wrap_content" 
android:layout_height="wrap_content"
android:orientation="horizontal">

    <Button 
    android:layout_height="wrap_content" 
    android:id="@+id/back_button" 
    android:text="Back"
    android:layout_width="wrap_content" />

    <Button 
    android:layout_height="wrap_content" 
    android:id="@+id/home_button" 
    android:text="Home" 
    android:layout_width="wrap_content" />

    <Button 
    android:layout_height="wrap_content" 
    android:id="@+id/next_button" 
    android:text="Next" 
    android:layout_width="wrap_content" />

    </LinearLayout>

   </RelativeLayout>

I hope this help.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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