Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Question: Any way to move the slide out to the right of the device? #8

Open
wwp212 opened this issue Dec 13, 2012 · 1 comment
Open

Comments

@wwp212
Copy link

wwp212 commented Dec 13, 2012

This is just a question not an issue, but is there anyway to have this appear on the right side of a device. I tried changing your code a little, changing gravity of the layouts and such, but that didn't do anything. Any advice. Thank you. Great library

@daimajia
Copy link

It is not easy to change it .

This project uses Framelayout to hide the View, not control all the View by code.

It is hard to change the layout.

You can have a look on function showMenu

    public void showMenu(){
        rbmOutsideView.setVisibility(View.VISIBLE); 

        rbmListView.setVisibility(View.VISIBLE);    
        rbmListView.startAnimation(AnimationUtils.loadAnimation(getContext(), R.anim.rbm_in_from_left));

    }

loadAnimation(getContext(), R.anim.rbm_in_from_left) tells us that it only support left part.

Solution:

change another project to achive your target:

I recommend you slidingMenu on Github https://github.com/jfeinstein10/SlidingMenu

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

2 participants