With the new facebook app it comes with an hidden sidebar that I would love to use something like that in my applications. It looks kinda like the sidebars that firefox mobile have...

Do you have any idea how to implement it besides re-implementing the ViewPager? I've tried with an HorizontalScrollView but that would also lead to re-implementation of it...

I'm not seeing any other way besides these two... any suggestions?

Thanks in advance

link|improve this question
Got any screenshots? – CommonsWare Dec 10 '11 at 0:37
possible duplicate of How to make Facebook's app new menu on Android? (this question has a screenshot btw) – alextsc Dec 10 '11 at 0:43
Expanded facebook the grey layout expands from the left from this: Main view on facebook On firefox we have this: firefox - left side is the "sidebar" – baen Dec 10 '11 at 0:48
@alextsc nice! My 2 day search I didn't come up with that result! thanks =) – baen Dec 10 '11 at 0:50
feedback

1 Answer

up vote 5 down vote accepted

I came up with a solution... I don't know if it is perfect but it is working well.

So what I did was a single FrameLayout with both of the Layouts stacked together and then I just animate the top layout to slide to the right of the screen (just need to call the slideTo or scrollBy. And basically it's that! Quite simple and effective! (the code though is not very pretty :P)

EDIT:

Some code samples.

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

        <include
        android:id="@+id/menu_layout"
            layout="@layout/menu_list"
            android:visibility="invisible"/>

        <include
            android:id="@+id/news_list_parent"
            layout="@layout/main_news_list" 
            />

</FrameLayout>

This is the layout xml, quite simpe. The included .xml are simple LinearLayouts with a heading and a listview.

The "magic" happens in the animation:

protected void applyTransformation(float interpolatedTime, Transformation t) {
    int newOffset;
    if(expanded) {
        newOffset = 0;
        newOffset = (int)(endOffset*(1-interpolatedTime));
    } else {
        newOffset = (int)(endOffset*(interpolatedTime));
    }
    view.scrollTo(-newOffset, 0);
}

The endOffset is the target movement. I set it before I start the animation, and the View I want to animate (in this case is the view with the id=news_list_parent) it is set on the constructor.

But just to understand how that works make a button and its listener would do something like this:

if(viewBeneath.getVisibility() == View.INVISIBLE) {
    viewBeneath.setVisibility(View.Visible);
    viewToSlide.slideTo(-(width-50), 0);
}

And finally override the back button to do the opposite of the button

if(viewBeneath.getVisibility() == View.VISIBLE) {
    viewToSlide.slideTo(0, 0);
    viewBeneath.setVisibility(View.Visible);
}

Read this as pseudo-code =) This is what I did in the beginning, that code is lost :P

link|improve this answer
Baen, could you please share your code with us? I'm trying to do that myself and so far without any success...Thanks! – tofira Dec 11 '11 at 5:19
I edited it to include. Anything just ask! – baen Dec 11 '11 at 16:08
@baen I see what you are doing. Why don't you wrap this into a library and share it on Github? – Amokrane Chentir Dec 12 '11 at 17:10
1  
@AmokraneChentir I have plans to do that but right now I want to end this project as fast as I can, then I want to make a custom viewgroup that implements this... Right now the best I could do was this, giving you an example. I hope you understand ;) – baen Dec 12 '11 at 17:16
1  
@baen, I managed to get it working, except for the opposite action(when the back button is pressed).It does return to the initial state(x=0), but without the animation. I've used your code. Any idea what may cause it? – tofira Dec 24 '11 at 21:11
show 8 more comments
feedback

Your Answer

 
or
required, but never shown

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