Questions tagged [android-navigation]

For questions about navigation within and between Android apps. Examples include navigating between activities/fragments, up/back behavior, task stacks, and Intent flags that affect navigation behavior.

Consistent navigation is an essential component of the overall user experience. Few things frustrate users more than basic navigation that behaves in inconsistent and unexpected ways.

Android 3.0 introduced significant changes to the global navigation behavior. Thoughtfully following the guidelines for Back and Up will make your app's navigation predictable and reliable for your users.

Android 2.3 and earlier relied upon the system Back button for supporting navigation within an app. With the introduction of action bars in Android 3.0, a second navigation mechanism appeared: the Up button, consisting of the app icon and a left-point caret.

See also the official documentation about this topic.

1192 questions
-2
votes
1 answer

Navigation drawer with navigation drawer fragment

i am new in android development. Not able to understand navigation drawer activity. I am building the project in eclipse luna targeting api 19 and this activity implements NavigationDrawerFragment. I am not able to find any link about this topic.
Vibhor Verma
  • 161
  • 1
  • 4
  • 13
-2
votes
1 answer

How to change the color of Android Navigation Drawer's Selected Row?

I'm using in my application a RecyclerView navigation drawer and I want to change the background of the selected row in my navigation drawer. my navigation drawer adapter code is import android.content.Context; import…
Khalil Rumman
  • 557
  • 1
  • 7
  • 22
-2
votes
1 answer

Activity crashes while navigating back

All, I am performing a navigation between 3 screens with dependency on each other. Activity A is having a table with list of table rows. Each row has onclick listener event where in get the data from table row and passes to next screen Activity…
kavuru
  • 379
  • 3
  • 4
  • 14
-2
votes
1 answer

Change Action Bar Background

I'm trying to change the action bar color. Does anyone knows how it's possible? Thanks!!
Felipe M
  • 449
  • 1
  • 3
  • 14
-3
votes
2 answers

How to Go to previous Activity through back button by Skipping DialogFragment

When I click the back button It goes to previous action rather than Previous Activity what is want to do is this : 1.Activity next-> 2.Activity2 next-> 3.DialogFragment(select user from DialogFragment) next-> Activity2 (with selected user)…
Akshay
  • 111
  • 1
  • 12
-4
votes
1 answer

Android: Navigating Between Activities

I am using Android Studio 2.3 Testing Device (Tecno-Tecno-6.0 Marshallow). I am new to android apps development.. I have 3 Activity (MainActivity, DisplayMessageActivity and ReadMessageActivity).screens. I can navigate back and forth from the…
1 2 3
79
80