Questions tagged [slidingpanelayout]

SlidingPaneLayout provides a horizontal, multi-pane layout for use at the top level of a UI. A left (or first) pane is treated as a content list or browser, subordinate to a primary detail view for displaying content.

SlidingPaneLayout provides a horizontal, multi-pane layout for use at the top level of a UI. A left (or first) pane is treated as a content list or browser, subordinate to a primary detail view for displaying content.

Child views may overlap if their combined width exceeds the available width in the SlidingPaneLayout. When this occurs the user may slide the topmost view out of the way by dragging it, or by navigating in the direction of the overlapped view using a keyboard. If the content of the dragged child view is itself horizontally scrollable, the user may grab it by the very edge.

Thanks to this sliding behavior, SlidingPaneLayout may be suitable for creating layouts that can smoothly adapt across many different screen sizes, expanding out fully on larger screens and collapsing on smaller screens.

Click Here for class reference.

107 questions
0
votes
1 answer

SlidingPaneLayout messy on low resolution

I have a SlidingPaneLayout in my application and I want it to appear more or less like Hangouts does. I show a list of elements on the left and the detail on the right pane, overlapping when an element is selected. This is what I see on my Galaxy…
0
votes
1 answer

Three sliding panes - the Middle pane above Left and Right panes

I am trying to have the same navigation style as Viber's interface (the discussion page), without using a third-part Library such as SlidingMenu. I thought that they have used SlidingPaneLayout to achieve this nice effect, but when I tried to code…
S.Thiongane
  • 6,883
  • 3
  • 37
  • 52
0
votes
1 answer

Binary XML file line #7: Error inflating class fragment

i do everything, research every but still not working. i read many page from here but not :( I tried every solution. Error logs: 03-20 14:46:49.627: I/Process(1895): Sending signal. PID: 1895 SIG: 9 03-20 14:46:59.608: E/Trace(1937): error opening…
Sagar Chavda
  • 125
  • 1
  • 2
  • 12
0
votes
1 answer

Handling screen orientation change while adding fragment to SlidingPaneLayout

I have my main activity as protected void onCreate(Bundle savedInstanceState) { super.onCreate(savedInstanceState); setContentView(R.layout.activity_incipient); FragmentTransaction fragmentTransaction =…
Manish
  • 1,946
  • 2
  • 24
  • 36
0
votes
0 answers

My Android Base App Keeps on having FCs

I'm fairly new to android programming and I need help solving this problem using SlidingPaneLayout in android. I will attach a log. Here is my code: package com.anshikka.datagushalpha; import android.os.Bundle; import android.app.Activity; import…
0
votes
1 answer

Can't import SlidingUpPanel library into eclipse

I'm trying to import the SlidingUpPanel library by umano into Eclipse so I can work on the WordPress Android app. BUT eclipse will not let me import the library, it will only let me import the demo entitled "DemoActivity." As You can see only the…
Sakiboy
  • 7,252
  • 7
  • 52
  • 69
0
votes
2 answers

Issue with SlidingPaneLayout

I am trying to use SlidingPaneLayout , I am having this weird behavior that i can slide the left panel as well which is the ListView , I thought it is something wrong in my code but turned out that even the API demos have the same issue. This issue…
Moh Sakkijha
  • 2,705
  • 1
  • 14
  • 19
0
votes
1 answer

Fragment showing nullpointerexception

I am working on SlidingPaneLayout for android 2.3.3. I have assigned an id to the fragment that I used to identify the fragment. But while identifying fragment by id it is showing "null pointerexecption". I don't know why it is showing so. The code…
0
votes
1 answer

SlidingPaneLayout programmatically change the width of the left panel

What I want is that the 1st time that the user open my app the left panel can use the full screen! then I need to resize it.
Usi Usi
  • 2,967
  • 5
  • 38
  • 69
0
votes
1 answer

Swiping a SlidingPaneLayout inside a ViewPager

I'm trying to use a SlidingPaneLayout inside of a ViewPager. All I can find are solutions for the other way around, like Using Android's SlidingPaneLayout with ViewPager which doesn't work. Is there something easy to change to allow the…
Jess
  • 42,368
  • 6
  • 37
  • 51
0
votes
1 answer

SlidingPaneLayout does not cover the left side panel

how to understand it? why the left panel is not hidden? My xml file:
slip.08
  • 1
  • 2
0
votes
1 answer

SlidingPaneLayout: slide without smooth animation?

I'm using the new SlidingPaneLayout available in the latest support library, which provides the openPane() and closePane() methods to smooth open and close the panel. Unfortunately, there are no public methods to do so without animation. Is there a…
Oleg Vaskevich
  • 12,444
  • 6
  • 63
  • 80
0
votes
1 answer

SlidingPaneLayout - Animate similar to Android Hangouts app

I have implemented a SlidingPaneLayout with fragments that looks like this (summarizing)
bbedward
  • 6,368
  • 7
  • 36
  • 59
-1
votes
1 answer

How to make a Sliding Up Panel in Android?

I want to add a Sliding up Panel in my project. But I am not sure how to do that. I want to add the sliding panel in my following layout:
-1
votes
2 answers

Make NavigationDrawer above SlidingUpPanel

I want to make navigation drawer above sliding up panel. I use this…