Re: [android-developers] Navigation drawer fragment not changing

2016-02-17 Thread TreKing
On Thu, Feb 11, 2016 at 2:40 PM, Riva wrote: > I'm trying to get the navigation drawer down, i've followed a few > tutorials around the internet however they all end up not working. Now I > know it's something simple but I can't figure it out. Menu opens, main > fragment loads, but if I click

[android-developers] Navigation drawer fragment not changing

2016-02-11 Thread Riva
I'm trying to get the navigation drawer down, i've followed a few tutorials around the internet however they all end up not working. Now I know it's something simple but I can't figure it out. Menu opens, main fragment loads, but if I click a new fragment, nothing works. ideas? activity_mai

Re: [android-developers] Navigation Drawer Icon Theme/Color?

2014-05-23 Thread Kostya Vasilyev
You'll need to copy the source code for ActionBarDrawerToggle.java into your project, possibly renaming (I forget if it somehow gets wired into the action bar automagically or has to be done from application code). Make changes to how the constructor initializes mDrawerImage, applying color tint.

Re: [android-developers] Navigation Drawer Icon Theme/Color?

2014-05-23 Thread Kevin Kovach
Yes, I'm currently using this class. The problem is that it loads a drawable, which I do not know how to apply a tint to. There could be something that I'm missing, but I've not found a way yet. - Kevin On Thursday, May 22, 2014 5:51:39 PM UTC-4, Kostya Vasilyev wrote: > > This is the class re

Re: [android-developers] Navigation Drawer Icon Theme/Color?

2014-05-22 Thread Kostya Vasilyev
This is the class responsible for that "pedestrian crossing" icon: https://developer.android.com/reference/android/support/v4/app/ActionBarDrawerToggle.html It's in the support library. The code as it is just loads an image from a resource resource, but should be easy to change to apply a color t

[android-developers] Navigation Drawer Icon Theme/Color?

2014-05-22 Thread Kevin Kovach
We're trying to theme an app that uses a navigation drawer and I want to be able to tint/color the icon for the navigation drawer with an @color. For the life of me I cannot find any information or hints on how to accomplish this. I would really appreciate any hints on doing this. Thanks. -

[android-developers] Navigation drawer

2014-01-24 Thread Michael Leung
Hi all , i found navigation drawer is in android v4 support lib. If i write an app for android 4+. I should use a action bar drawer. Am i right? Regards, Michael Leung http://www.itblogs.info -- You received this message because you are subscribed to the Google Groups "Android Developers" group

[android-developers] Navigation Drawer, Activities and Fragments

2013-09-28 Thread Simon Giddings
I am a bit confused here with this. With the examples that I have seen for using the Navigation Drawer, they all point to using one unique Activity, with Fragments giving the actual content. The advantage with this is that there is only one instance of the Navigation Drawer created. However, i

[android-developers] Navigation Drawer and using - over sized - icons

2013-09-28 Thread Simon Giddings
I would like to be able to use oversized icons within the Navigation Drawer listview items. However, I have seen that, even if I put larger icons in the resource directories, they are all scaled down. This is for working exclusively within a tablet application. Is there a way around this automa