Git Product home page Git Product logo

Comments (3)

CesarValiente avatar CesarValiente commented on June 4, 2024

Hi @jltserenity ,

you can set the width and height of your slidinglayer setting the LayoutParams of it as you can se we don in the example app.

An example of the slidinglayer coming from the bottom (located in the sample app MainActivity.java file):

       // Sticks container to right or left
       LayoutParams rlp = (LayoutParams) mSlidingLayer.getLayoutParams();
       ................
       ................
       else if (mStickContainerToRightLeftOrMiddle.equals("bottom")) {
            textResource = R.string.swipe_down_label;
            d = getResources().getDrawable(R.drawable.container_rocket);

            mSlidingLayer.setStickTo(SlidingLayer.STICK_TO_BOTTOM);
            rlp.addRule(RelativeLayout.ALIGN_PARENT_BOTTOM);
            rlp.width = LayoutParams.MATCH_PARENT;
            rlp.height = getResources().getDimensionPixelSize(R.dimen.layer_width);
       ................
       ................

if you look at the two last lines (rlp.width and rlp.height) here you can set the maximum size of your slidinglayer in terms of width and height.

So now is your turn to play with this :-)

from android-sliding-layer-lib.

JlUgia avatar JlUgia commented on June 4, 2024

Hello @jltserenity
There's no exposed way to do this right now on SlidingLayer. Nevertheless the current implementation doesn't need many adjustments to achieve that behavior. Generally speaking you need one more state (OPEN, PARTIALLY_OPEN, CLOSED) and an offset for the partial state.
See https://github.com/6wunderkinder/android-sliding-layer-lib/blob/master/Library/src/com/slidinglayer/SlidingLayer.java#L379

Feel free to progress ahead on that and share and share any issue.

from android-sliding-layer-lib.

WilliamLuoKnife avatar WilliamLuoKnife commented on June 4, 2024

@CesarValiente hello, I had same problem on the sample code ,when I selected Stick layer to Bottm. I setted the rlp.height =100 or other, the layer always on full screen... thx : ))

from android-sliding-layer-lib.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.